-
Notifications
You must be signed in to change notification settings - Fork 22
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Support for Sinclair Heapumps #68
Comments
Can you describe what all of these new fields are please? @TheEris I understand the Hi/Lo relation, but not really what the fields are reporting. |
@cmroche I've figured out only the most basic info as i wanted to just tract the water temperature. In the end i dont even control it from this. Here is what I know: AllInWatTemHi/Lo - Water temperature returning to the pump as for the AnFrzzRunSta that should be anti freeze cycle, it newer changed from 0 Ill try to dig up some old notes when i was figuring it out the first time, or ill just try to reverse-engineer it again this weekend as now i have nodered setup for easy control of the packets. |
@TheEris Which sensor replaces TemSet then as the "Current Temperature" reported on the Climate device in HASS? |
Also, could you tell me what the HID value is? Usually dumped to logs, or you can query it. |
That would be as for the HID value, im not sure what is that ? |
Send:
Will report
If you enable debug logs for Or, just read back the value of HID like you would any other property on the device. |
ok, just got the HID value,
its same for both pumps (models smh-100irb and smh-60irb) |
@TheEris One more please, when binding, the devices will respond with a "bindok" message, could you paste the whole message (for both) please. |
@cmroche sure its the same response for both models, just different key and mac, pack is decoded in this snipped for easier reading (original is encoded with the default key
btw, the whole discovery and values ive managed to find is in my older post here |
this is pretty much copypaste of my other issue from
gree-remote
, link hereI've got myself a few months back a heat pump from Sinclair (model: smh-100irb and smh-60irb) and it didn't work out of the box, so I've started digging. Here is the complete flow I was able to dig out from the EWPE Smart app with Wireshark (the heat pump is there as "ATW HP").
For now I've created a flow in node-red that reads the states (in, out and room temp) and pushes it into HA.
All the pack data is decrypted for easier reading.
after inital discovery and binding:
with response
input water temp: (dat[0]-100)+dat[1]*0.1 = 32.4
output water temp: (dat[2]-100)+dat[3]*0.1 = 32.2
same goes for other variables that have two parts wih Hi-Lo ending
(HepOutWatTem shows -30 because i dont have it configured)
everything else works fine, i can even controll the unit if i change the fields.
The text was updated successfully, but these errors were encountered: