/** * Bluetooth UUIDs for a Pixels' peripheral service and characteristics. * @category Pixels */ export type PixelsConnectUuids = { /** Pixel device service UUID. */ service: string; /** Pixel device notify characteristic UUID. */ notifyCharacteristic: string; /** Pixel device write characteristic UUID. */ writeCharacteristic: string; }; /** * Bluetooth IDs and UUIDs related to Pixels peripherals. * @category Pixels */ export declare const PixelsBluetoothIds: { /** Service and characteristic UUIDs of a Pixels die. */ readonly die: Readonly; /** Legacy service and characteristic UUIDs of a Pixels die. */ readonly legacyDie: Readonly; /** Service and characteristic UUIDs of a Pixels charger. */ readonly charger: Readonly; /** Nordic's DFU service short UUID. */ readonly dfuService: 65113; /** Systemic Games company identifier. */ readonly systemicGamesCompanyId: 3385; }; //# sourceMappingURL=PixelsBluetoothIds.d.ts.map