From 48f232b49908f177ee881b2a71b057cf235dff61 Mon Sep 17 00:00:00 2001 From: Winston Lowe Date: Sat, 8 Nov 2025 17:16:15 -0800 Subject: [PATCH] Changing voltage and curent to a singed type. This was updated in the main cayennelpp code base too. --- cayennelpp/lpp_type.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/cayennelpp/lpp_type.py b/cayennelpp/lpp_type.py index 789d5c3..efa6519 100644 --- a/cayennelpp/lpp_type.py +++ b/cayennelpp/lpp_type.py @@ -27,8 +27,8 @@ class LppType(object): 113: ('Accelerometer', [2, 2, 2], [1000, 1000, 1000], [True, True, True]), 115: ('Barometer', [2], [10], [False]), - 116: ('Voltage', [2], [100], [False]), - 117: ('Current', [2], [1000], [False]), + 116: ('Voltage', [2], [100], [True]), + 117: ('Current', [2], [1000], [True]), 118: ('Frequency', [4], [1], [False]), 120: ('Percentage', [1], [1], [False]), 121: ('Altitude', [2], [1], [True]),