UNPKG

theta-ble-client-react-native

Version:

This library provides a way to control RICOH THETA using

74 lines 2.14 kB
import type { ThetaDevice } from '../theta-device'; import { ThetaService } from './theta-service'; import { BleServiceEnum } from './values'; /** * Camera Information Service * * Service: 9A5ED1C5-74CC-4C50-B5B6-66A48E7CCFF1 */ export declare class CameraInformation extends ThetaService { readonly service: BleServiceEnum; readonly device: ThetaDevice; constructor(device: ThetaDevice); /** * Acquires the firmware version of the camera. * * Service: 9A5ED1C5-74CC-4C50-B5B6-66A48E7CCFF1 * * Characteristic: B4EB8905-7411-40A6-A367-2834C2157EA7 * * @returns Firmware revision. */ getFirmwareRevision(): Promise<string>; /** * Acquires the manufacturer name of the camera. * * Service: 9A5ED1C5-74CC-4C50-B5B6-66A48E7CCFF1 * * Characteristic: F5666A48-6A74-40AE-A817-3C9B3EFB59A6 * * @returns Manufacturer Name. */ getManufacturerName(): Promise<string>; /** * Acquires the model name of the camera. * * Service: 9A5ED1C5-74CC-4C50-B5B6-66A48E7CCFF1 * * Characteristic: 35FE6272-6AA5-44D9-88E1-F09427F51A71 * * @returns Model Number of THETA. */ getModelNumber(): Promise<string>; /** * Acquires the serial name of the camera. * * Service: 9A5ED1C5-74CC-4C50-B5B6-66A48E7CCFF1 * * Characteristic: 0D2FC4D5-5CB3-4CDE-B519-445E599957D8 * * @returns Serial Number of THETA. */ getSerialNumber(): Promise<string>; /** * Acquires the MAC address of wireless LAN. * * Service: 9A5ED1C5-74CC-4C50-B5B6-66A48E7CCFF1 * * Characteristic: 1C5C6C55-8E57-4B32-AD80-B124AE229DEC * * @returns WLAN MAC Address of THETA. */ getWlanMacAddress(): Promise<string>; /** * Acquires the MAC address of Bluetooth. * * Service: 9A5ED1C5-74CC-4C50-B5B6-66A48E7CCFF1 * * Characteristic: 97E34DA2-2E1A-405B-B80D-F8F0AA9CC51C * * @returns Bluetooth MAC Address of THETA. */ getBluetoothMacAddress(): Promise<string>; } //# sourceMappingURL=camera-information.d.ts.map