From 3839ea6df4f0e66d9fc6f01faffd1298d7e508e5 Mon Sep 17 00:00:00 2001 From: Koen Kanters Date: Tue, 30 Apr 2024 21:51:40 +0200 Subject: [PATCH] fix: Fix ROBB ROB_200-024-0 battery percentage divided by 2 https://github.com/Koenkk/zigbee2mqtt/issues/22348 --- src/devices/robb.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/devices/robb.ts b/src/devices/robb.ts index 3a1ae5b9b408a..f0290ce5382e9 100644 --- a/src/devices/robb.ts +++ b/src/devices/robb.ts @@ -128,7 +128,7 @@ const definitions: Definition[] = [ exposes: [e.battery(), e.action(['brightness_move_up', 'brightness_move_down', 'brightness_stop', 'on', 'off', 'recall_*'])], toZigbee: [], whiteLabel: [{vendor: 'RGB Genie', model: 'ZGRC-KEY-013'}], - meta: {multiEndpoint: true, battery: {dontDividePercentage: true}}, + meta: {multiEndpoint: true}, configure: async (device, coordinatorEndpoint) => { await reporting.bind(device.getEndpoint(1), coordinatorEndpoint, ['genOnOff', 'genScenes']); await reporting.bind(device.getEndpoint(2), coordinatorEndpoint, ['genOnOff']);