16 lines
553 B
JavaScript
16 lines
553 B
JavaScript
const {deviceEndpoints, identify, light} = require('zigbee-herdsman-converters/lib/modernExtend');
|
|
|
|
const definition = {
|
|
zigbeeModel: ['FLS-PP3 White\u0000'],
|
|
model: 'FLS-PP3 White\u0000',
|
|
vendor: 'dresden elektronik\u0000',
|
|
description: 'Automatically generated definition',
|
|
extend: [
|
|
deviceEndpoints({endpoints: {rgb: 10, white: 11}}),
|
|
light({"colorTemp":{"range":[153,500]},"color":{"modes":["xy","hs"],"enhancedHue":true},endpointNames: ['rgb', 'white']})
|
|
],
|
|
};
|
|
|
|
module.exports = definition;
|
|
|