zigbee-herdsman-converters
Version:
Collection of device converters to be used with zigbee-herdsman
105 lines • 4.86 kB
JavaScript
;
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;
};
var __importDefault = (this && this.__importDefault) || function (mod) {
return (mod && mod.__esModule) ? mod : { "default": mod };
};
Object.defineProperty(exports, "__esModule", { value: true });
const exposes = __importStar(require("../lib/exposes"));
const fromZigbee_1 = __importDefault(require("../converters/fromZigbee"));
const toZigbee_1 = __importDefault(require("../converters/toZigbee"));
const reporting = __importStar(require("../lib/reporting"));
const modernExtend_1 = require("../lib/modernExtend");
const e = exposes.presets;
const definitions = [
{
zigbeeModel: ['ZBT-CCTfilament-D0001'],
model: '8718801528204',
vendor: 'Ynoa',
description: 'Smart LED E27 CCT',
extend: [(0, modernExtend_1.light)({ colorTemp: { range: [250, 454] }, effect: false })],
},
{
zigbeeModel: ['ZBT-CCTLight-GU100001'],
model: '8718801528273',
vendor: 'Ynoa',
description: 'Smart LED GU10 CCT',
extend: [(0, modernExtend_1.light)({ colorTemp: { range: [153, 454] } })],
},
{
zigbeeModel: ['ZBT-DIMSwitch-D0000'],
model: '8718801528334',
vendor: 'Ynoa',
description: 'Remote control one button dimmer',
fromZigbee: [fromZigbee_1.default.command_on, fromZigbee_1.default.command_off, fromZigbee_1.default.command_move, fromZigbee_1.default.command_stop, fromZigbee_1.default.battery],
exposes: [e.action(['on', 'off', 'brightness_move_up', 'brightness_move_down', 'brightness_stop']), e.battery()],
toZigbee: [],
configure: async (device, coordinatorEndpoint) => {
const endpoint = device.getEndpoint(1);
await reporting.bind(endpoint, coordinatorEndpoint, ['genPowerCfg']);
await reporting.batteryPercentageRemaining(endpoint);
},
},
{
zigbeeModel: ['ZBT-RGBWLight-M0000'],
model: 'LA-GU10-RGBW',
vendor: 'Ynoa',
description: 'Smart LED GU10 RGB CCT',
extend: [(0, modernExtend_1.light)({ colorTemp: { range: [153, 526] }, color: { modes: ['xy', 'hs'] } })],
},
{
zigbeeModel: ['ZBT-RGBWSwitch-D0800'],
model: 'LA-5KEY-RGBW',
vendor: 'Ynoa',
description: '5 key control for RGBW light',
fromZigbee: [fromZigbee_1.default.command_on, fromZigbee_1.default.command_off, fromZigbee_1.default.command_move_to_color_temp,
fromZigbee_1.default.command_move_to_color, fromZigbee_1.default.command_move_to_level, fromZigbee_1.default.battery],
exposes: [e.battery(), e.battery_low(), e.action(['on', 'off', 'brightness_move_to_level',
'color_temperature_move', 'color_move'])],
toZigbee: [],
configure: async (device, coordinatorEndpoint) => {
const endpoint = device.getEndpoint(1);
await reporting.bind(endpoint, coordinatorEndpoint, ['genPowerCfg']);
await reporting.batteryPercentageRemaining(endpoint);
},
},
{
zigbeeModel: ['ZBT-ONOFFPlug-D0009'],
model: 'LA-PLUG-10Amp',
vendor: 'Ynoa',
description: 'Smart plug Zigbee 3.0',
fromZigbee: [fromZigbee_1.default.on_off, fromZigbee_1.default.electrical_measurement, fromZigbee_1.default.metering],
toZigbee: [toZigbee_1.default.on_off],
exposes: [e.switch(), e.power()],
configure: async (device, coordinatorEndpoint) => {
const endpoint = device.getEndpoint(1);
await reporting.bind(endpoint, coordinatorEndpoint, ['genOnOff', 'haElectricalMeasurement', 'seMetering']);
await reporting.onOff(endpoint);
await reporting.activePower(endpoint);
},
},
];
exports.default = definitions;
module.exports = definitions;
//# sourceMappingURL=ynoa.js.map