I was trying to figure out how to get the state of 'soak' button (turns all pumps off), and also 'microsilk' pump that my hot tub is equipped with. After pressing some buttons on the panel and looking at the parse_status_update() output data, found the following:
self.soak_type = data[27] & 0x3
0 -> soak is off
1 -> soak is on (all pumps off)
2 -> microsilk pump on (all other pumps off)
Now my question is: is there a way to turn on soak mode via a command? What is the best way to figure this one out?
Hello,
I was trying to figure out how to get the state of 'soak' button (turns all pumps off), and also 'microsilk' pump that my hot tub is equipped with. After pressing some buttons on the panel and looking at the
parse_status_update()
output data, found the following:Now my question is: is there a way to turn on soak mode via a command? What is the best way to figure this one out?