Replies: 2 comments 1 reply
-
Thanks ! I have the same model and it works now ;) |
Beta Was this translation helpful? Give feedback.
1 reply
-
Where do I add the "The bulb:" section to? I got the bulb working in Z2M but not sure where that section goes. |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
I have a unknown bulb „Ampoule LED Zigbee Ampoule Couleur E27 Ampoule Connectée 7W Ampoule Intelligente Zigbee“ from Amazon. A set Switch Heiman HS2WDSR-E + Bulb
After i added this to a extern converter, the bulb changed to „supported“ and all works fine:
`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 ota = require('zigbee-herdsman-converters/lib/ota');
const tuya = require('zigbee-herdsman-converters/lib/tuya');
const utils = require('zigbee-herdsman-converters/lib/utils');
const globalStore = require('zigbee-herdsman-converters/lib/store');
const e = exposes.presets;
const ea = exposes.access;
const definition = {
zigbeeModel: ['ColorLight'],
ZigbeeManufacturer: ['HEIMAN'],
model: 'ColorLight',
vendor: 'Heiman',
description: 'Heimanlamp',
extend: extend.light_onoff_brightness_colortemp_color(),
};
module.exports = definition; `
The bulb:
``availability:
brightness: true
brightness_scale: 254
color_mode: true
command_topic: zigbee2mqtt/Lampe1 /set
device:
identifiers:
manufacturer: Heiman
model: Heimanlamp (ColorLight)
name: 'Lampe1 '
sw_version: 2000-1002
effect: true
effect_list:
json_attributes_topic: 'zigbee2mqtt/Lampe1 '
max_mireds: 500
min_mireds: 150
name: 'Lampe Table manger '
schema: json
state_topic: 'zigbee2mqtt/Lampe1 '
supported_color_modes:
unique_id: 0x00158d000_light_zigbee2mqtt
platform: mqtt ``
Beta Was this translation helpful? Give feedback.
All reactions