GitHubUser655321
Results
2
comments of
GitHubUser655321
I'm here for the same reason, to control the Load Control Relay. The documentation says the address is 2; ``` Number: H3 Variable Name: Manual control the load Address: 2...
Hey @rosswarren - thanks, that worked great! I put this code in my driver.py file and it does the job; ``` def set_manual_control_the_load(self, turn_on): if turn_on: return self.write_bit(0x2, 1) else:...