Domochip / WPalaControl

D1Mini to replace Palazzetti, Jotul, TurboFonte, Godin stove ConnectionBox
42 stars 9 forks source link

Add F3L and F4L setting #33

Closed carmelo42 closed 8 months ago

carmelo42 commented 8 months ago

Just tried the 2.1.5/3.1.2v2 pre-release :

image

It works great :)

I can change the main fan setting (F3L) but there are 2 settings missing : left and right fans (F3L and F4L) :

image
Domochip commented 8 months ago

Thank you for the feedback. I had a doubt about this part because my stove doesn't have this additionnal fans. So, if I understand well, it would be better to have 2 sliders for F3 and F4, right? With value from 0 to 5?

carmelo42 commented 8 months ago

Yes exactly :) 2 sliders for the 2 additional fans, scale 0 to 5.

pm2036 commented 8 months ago

Hello, On my stove, F3L and F4L is only 0/1. Maybe it depends of the stove model?

Screenshot_2024-02-09-10-01-37-662_it palazzetti app smartstoves-edit Screenshot_2024-02-09-10-02-06-744_it palazzetti app smartstoves-edit

carmelo42 commented 8 months ago

Mine is "TURBOFONTE TAL" which is I think the same as PALAZZETTI JULIA :

// 20240209100452
// http://192.168.0.239/cgi-bin/sendmsg.lua?cmd=SET+FN4L+4

{
  "INFO": {
    "CMD": "SET FN4L",
    "RSP": "OK"
  },
  "DATA": {
    "F4L": 4
  },
  "SUCCESS": true
}

On the MQTT bus :

image

And for the other fan :

// 20240209100713
// http://192.168.0.239/cgi-bin/sendmsg.lua?cmd=SET+FN3L+4

{
  "INFO": {
    "CMD": "SET FN3L",
    "RSP": "OK"
  },
  "DATA": {
    "F3L": 4
  },
  "SUCCESS": true
}
image
pm2036 commented 8 months ago

Ok, mine is a Palazzetti Allegro

http://192.168.110.70/cgi-bin/sendmsg.lua?cmd=SET+FN3L+4 {"INFO":{"RSP":"OK","CMD":"SET FN3L","TS":1707471245},"SUCCESS":true,"DATA":{"F3L":1}}

I think the max value is in sendmsg.lua?cmd=GET+ALLS "FANLMINMAX":[0,5,0,1,0,1]

Domochip commented 8 months ago

Yes, FANLMINMAX contains these limits. 2 firsts numbers are min and max for RoomFan (aka FAN2) 2 nexts are for F3 then 2 last numbers are for F4

So, the good option id to use some switches for stove which have "0,1" limits and sliders for "0,5" limits I'll implement that shortly

Domochip commented 8 months ago

V3 prerelease is available and adjust the HomeAssistant Entity type based on the Fan Min and Max values. Could you let me know if it fit your needs?

carmelo42 commented 8 months ago

It works great :)

image

Domochip commented 8 months ago

In your case, switch buttons can be removed then

carmelo42 commented 8 months ago

Yes I will remove them. I'm happy, I've removed https://github.com/marcopal74/home-assistant-palazzetti which was not working every time.

pm2036 commented 8 months ago

Ok for me too, thanks. image