Skip to content

Commit

Permalink
Modifying Lonsonho ZB-RGBCW with :
Browse files Browse the repository at this point in the history
    proper temp range
    disabling unsupported startup color temp
    disabling effects as they only cause the Bulb to blink so no point

Adding 120 Degree version of Ajax Online AJ_ZB_GU10 with correct color temp range

Adding Aurora Lighting AOne 4W smart dimmable Vintage GLS lamp 1900K
  • Loading branch information
LucidityCrash committed Apr 14, 2021
1 parent a577b9a commit ecabe5b
Showing 1 changed file with 17 additions and 3 deletions.
20 changes: 17 additions & 3 deletions devices.js
Original file line number Diff line number Diff line change
Expand Up @@ -2320,7 +2320,11 @@ const devices = [
model: 'ZB-RGBCW',
vendor: 'Lonsonho',
description: 'Zigbee 3.0 LED-bulb, RGBW LED',
extend: preset.light_onoff_brightness_colortemp_color(),
extend: preset.light_onoff_brightness_colortemp_color({
disableColorTempStartup: true,
colorTempRange: [153, 370],
disableEffect: true,
}),
},
{
fingerprint: [{modelID: 'TS0003', manufacturerName: '_TYZB01_zsl6z0pw'}],
Expand Down Expand Up @@ -14987,11 +14991,14 @@ const devices = [
extend: preset.light_onoff_brightness_colortemp_color(),
},
{
zigbeeModel: ['AJ_ZB30_GU10'],
zigbeeModel: ['AJ_ZB30_GU10', 'AJ_ZB120_GU10'],
model: 'AJ_ZB_GU10',
vendor: 'Ajax Online',
description: 'Smart Zigbee pro GU10 spotlight bulb',
extend: preset.light_onoff_brightness_colortemp_color(),
extend: preset.light_onoff_brightness_colortemp_color({
colorTempRange: [158, 495],
disableEffect: true,
}),
},

// Moes
Expand Down Expand Up @@ -16289,6 +16296,13 @@ const devices = [
description: 'AOne 4.8W smart dimmable GU10 lamp 3000K',
extend: preset.light_onoff_brightness(),
},
{
zigbeeModel: ['FWA60Bulb50AU'],
model: 'AU-A1VGSZ5E/19',
vendor: 'Aurora Lighting',
description: 'AOne 4W smart dimmable Vintage GLS lamp 1900K',
extend: preset.light_onoff_brightness({disableEffect: true}),
},
{
zigbeeModel: ['RGBGU10Bulb50AU'],
model: 'AU-A1GUZBRGBW',
Expand Down

0 comments on commit ecabe5b

Please sign in to comment.