I plan on writing something a little more in-depth of uCHobby, but in the meantime, if anyone has any questions, I'd be happy to answer them and share my code if there's interest.
first of all, my apologies for my bad english.
I will read your mini-write up in a very detailed fashion.
I'm am brewer too, from Argentina, and i'm doing something similar, but
i didn't feel confortable with high tension yet (220 volts, thats the voltage refrigeretors works here).
so I plan in doing something similar to the "Son of the Fermetation chiller" (http://home.elp.rr.com/brewbeer/chiller/chiller.PDF) but microcontrolled.
anyway in some future when I do brew a lager (up to now I brew Ales only) something like this will be a must.
please keep us informed. and thanks for sharing.
I'm a web/java programmer too, and an electronics hobbyst.
scoates,
Your mini write up sounded cool. I just started playing around with my arduino, but I was thinking of creating a similar project (on a slightly finer scale). I want to use a thermocouple to control a peltier plate (with a ssr like your temp. controller). Being a newbie, I am really bad with the programming side of things, would you mind posting your code so I could work off of your model?
Thanks,
Frank
You'll need to make sure you can get an SSR that handles a DC load.
The whole writeup should be on ucHobby in the coming days. In the meantime, here's the code. I'm sure it could be optimized a bit, but it works for me:
scoates,
This relay issue is beginning to boggle my mind! I just got my peltier here http://www.allelectronics.com/cgi-bin/item/PJT-6/775/40_MM_SQUARE_THERMOELECTRIC_COOLER_.html
My problem is the amperage, most low voltage (5vdc) relays are only rated for about 1 amp. DC ss relays are rated higher, but are way too expensive (in addition, the output voltage is typically around 24vdc)! What relay did you choose for your peltier setup? Do you have any problems drawing too much current?
Thanks
Yes, Solid State Relays are much more expensive than regular mechanical relays. My fermenter isn't exactly working right now (-:
I have a regular relay that I found in the surplus aisle of my local electronics shop that's rated for 5A. My Peltiers draw 2.2A each (currently), at 12V.
scoates,
This relay issue is beginning to boggle my mind! I just got my peltier here http://www.allelectronics.com/cgi-bin/item/PJT-6/775/40_MM_SQUARE_THERMOELECTRIC_COOLER_.html
My problem is the amperage, most low voltage (5vdc) relays are only rated for about 1 amp. DC ss relays are rated higher, but are way too expensive (in addition, the output voltage is typically around 24vdc)! What relay did you choose for your peltier setup? Do you have any problems drawing too much current?
Thanks
hey
the relay ratings you're talking about are the maximum ratings.... you can just as easily run 12V through them.
A relay with contacts rated 48V, 10A, for example, can handle loads of
5V @ 10A, 12V @ 2A, 36V @ 10A, etc etc. The contacts are always rated for the maximum load they can handle, but you always use less than that.
You can get a cheap relay ( think automotive supply- cars are full of relays) with a 12V coil that will switch lots of amps ( 20 or more). All you need is to add a transistor circuit to the Arduino to drive the relay, and you need a source of 12V for the relay coil. Look in the Playground for more information, under tutorial>relay.
D
PS: solid-state relays are probably not such a hot idea for switching DC, as you need to get a special "DC" model. This is due to the fact that most SSR's use thyristors ( SCR's and Triacs) as their active element, which latch into the conducting state when they are fed DC. You could also try a TIP102 Transistor with a heatsink, or something like an IRFZ40 MOSFET.... google them and you'll get the idea.
Thanks for the quick response guys. I am going to try wiring a automobile relay (12v coil) according to the tutorial diagram. Looks like it is time to order a TIP102 transistor. I don't want to hijack this thread so if I have any more questions I will start my own thread in an appropriate category.
Thanks again,
Frank
Sorry for the delay. The editor over at uchobby finally published my article, so hopefully that answers your questions. If anything is still unclear, feel free to ask.
FYI, I've modified this project pretty heavily. I've added support for a 2nd "vessel" with both heat and cool control (for fermenting), added a display, changed my temperature measuring devices to LM35s (changing to DS1624s, soon), and rewrote ALL of the code.