I would like to know how reliable could be the application of pooling: temperature (int), thermostat mode (int), valve status(boolean) from 4 thermostats every 30s, 24/7
Code: Select all
import hysen2pfc_device
import time
strMac1 = "72:0F:27:84:22:3A"
macbytes1 = bytearray.fromhex(strMac1.replace(':',''))
device1 = hysen2pfc_device.Hysen2PipeFanCoilDevice("192.168.X.Y", macbytes1, "", 10)
device1.auth()
device1.get_device_status()
room_temp_1 = device1.room_temp
mode_1 = device1.mode
valve_state_1 = device1.valve_state
what could be the most fitted board for this application ?