UNPKG

lifxlan

Version:

TypeScript library for controlling LIFX products over LAN

16 lines 445 B
export const PORT = 56700; export const BROADCAST_ADDRESS = '255.255.255.255'; export const PRODUCTS_URL = 'https://raw.githubusercontent.com/LIFX/products/master/products.json'; export const NO_TARGET = new Uint8Array([0, 0, 0, 0, 0, 0]); export const ServiceType = { UDP: 1, RESERVED2: 2, RESERVED3: 3, RESERVED4: 4, RESERVED5: 5, }; export const Direction = { RIGHT: 0, LEFT: 1, }; //# sourceMappingURL=core.js.map