UNPKG

zigbee-herdsman-converters

Version:

Collection of device converters to be used with zigbee-herdsman

56 lines 2.28 kB
"use strict"; var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) { if (k2 === undefined) k2 = k; var desc = Object.getOwnPropertyDescriptor(m, k); if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) { desc = { enumerable: true, get: function() { return m[k]; } }; } Object.defineProperty(o, k2, desc); }) : (function(o, m, k, k2) { if (k2 === undefined) k2 = k; o[k2] = m[k]; })); var __setModuleDefault = (this && this.__setModuleDefault) || (Object.create ? (function(o, v) { Object.defineProperty(o, "default", { enumerable: true, value: v }); }) : function(o, v) { o["default"] = v; }); var __importStar = (this && this.__importStar) || function (mod) { if (mod && mod.__esModule) return mod; var result = {}; if (mod != null) for (var k in mod) if (k !== "default" && Object.prototype.hasOwnProperty.call(mod, k)) __createBinding(result, mod, k); __setModuleDefault(result, mod); return result; }; Object.defineProperty(exports, "__esModule", { value: true }); const tuya = __importStar(require("../lib/tuya")); const definitions = [ { fingerprint: [{ modelID: 'ZB-CL01', manufacturerName: 'YSRSAI' }], zigbeeModel: ['ZB-CL03', 'FB56-ZCW20FB1.2'], model: 'YSR-MINI-01_rgbcct', vendor: 'YSRSAI', description: 'Zigbee LED controller (RGB+CCT)', extend: [tuya.modernExtend.tuyaLight({ colorTemp: { range: [160, 370] }, color: true })], }, { zigbeeModel: ['ZB-CT01'], model: 'YSR-MINI-01_wwcw', vendor: 'YSRSAI', description: 'Zigbee LED controller (WW/CW)', extend: [tuya.modernExtend.tuyaLight({ colorTemp: { range: [153, 500] } })], configure: async (device, coordinatorEndpoint) => { device.getEndpoint(1).saveClusterAttributeKeyValue('lightingColorCtrl', { colorCapabilities: 0x10 }); }, }, { zigbeeModel: ['ZB-DL01'], model: 'YSR-MINI-01_dimmer', vendor: 'YSRSAI', description: 'Zigbee LED controller (Dimmer)', extend: [tuya.modernExtend.tuyaLight()], }, ]; exports.default = definitions; module.exports = definitions; //# sourceMappingURL=ysrsai.js.map