theta-ble-client-react-native
Version:
This library provides a way to control RICOH THETA using
27 lines (22 loc) • 356 B
text/typescript
import type { PeripheralDeviceStatusEnum } from '../values';
/**
* Peripheral Device
*/
export interface PeripheralDevice {
/**
* Device name
*/
device: string;
/**
* MAC address
*/
macAddress: string;
/**
* Paired or not
*/
pairing: boolean;
/**
* State of connection
*/
status: PeripheralDeviceStatusEnum;
}