Skip to content

Commit 17e1ae4

Browse files
authored
Merge pull request #307 from tim-hellhake/ignore-more-properties
Ignore more properties
2 parents 0ec2820 + ae73954 commit 17e1ae4

File tree

1 file changed

+17
-1
lines changed

1 file changed

+17
-1
lines changed

src/zigbee2mqtt/zigbee2mqtt-device.ts

Lines changed: 17 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,23 @@ function debug(): boolean {
2828
return DEBUG_FLAG.DEBUG_zigbee2mqtt;
2929
}
3030

31-
const IGNORED_PROPERTIES = ['linkquality', 'local_temperature_calibration'];
31+
const IGNORED_PROPERTIES = [
32+
'linkquality',
33+
'local_temperature_calibration',
34+
'update',
35+
'update_available',
36+
'color_temp_startup',
37+
'voltage',
38+
'led_indication',
39+
'occupancy_timeout',
40+
'illuminance',
41+
'motion_sensitivity',
42+
'requested_brightness_percent',
43+
'requested_brightness_level',
44+
'action_side',
45+
'eurotronic_trv_mode',
46+
'eurotronic_valve_position',
47+
];
3248

3349
export class Zigbee2MqttDevice extends Device {
3450
private deviceTopic: string;

0 commit comments

Comments
 (0)