fix: v2 Light multiplier x3 was 2014 (PDF OCR error) should be 512

This commit is contained in:
2026-07-03 18:22:39 +02:00
parent 4363617cff
commit dd8e7602f5
+1 -1
View File
@@ -61,7 +61,7 @@ V2_MODES = {
}
V2_TIMEFRAME = {0: "10 min", 1: "1 h", 2: "6 days", 3: "24 h"}
V2_TYPE = {0: "regular", 1: "button_call", 2: "alert", 3: "new_mode"}
V2_LIGHT_MULT = {0: 1, 1: 8, 2: 64, 3: 2014}
V2_LIGHT_MULT = {0: 1, 1: 8, 2: 64, 3: 512}
def _decode_v2(b0: int, b1: int, b2: int, b3: int) -> dict: