Skip to content

Commit

Permalink
Updates for Inovelli's 2.14 Firmware (#2334)
Browse files Browse the repository at this point in the history
* Update __init__.py

* Update __init__.py

Slight name change for clarity
  • Loading branch information
codyhackw authored Apr 12, 2023
1 parent fb5d256 commit f2f01b0
Showing 1 changed file with 8 additions and 2 deletions.
10 changes: 8 additions & 2 deletions zhaquirks/inovelli/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -108,11 +108,14 @@ class Inovelli_VZM31SN_Cluster(CustomCluster):
0x0014: ("active_energy_reports", t.uint16_t, True),
0x0015: ("power_type", t.uint8_t, True),
0x0016: ("switch_type", t.uint8_t, True),
0x0019: ("increased_non_neutral_output", t.Bool, True),
0x0032: ("button_delay", t.uint8_t, True),
0x0033: ("device_bind_number", t.uint8_t, True),
0x0034: ("smart_bulb_mode", t.Bool, True),
0x0035: ("double_tap_up_for_max_brightness", t.Bool, True),
0x0036: ("double_tap_down_for_min_brightness", t.Bool, True),
0x0035: ("double_tap_up_enabled", t.Bool, True),
0x0036: ("double_tap_down_enabled", t.Bool, True),
0x0037: ("double_tap_up_level", t.uint8_t, True),
0x0038: ("double_tap_down_level", t.uint8_t, True),
0x003C: ("default_led1_strip_color_when_on", t.uint8_t, True),
0x003D: ("default_led1_strip_color_when_off", t.uint8_t, True),
0x003E: ("default_led1_strip_intensity_when_on", t.uint8_t, True),
Expand Down Expand Up @@ -145,6 +148,9 @@ class Inovelli_VZM31SN_Cluster(CustomCluster):
0x0060: ("led_color_when_off", t.uint8_t, True),
0x0061: ("led_intensity_when_on", t.uint8_t, True),
0x0062: ("led_intensity_when_off", t.uint8_t, True),
0x0064: ("led_scaling_mode", t.Bool, True),
0x007B: ("aux_switch_scenes", t.Bool, True),
0x007D: ("binding_off_to_on_sync_level", t.Bool, True),
0x0100: ("local_protection", t.Bool, True),
0x0101: ("remote_protection", t.Bool, True),
0x0102: ("output_mode", t.Bool, True),
Expand Down

0 comments on commit f2f01b0

Please sign in to comment.