From 5e4a299f45934ed7b39f3127b384560d042d8872 Mon Sep 17 00:00:00 2001 From: Rohan Kapoor Date: Mon, 3 Feb 2025 17:55:15 -0800 Subject: [PATCH] Add support for light_brightness_move and light_brightness step to Inovelli switches --- src/devices/inovelli.ts | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/src/devices/inovelli.ts b/src/devices/inovelli.ts index aa0a1f56219b4..162a0c32b0704 100644 --- a/src/devices/inovelli.ts +++ b/src/devices/inovelli.ts @@ -1980,6 +1980,8 @@ const definitions: DefinitionWithExtend[] = [ tz.power_on_behavior, tz.ignore_transition, tz.identify, + tz.light_brightness_move, + tz.light_brightness_step, tzLocal.inovelli_led_effect, tzLocal.inovelli_individual_led_effect, tzLocal.inovelli_parameters(VZM30_ATTRIBUTES, INOVELLI_CLUSTER_NAME), @@ -2030,6 +2032,8 @@ const definitions: DefinitionWithExtend[] = [ tz.power_on_behavior, tz.ignore_transition, tz.identify, + tz.light_brightness_move, + tz.light_brightness_step, tzLocal.inovelli_led_effect, tzLocal.inovelli_individual_led_effect, tzLocal.inovelli_parameters(VZM31_ATTRIBUTES, INOVELLI_CLUSTER_NAME), @@ -2101,6 +2105,8 @@ const definitions: DefinitionWithExtend[] = [ toZigbee: [ tz.identify, tzLocal.vzm36_fan_on_off, // Need to use VZM36 specific converter + tz.light_brightness_move, + tz.light_brightness_step, tzLocal.fan_mode(2), tzLocal.light_onoff_brightness_inovelli, tzLocal.inovelli_parameters(VZM36_ATTRIBUTES, INOVELLI_CLUSTER_NAME),