For heating system using wood or another solid combustible materials who use recycle pump, I design a simple thermostat to power the pump just if water temperature is bigger than desired temperature.
Schematic is simple
Tom, a friend of mine, made practical system with Arduino Nano on PCB:
This thermostat with few components has same schematic with previous thermostat:
Few pics with Arduino Mega board (must just few changes in sketch for works with Uno or Mega): - desired temperature is ok:
- actual temperature is less than desired temperature:
- actual temperature is much than desired temperature:
After push the MENU button, low threshold can be set:
and if I push the "-" button value is decrease with 1 degree Celsius at every push and if I push the "+" button value is increase with 1 degree Celsius at every push.
If I push MENU button, high threshold can be set:
and if I push the "-" button value is decrease with 1 degree Celsius at every push and if I push the "+" button value is increase with 1 degree Celsius at every push. If high threshold is set less low threshold, Arduino automatically change high threshold = low threshold + 1 degree Celsius.
I designed a thermostat with few components using an Arduino board.
I use LM35DZ for temperture sensor, KW4-563ASA display (4 digit 7-segment with common anode), RGB led, 3 button (push button) for select and change the value for desired temperature and for hysteresis.
I designed this schematic:
who is used also for an thermostat with 2 thesholds (must change the sketch).
If measured temperature is less than desired temperture, blue led is on:
and if is to much, red led is on:
If I push the MENU buton, display is change in:
(in right side, is "c" instead "C").
If I push "-" button, temperature value decrease with 0.1 degree Celsius for each push, if I push "+" button, temperature increase with 0,1 degree Celsius for each push.
After that, if I push again MENU button, I will see:
and I can change the value with 0.1 degree, like at desired temperature.
Values for desired temperature and hysteresis are write and stored in internal EEPROM memory of microcontroler (any Arduno board has an microcontroller on it.)
and at begin of sketch must define int pornire; and in setup must put pornire = 0; !! You can download changed sketch from https://github.com/tehniq3. In movie namend Arduino thermostat (2) you can see the changed style, like usual thermostat for a heater: