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