Maxime Alves LIRMM@home před 3 roky
rodič
revize
995bf12e6d
1 změnil soubory, kde provedl 2 přidání a 2 odebrání
  1. 2
    2
      pyheatpump/modbus.py

+ 2
- 2
pyheatpump/modbus.py Zobrazit soubor

@@ -134,9 +134,9 @@ def write_holding_register(var_value):
134 134
     )
135 135
 
136 136
     try:
137
-        casted_value = int(var_value.value) + (1 << 16)
137
+        casted_value = (int(var_value.value) + (1 << 16)
138 138
             if (var_value.value < 0)
139
-            else int(var_value.value)
139
+            else int(var_value.value))
140 140
 
141 141
         req_adu = rtu.write_single_register(
142 142
             slave_id=1,

Loading…
Zrušit
Uložit