I received my Arduino for christmas and so far have blazed through several Arduino books.
"Getting started with Arduino" (Massimo Banzi)
"Programming Arduino" (Simon Monk)
"30 Arduino projects for the Evil Genius" (Simon Monk)
"Make: Sensors" (Tero Karvinen, Kimmo Karvinen, & Ville Valtokari"
All of which were given to me with the Arduino Uno Starter kit.
Now I have learned a lot and have been working with it often.
my primary project is this...
My shop has solar panels on the roof which feed lines in the floor, temperature controlled with solar heated water.
Currently the Valves are manual valves and the pump is set to turn on when the Thermocouple on the roof with the panels reaches a certain degree.
There are 6 Thermocouples in the floor on the lines to measure temp of areas of the floor, however they are not hooked up at all.
In my idea this is what I want to happen:
Thermo on roof reaches set temp >>>> Pump turns on
Thermo 1+2 which are on the same line is below a set temp >>>> open valve 1 for that area of floor.
Thermo 3+4 which are on the same line is below a set temp >>>> open valve 2
Thermo 5+6 same as the others.
There are a total of 3 valves that I want to operate based on what I determine to be the appropriate temp range.
I can use as little as 4 thermos (1 on the roof and 1 on each line) since they put two thermos on each line.
However my issue comes in the form of this....
Max31855x8 a board I bought from Http;//Whizoo.com it is a multiplex for thermocouples.
I can serial print each thermo individually however I dont know how to extract a single thermo out to make it operate a relay based on temperature.
if anyone can help me out I would appreciate it greatly.
Here is my code:
I have been using the library and code that I found at Github to run the board but am having an issue isolating a single thermo to use its temp to activate a relay.
_4Relaywith8Thermo.ino (4.93 KB)