Closed rysiulg closed 1 month ago
hii see this in history of reg 101 in homeassistant -this value of 5 doesn’t exist in service manual but in york it exists please check in history this 101 PozdrawiamRyszard GwizdakMARM.pl Sp. z o.o.Wiadomość napisana przez Richard Arends @.***> w dniu 20.10.2024, o godz. 17:41: @Mosibi commented on this pull request.
In heatpump.yaml:
- modbus_controller_id: "${devicename}"
- name: "Operating Mode"
- id: "${devicename}_operating_mode"
- icon: mdi:state-machine
- register_type: holding
- address: 0x65
- response_size: 2
- lambda: |-
- int idx = item->offset;
- uint16_t rawdata = (uint16_t(data[idx]) << 8) + uint16_t(data[idx + 1]);
- std::string output = "Unknown: ";
- output += to_string(rawdata);
- if (rawdata == 0) output = "OFF";
- else if (rawdata == 2) output = "Cooling";
- else if (rawdata == 3) output = "CO Heating";
- else if (rawdata == 5) output = "DHW Heating";
I do not see this one, when DHW is heating, the output is still 3. Where/when did you see the output 5?
—Reply to this email directly, view it on GitHub, or unsubscribe.You are receiving this because you authored the thread.Message ID: @.***>
Register 101 is the sensor for register 1, where the operational mode is selected. I am very surprised that York shows that is doing a DHW thing, but if it does, then let’s enjoy it and keep it in !
Register 101 is the sensor for register 1, where the operational mode is selected. I am very surprised that York shows that is doing a DHW thing, but if it does, then let’s enjoy it and keep it in !
OK. Maybe firmware version? -I have my York installed by me in November 2022 -so maybe this is firmware issue with older HeatPump wthich don't have implemented this indication? In service manual value of 5 doesn't exist, so in this config this don't make any mess -i think it can be only update ;)
Thanks again!
Added COP -efficiency of heat pump -tells how much energy is produced from 1kWh of energy consumed -eg 3.69 means 3.69 more kWh energy in heat was produced consumed 1kWh of power energy -bigger is better moved register 101 to text sensor with status from hp -status 5 was missing in service manual but is assumed as dhw heat register 200 is moved to text sensor and decoded with apliance type etc with easly add new values if needed -for only alreadey filled i have data
I decided to send these 4 together -there isn't too much change. about 271 we can discus tomorrow ;) -i propose to add check to not out of range array ;)