-
-
Notifications
You must be signed in to change notification settings - Fork 1.9k
Description
Link
https://innr.com/products/innr-smart-mini-bulb-tunable-white-e14-2025-uk
Database entry
{"id":25,"type":"Router","ieeeAddr":"0xa4c13866d9abe4a9","nwkAddr":33300,"manufId":4454,"manufName":"innr","powerSource":"Mains (single phase)","modelId":"RB 246 T","epList":[1,242],"endpoints":{"1":{"profId":260,"epId":1,"devId":268,"inClusterList":[0,3,4,5,6,8,768,4096],"outClusterList":[10,25],"clusters":{"lightingColorCtrl":{"attributes":{"colorCapabilities":16,"colorTempPhysicalMin":153,"colorTempPhysicalMax":500,"colorMode":2,"colorTemperature":376}},"genOnOff":{"attributes":{"onOff":0}},"genLevelCtrl":{"attributes":{"currentLevel":253,"onLevel":255}}},"binds":[],"configuredReportings":[],"meta":{}},"242":{"profId":41440,"epId":242,"devId":97,"inClusterList":[],"outClusterList":[33],"clusters":{},"binds":[],"configuredReportings":[],"meta":{}}},"appVersion":25,"stackVersion":54,"hwVersion":1,"dateCode":"20250620","swBuildId":"1.9.38","zclVersion":8,"interviewCompleted":true,"interviewState":"SUCCESSFUL","meta":{"configured":332242049},"lastSeen":1767272598951}
Zigbee2MQTT version
2.7.1
External definition
import * as m from 'zigbee-herdsman-converters/lib/modernExtend';
export default {
zigbeeModel: ['RB 246 T'],
model: 'RB 246 T',
vendor: 'innr',
description: 'Automatically generated definition',
extend: [m.light({"colorTemp":{"range":[153,500]}})],
};What does/doesn't work with the external definition?
I am using a converter from the Innr RB 249 T which appears to be an identical lamp with a different shell on it. It works perfectly but has the wong image of course. I am using this converter which I made with your doc and help from AI - no idea if it is correct but it works
import { light } from "zigbee-herdsman-converters/lib/modernExtend";
/** @type{import('zigbee-herdsman-converters/lib/types').DefinitionWithExtend} */
export default {
zigbeeModel: ["RB 246 T"], // EXACT match from Z2M
model: "RB 249 T", // Pretend to be this model
vendor: "Innr",
description: "Alias for RB 249 T (RB 246 T hardware)",
extend: [
light({
colorTemp: { range: [153, 500] }, // your bulb's CT range
color: false // IMPORTANT: no RGB support
})
],
};
Notes
I have added this image via Koenkk/zigbee2mqtt.io#4652
This is my first time and somewhat out of my experience range but hope this works OK.