-
|
Hello people. { The values wont change. ChatGPT tells me that there is a firmware limitation - I have done everything right...... I dont think so:P I think that I'm doing something wrong, but I cant seem to figure out where my issue are? An alternative to my wishfull setup is to have a fixed upper and lower limit on the temperature curve at 40C, and then use SetZ1HeatRequestTemperature with +-5C depending on the weather outside. When electricity is cheap, I can SetPowerfulMode to boost the DWH and hottub outside. When I reach the wanted temperatures, I can set the SetPowerfulMode to 0 again, and then down to the normal curve. The prices of electricity flukturates quite a lot, so its important for me to use the power during the hours when its cheap. worst case, it can be a factor 10 depending on supply/demand and if its sunny/windy. Normal days its a factor 2 or 3 from cheap/expensive. Preferble I want to set the curve to whatever state I want and only change the curve, A diffrent alternative, would that be to run the HP in a diffrent mode, as in SetOperationMode=3 (DWH only?) Thanks in advance |
Beta Was this translation helpful? Give feedback.
Replies: 2 comments
-
|
Lol. /// msg.topic = "panasonic_heat_pump/commands/SetCurves"; msg.payload = { return msg; /// Now the setpoint are 35C. It will be interresting to see if I can change the values when the HP are ON. |
Beta Was this translation helpful? Give feedback.
-
|
ChatGPT was hallucinating. It gave me wrong commands to send, and it was very persistant on what to send. I can change the setpoins on the fly when the HP s active. Awesome 👯 |
Beta Was this translation helpful? Give feedback.
Lol.
After fiddleing with it for 2 days, i figured it out - somewhat.
Made a function with this JSON
///
msg.topic = "panasonic_heat_pump/commands/SetCurves";
msg.payload = {
zone1: {
heat: {
target: { high: 35, low: 35 },
outside: { high: 40, low: 30 }
}
}
};
return msg;
///
Now the setpoint are 35C. It will be interresting to see if I can change the values when the HP are ON.