Cheap Arduino Controled Yogurt Maker

These days I was reading an interesting post on how to make yogurt “by the gallon” (http://www.instructables.com/id/Yogurt-By-The-Gallon/). One thing needed was to maintain a rather constant temperature of 43ºC (110°F), so the bacteria can grow properly. Though you can buy commercial yogurt makers, they aren’t big enough for a gallon of yogurt. Besides, it’s cheaper (and way more fun) to build one yourself.

Cheap Arduino Controled Yogurt Maker

Step 1: Wiring the box

When you apply 12V to the 8 ohm resistor you get a current of 1.5A, wich in turn gives you 18W of heat. This is what’s going to keep our yogurt warm!

In order to better dissipate this heat I screwed the resistor to a piece of scrap metal sheet I had lying around. A better option would be a heat sink+fan from an old computer, but I don’t have one right now…

One wire from the resistor connects to the negative of the power supply, the other one connects to the C (center) connector of the relay. The NO (normally open) connects to the 12V of the power supply.

The 12V relay module has 3 pins: Vin goes to the 12V, GND to the negative and data goes to Arduino pin 3. This module has an optocoupler, which protects the Arduino from any interference from the relay.

The Dallas DS18B20 thermometer also has 3 pins (look for the data sheet). All 3 connect to the Arduino: 1 goes to GND pin, 2 to pin 2 and 3 to +5V pin. Use some thin wire, soldering and heat shrinking tube to connect the thermometer to the Arduino. Note that you need to solder a pull up resistor (4.7K) between pin 2 and 3. Position the thermometer in the box with some tape.

Step 2: Programing the Arduino

Cheap Arduino Controled Yogurt Maker Programming

Now it’s time for some programing. Actually you can just copy my code and upload it to the Arduino 😉

/*
Script by Manuel Schutze – May 2013
Connections:
DS18B20 thermometer – pin 2
Relay module – pin 3
SD CS – pin 10
SD MOSI – pin 11
SD MISO – pin 12
SD CLK – pin 13
*/

// Include necessary libraries
#include <OneWire.h>
#include <DallasTemperature.h>
#include <SD.h>

// Setup vars
long intervalTemp = 1000; // interval between temperature measurements
long intervalSD = 5000; // interval between saving data on the SD card
float tempMin = 42.5; // min temp (< truns on heat)
float tempMax = 43.5; // max temp (> truns off heat)
int rele = 3; // pin where the relay is connected
const int chipSelect = 10; // pin CS (SD card)

 

[box color=”#985D00″ bg=”#FFF8CB” font=”verdana” fontsize=”14 ” radius=”20 ” border=”#985D12″ float=”right” head=”Major Components in Project” headbg=”#FFEB70″ headcolor=”#985D00″]This is what you’ll need:

– Styrofoam box big enough to fit your yogurt jar
– 8 Ohm 25W power resistor (USD 3.80 at aliexpress)
– 12V 2A power supply (got mine from an old laptop)
– Arduino Nano board (USD 11 at dealextreme)
– 12V relay module for Arduino (USD 3.40 at dealextreme)
– DS18B20 thermometer (USD 2.50 at dealextreme)
– 4.7k 1/4W resistor
– Heat sink or piece of scrap metal
– Some wiring

Since I got the Styrofoam box and power supply for free, the total amount I spent on this was less than 21 bucks![/box]

For more detail: Cheap Arduino Controled Yogurt Maker


About The Author

Ibrar Ayyub

I am an experienced technical writer holding a Master's degree in computer science from BZU Multan, Pakistan University. With a background spanning various industries, particularly in home automation and engineering, I have honed my skills in crafting clear and concise content. Proficient in leveraging infographics and diagrams, I strive to simplify complex concepts for readers. My strength lies in thorough research and presenting information in a structured and logical format.

Follow Us:
LinkedinTwitter

Leave a Comment

Your email address will not be published. Required fields are marked *

Scroll to Top