node-red-contrib-heater-controller icon indicating copy to clipboard operation
node-red-contrib-heater-controller copied to clipboard

Heater controller for node-red dashboard

Results 17 node-red-contrib-heater-controller issues
Sort by recently updated
recently updated
newest added

Firstly, excellent ui node! This is an enhancement request, not a bug (actually a return of a previous feature from v2). As per the title - I am currently using...

Hi Sergiu I installed the new version of node-red-contrib-heater-controller but the display is not working. I have no value on the dashboard just "calendar is missing". The heater-controller work but...

condition: 1-user set temp to x 2 - calendar event set heater to y 3 at next room temperature sensor reading (topic.currentTemp) the temperature return to value x the is...

I've been using this node to control my hot tub water temperature for some time and made use of the upper and lower Hysteresis. Being able to have different values...

I see I am not the only user finding that the layout of the latest version does not properly fit the dashboard. On my application, I am getting scroll bars...

### Feature request Regarding a floor heating here the legislation (and hygienic regulations) says the **floor should never overheat above let's say 27 Celsius**. If you have an **electrical floor...

Hi, Thanks for building this. In the last version, I find the layout (either using buttons or slider) way too big. I have 12 heating zones to control and on...

Hi Sergiu, with v2 I used this structure to send a calender to the node: ` "topic" : "setCalendar", "payload" : { "Monday": { "00:00": 17, "06:00": 17, "12:00": 17,...

I'm using the heater controller to set and control my floor heating system. For this system it doesn't make much sense to work with a heating schedule and I would...

from recalculateAndTrigger method ``` function hysteresis(currentTemp, targetValue, thresholdRising, thresholdFalling) { var difference = (targetValue - currentTemp); var newHeaterStatus = (difference < 0 ? "off" : "on"); var threshold = (newHeaterStatus...