zigbee2mqtt icon indicating copy to clipboard operation
zigbee2mqtt copied to clipboard

[New device support]: LIC Home Base module

Open JungChristian opened this issue 3 years ago • 0 comments

Link

https://www.naber.de/en-lic-home-base-module-s13812/

Database entry

"id":16,"type":"Router","ieeeAddr":"0xb43a31fffe778ad1","nwkAddr":31255,"manufId":4686,"manufName":"LS Deutschland GmbH","powerSource":"DCSource","modelId":"Emotion","epList":[1,2,3,242],"endpoints":{"1":{"profId":260,"epId":1,"devId":268,"inClusterList":[0,3,4,5,6,8,768],"outClusterList":[],"clusters":{"genBasic":{"attributes":{"appVersion":0,"stackVersion":0,"dateCode":""}},"lightingColorCtrl":{"attributes":{"colorCapabilities":16,"colorTempPhysicalMin":153,"colorTempPhysicalMax":454}},"genOnOff":{"attributes":{"onOff":1}}},"binds":[],"configuredReportings":[],"meta":{}},"2":{"profId":260,"epId":2,"devId":268,"inClusterList":[0,3,4,5,6,8,768],"outClusterList":[],"clusters":{"genBasic":{"attributes":{"appVersion":0,"stackVersion":0,"dateCode":""}},"lightingColorCtrl":{"attributes":{"colorCapabilities":16,"colorTempPhysicalMin":153,"colorTempPhysicalMax":454}},"genOnOff":{"attributes":{"onOff":0}}},"binds":[],"configuredReportings":[],"meta":{}},"3":{"profId":260,"epId":3,"devId":268,"inClusterList":[0,3,4,5,6,8,768],"outClusterList":[],"clusters":{"genBasic":{"attributes":{"appVersion":0,"stackVersion":0,"dateCode":""}},"lightingColorCtrl":{"attributes":{"colorCapabilities":16,"colorTempPhysicalMin":153,"colorTempPhysicalMax":454}}},"binds":[],"configuredReportings":[],"meta":{}},"242":{"profId":41440,"epId":242,"devId":97,"inClusterList":[],"outClusterList":[33],"clusters":{},"binds":[],"configuredReportings":[],"meta":{}}},"appVersion":0,"stackVersion":0,"hwVersion":1,"dateCode":"","swBuildId":"1.0.0_r00000","zclVersion":3,"interviewCompleted":true,"meta":{"configured":88764544},"lastSeen":1669459263726,"defaultSendRequestWhen":"immediate"}

Comments

Hi.

I was able to pair successfully the new device and also created an external converter. I'm able to control one light, also change the color and brightness.

However, the device allows the control of up to 4 independent lights. I tried experimenting with some configurations in the multiEndpoint section without success.

In the logging i see e.g. something like this:

Zigbee2MQTT:info 2022-11-26 13:33:04: MQTT publish: topic 'zigbee2mqtt/0xb43a31fffe778ad1', payload '{"brightness":167,"color":{"x":0.3489,"y":0.3546},"color_mode":"xy","color_temp":206,"linkquality":255,"state":"ON","state_1":"OFF","state_2":"OFF","state_3":"OFF"}'

What surprises me is that state_1, state_2, and state_3 are always OFF although these lights are also on. State is reported correctly and can also be set successfully.

Thanks for your help!

External converter

const fz = require('zigbee-herdsman-converters/converters/fromZigbee');
const tz = require('zigbee-herdsman-converters/converters/toZigbee');
const exposes = require('zigbee-herdsman-converters/lib/exposes');
const reporting = require('zigbee-herdsman-converters/lib/reporting');
const extend = require('zigbee-herdsman-converters/lib/extend');
const e = exposes.presets;
const ea = exposes.access;

const definition = {
    zigbeeModel: ['Emotion'], 
    model: 'LS4600110', 
    vendor: 'LS Deutschland GmbH', 
    description: 'LS Emtion Home Base',
    extend: extend.light_onoff_brightness_colortemp_color(),
    meta: {multiEndpoint: true},
};

module.exports = definition;

Supported color modes

No response

Color temperature range

No response

JungChristian avatar Nov 26 '22 12:11 JungChristian