lifxlan
Version:
TypeScript library for controlling LIFX products over LAN
19 lines • 628 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.Direction = exports.ServiceType = exports.NO_TARGET = exports.PRODUCTS_URL = exports.BROADCAST_ADDRESS = exports.PORT = void 0;
exports.PORT = 56700;
exports.BROADCAST_ADDRESS = '255.255.255.255';
exports.PRODUCTS_URL = 'https://raw.githubusercontent.com/LIFX/products/master/products.json';
exports.NO_TARGET = new Uint8Array([0, 0, 0, 0, 0, 0]);
exports.ServiceType = {
UDP: 1,
RESERVED2: 2,
RESERVED3: 3,
RESERVED4: 4,
RESERVED5: 5,
};
exports.Direction = {
RIGHT: 0,
LEFT: 1,
};
//# sourceMappingURL=core.js.map