UNPKG

@abandonware/noble

Version:

A Node.js BLE (Bluetooth Low Energy) central library.

205 lines (176 loc) 10.5 kB
// Type definitions for noble // Project: https://github.com/sandeepmistry/noble // Definitions by: Seon-Wook Park <https://github.com/swook> // Shantanu Bhadoria <https://github.com/shantanubhadoria> // Luke Libraro <https://github.com/lukel99> // Dan Chao <https://github.com/bioball> // Michal Lower <https://github.com/keton> // Rob Moran <https://github.com/thegecko> // Clayton Kucera <https://github.com/claytonkucera> // Definitions: https://github.com/DefinitelyTyped/DefinitelyTyped /// <reference types="node" /> import events = require("events"); /** * @deprecated */ export declare function startScanning(callback?: (error?: Error) => void): void; /** * @deprecated */ export declare function startScanning(serviceUUIDs: string[], callback?: (error?: Error) => void): void; export declare function startScanning(serviceUUIDs?: string[], allowDuplicates?: boolean, callback?: (error?: Error) => void): void; export declare function startScanningAsync(serviceUUIDs?: string[], allowDuplicates?: boolean): Promise<void>; export declare function stopScanning(callback?: () => void): void; export declare function stopScanningAsync(): Promise<void>; export declare function cancelConnect(peripheralUuid: string, options?: object): void; export declare function reset(): void; export declare function on(event: "stateChange", listener: (state: string) => void): events.EventEmitter; export declare function on(event: "scanStart", listener: () => void): events.EventEmitter; export declare function on(event: "scanStop", listener: () => void): events.EventEmitter; export declare function on(event: "discover", listener: (peripheral: Peripheral) => void): events.EventEmitter; export declare function on(event: string, listener: Function): events.EventEmitter; export declare function once(event: "stateChange", listener: (state: string) => void): events.EventEmitter; export declare function once(event: "scanStart", listener: () => void): events.EventEmitter; export declare function once(event: "scanStop", listener: () => void): events.EventEmitter; export declare function once(event: "discover", listener: (peripheral: Peripheral) => void): events.EventEmitter; export declare function once(event: string, listener: Function): events.EventEmitter; export declare function removeListener(event: "stateChange", listener: (state: string) => void): events.EventEmitter; export declare function removeListener(event: "scanStart", listener: () => void): events.EventEmitter; export declare function removeListener(event: "scanStop", listener: () => void): events.EventEmitter; export declare function removeListener(event: "discover", listener: (peripheral: Peripheral) => void): events.EventEmitter; export declare function removeListener(event: string, listener: Function): events.EventEmitter; export declare function removeAllListeners(event?: string): events.EventEmitter; export var _state: "unknown" | "resetting" | "unsupported" | "unauthorized" | "poweredOff" | "poweredOn"; export var _bindings: any; export interface ServicesAndCharacteristics { services: Service[]; characteristics: Characteristic[]; } export declare class Peripheral extends events.EventEmitter { id: string; uuid: string; address: string; addressType: string; connectable: boolean; advertisement: Advertisement; rssi: number; mtu: number | null; services: Service[]; state: 'error' | 'connecting' | 'connected' | 'disconnecting' | 'disconnected'; connect(callback?: (error: string) => void): void; connectAsync(): Promise<void>; disconnect(callback?: () => void): void; disconnectAsync(): Promise<void>; updateRssi(callback?: (error: string, rssi: number) => void): void; updateRssiAsync(): Promise<number>; discoverServices(): void; discoverServicesAsync(): Promise<Service[]>; discoverServices(serviceUUIDs: string[], callback?: (error: string, services: Service[]) => void): void; discoverServicesAsync(serviceUUIDs: string[]): Promise<Service[]>; discoverAllServicesAndCharacteristics(callback?: (error: string, services: Service[], characteristics: Characteristic[]) => void): void; discoverAllServicesAndCharacteristicsAsync(): Promise<ServicesAndCharacteristics>; discoverSomeServicesAndCharacteristics(serviceUUIDs: string[], characteristicUUIDs: string[], callback?: (error: string, services: Service[], characteristics: Characteristic[]) => void): void; discoverSomeServicesAndCharacteristicsAsync(serviceUUIDs: string[], characteristicUUIDs: string[]): Promise<ServicesAndCharacteristics>; cancelConnect(options?: object): void; readHandle(handle: number, callback: (error: string, data: Buffer) => void): void; readHandleAsync(handle: number): Promise<Buffer>; writeHandle(handle: number, data: Buffer, withoutResponse: boolean, callback: (error: string) => void): void; writeHandleAsync(handle: number, data: Buffer, withoutResponse: boolean): Promise<void>; toString(): string; on(event: "connect", listener: (error: string) => void): this; on(event: "disconnect", listener: (error: string) => void): this; on(event: "rssiUpdate", listener: (rssi: number) => void): this; on(event: "servicesDiscover", listener: (services: Service[]) => void): this; on(event: string, listener: Function): this; once(event: "connect", listener: (error: string) => void): this; once(event: "disconnect", listener: (error: string) => void): this; once(event: "rssiUpdate", listener: (rssi: number) => void): this; once(event: "servicesDiscover", listener: (services: Service[]) => void): this; once(event: string, listener: Function): this; } export interface Advertisement { localName: string; serviceData: Array<{ uuid: string, data: Buffer }>; txPowerLevel: number; manufacturerData: Buffer; serviceUuids: string[]; } export declare class Service extends events.EventEmitter { uuid: string; name: string; type: string; includedServiceUuids: string[]; characteristics: Characteristic[]; discoverIncludedServices(): void; discoverIncludedServicesAsync(): Promise<string[]>; discoverIncludedServices(serviceUUIDs: string[], callback?: (error: string, includedServiceUuids: string[]) => void): void; discoverIncludedServicesAsync(serviceUUIDs: string[]): Promise<string[]>; discoverCharacteristics(): void; discoverCharacteristicsAsync(): Promise<Characteristic[]>; discoverCharacteristics(characteristicUUIDs: string[], callback?: (error: string, characteristics: Characteristic[]) => void): void; discoverCharacteristicsAsync(characteristicUUIDs: string[]): Promise<Characteristic[]>; toString(): string; on(event: "includedServicesDiscover", listener: (includedServiceUuids: string[]) => void): this; on(event: "characteristicsDiscover", listener: (characteristics: Characteristic[]) => void): this; on(event: string, listener: Function): this; once(event: "includedServicesDiscover", listener: (includedServiceUuids: string[]) => void): this; once(event: "characteristicsDiscover", listener: (characteristics: Characteristic[]) => void): this; once(event: string, listener: Function): this; } export declare class Characteristic extends events.EventEmitter { uuid: string; name: string; type: string; properties: string[]; descriptors: Descriptor[]; read(callback?: (error: string, data: Buffer) => void): void; readAsync(): Promise<Buffer>; write(data: Buffer, withoutResponse: boolean, callback?: (error: string) => void): void; writeAsync(data: Buffer, withoutResponse: boolean): Promise<void>; broadcast(broadcast: boolean, callback?: (error: string) => void): void; broadcastAsync(broadcast: boolean): Promise<void>; notify(notify: boolean, callback?: (error: string) => void): void; notifyAsync(notify: boolean): Promise<void>; discoverDescriptors(callback?: (error: string, descriptors: Descriptor[]) => void): void; discoverDescriptorsAsync(): Promise<Descriptor[]>; toString(): string; subscribe(callback?: (error: string) => void): void; subscribeAsync(): Promise<void>; unsubscribe(callback?: (error: string) => void): void; unsubscribeAsync(): Promise<void>; on(event: "read", listener: (data: Buffer, isNotification: boolean) => void): this; on(event: "write", withoutResponse: boolean, listener: (error: string) => void): this; on(event: "broadcast", listener: (state: string) => void): this; on(event: "notify", listener: (state: string) => void): this; on(event: "data", listener: (data: Buffer, isNotification: boolean) => void): this; on(event: "descriptorsDiscover", listener: (descriptors: Descriptor[]) => void): this; on(event: string, listener: Function): this; on(event: string, option: boolean, listener: Function): this; once(event: "read", listener: (data: Buffer, isNotification: boolean) => void): this; once(event: "write", withoutResponse: boolean, listener: (error: string) => void): this; once(event: "broadcast", listener: (state: string) => void): this; once(event: "notify", listener: (state: string) => void): this; once(event: "data", listener: (data: Buffer, isNotification: boolean) => void): this; once(event: "descriptorsDiscover", listener: (descriptors: Descriptor[]) => void): this; once(event: string, listener: Function): this; once(event: string, option: boolean, listener: Function): this; } export declare class Descriptor extends events.EventEmitter { uuid: string; name: string; type: string; readValue(callback?: (error: string, data: Buffer) => void): void; readValueAsync(): Promise<Buffer>; writeValue(data: Buffer, callback?: (error: string) => void): void; writeValueAsync(data: Buffer): Promise<void>; toString(): string; on(event: "valueRead", listener: (error: string, data: Buffer) => void): this; on(event: "valueWrite", listener: (error: string) => void): this; on(event: string, listener: Function): this; once(event: "valueRead", listener: (error: string, data: Buffer) => void): this; once(event: "valueWrite", listener: (error: string) => void): this; once(event: string, listener: Function): this; }