theta-ble-client-react-native
Version:
This library provides a way to control RICOH THETA using
21 lines • 597 B
TypeScript
import type { ThetaModel } from '../values/theta-model';
/**
* Static attributes of Theta.
*/
export interface ThetaInfo {
/** Manufacturer name */
manufacturer: string;
/** Theta model name */
model: ThetaModel;
/** Theta serial number */
serialNumber: string;
/** MAC address of wireless LAN */
wlanMacAddress?: string;
/** MAC address of Bluetooth */
bluetoothMacAddress?: string;
/** Theta firmware version */
firmwareVersion: string;
/** Number of seconds since Theta boot */
uptime: number;
}
//# sourceMappingURL=theta-info.d.ts.map