theta-ble-client-react-native
Version:
This library provides a way to control RICOH THETA using
22 lines • 698 B
TypeScript
import type { ThetaDevice } from '../theta-device';
import { ThetaService } from './theta-service';
import { BleServiceEnum, WlanPasswordStateEnum } from './values';
/**
* WLAN Control Command Service
*
* Service: F37F568F-9071-445D-A938-5441F2E82399
*/
export declare class WlanControlCommand extends ThetaService {
readonly service: BleServiceEnum;
readonly device: ThetaDevice;
constructor(device: ThetaDevice);
/**
* Read WLAN password state.
*
* Characteristic: E522112A-5689-4901-0803-0520637DC895
*
* @returns start-up status
*/
getWlanPasswordState(): Promise<WlanPasswordStateEnum>;
}
//# sourceMappingURL=wlan-control-command.d.ts.map