How to Set Up a Peltier Module.

70K3417

Intro: How to Set Up a Peltier Module.

In this Instructable it is shown how to set up a Peltier component via an Arduino board. The instructable will consist of an introduction of the technology and the Arduino setup including general advice for using the unit.
The Arduino setup will consist of the Peltier unit, on/off button and a verification light. An example for an application for using this set up is a drink heater and cooler.

This Instructable is made for the course TfCD.

STEP 1: The Peltier Effect

As one of the thermo-electric effects, the Peltier effect can be very convenient for various products. The Peltier effect converts electric voltage into a change in temperature. Because there are two dissimilar conductors into the circuit one junction of the unit will be cooled and the other will be heated. This effect is even stronger with two dissimilar semiconductors.

Peltier effect is commonly used as coolers, mainly for cooling electronic components and small instruments. It can be found on coolers for food and beverages, suitable for car or campers. Peltier coolers are currently replacing fan to cool CPU.
In general, Peltier cooling technology uses no motors or compressors, so it operates noiselessly. It does not contain refrigerants which are harmful to the ozone layer or contributing to greenhouse effect. In addition, it’s reliable, small-sized and maintenance-free. Component can be easily replaced when it’s not working properly. And it is possible to more accurately adjust the cooling effect than conventional compressors. One interesting aspect is the cooling function can be turned into heating by simply reversing the polarity. However, challenges Peltier cooling technology faces is efficiency and limited temperature differences. By now, the efficiency of Peltier cooling is only around 5% or so, which is lower than compressors.

In the near future, Peltier effect will mainly be adopted on small or portable devices considering its small size and simple components. Wearable devices can be an attractive option, such as jackets, smart watches etc. In addition, due to its high accuracy, it can be adopted on delicate devices which require certain temperatures to operate smoothly. Restricted by its low efficiency, it is however not possible to adopt Peltier modules on household refrigerators to completely replace traditional compressor cooling systems for now.

STEP 2: Arduino Setup: Components

The components used in the Arduino setup are:

  1. An Arduino board (UNO is used in this case)
  2. A breadboard
  3. A push button
  4. A Peltier module
  5. Two 100Ω resistors
  6. An LED
  7. A few wires
  8. Two small metal plates

STEP 3: Arduino Setup: Connect Button Control Circuit

  1. Install a 100Ω resistor and push-button on the breadboard, connect them with a jumper wire.
  2. Connect the 5V pin (orange line) and the GND pin (blue line) to enclose the circuit.
  3. Choose a point between the button and the resistor, insert one end of a wire (green line) into it, and connect the other end of the wire into digital Pin 3.

STEP 4: Arduino Setup: Connecting the Peltier Unit

  1. Put the Peltier module between two metal plates. The module should be placed in between the two plates to guide the heat away from the module. Also, a bit of thermal paste should be used between the module and metal plates. This is not recommended to do if you are still trying things out with it, as it is not fully safe.
  2. Install Peltier module, resistor and LED to the breadboard.
  3. Connect them with jumper wire.
  4. Connect positive side to Digital Pin 6 (yellow line), which is a PWM pin.

STEP 5: Arduino Setup: Coding

Next add import the coding to the Arduino setup.

When writing the code be careful to not sent to much voltage towards the Peltier module. The amount it can handle should be in the product description of the bought unit.

The used in this setup is written below:

int buttonPin = 3;
int buttonInput = 1;
int buttonState = 0;
int peltier = 6;

void setup() {

pinMode(buttonPin, INPUT);

}

void loop() {

buttonInput = digitalRead(buttonPin);

if (buttonInput == 0) {

if (buttonState == 0) {

buttonState = 1;

} else {

buttonState = 0;

}

delay(500);

}

if (buttonState == 1) {

analogWrite(peltier, 120); // Look first on how much voltage your peltier unit can handle 255 = 5V

} else {

analogWrite(peltier, 0);

}

delay(500);

}

STEP 6: Arduino Setup: Upload the Arduino Code and Play!

  1. Click on the Upload button in the Arduino software, to compile and upload the code
  2. When pressing the button down for the first time, LED is turned on and Peltier module starts to work. After several minutes, you can feel the temperature differences between two plates.
  3. After pressing the button again, the LED light turns off. Peltier module stops working.

Turning the setup on and off repeatedly over a short amount of time can be damaging for the Peltier unit! So try to wait a few minutes in between.

The setup should now be complete.

11 Comments

Is this right that reversing current will exchange thermal faces ? Peltier modules are semiconductors, they usually don't like mispolarity.
You'll never damage the Peltier module (with a 100ohm resistor in serie + a led), but you can damage the Arduino output !
How would you connect up a variable speed DC fan to it, with relay, to get airflow over it and a temperature sensor to get the unit to turn on/off at the corrected temperature
Nice circuit, but it won't drive a peltier cooler. Use the arduino circuit to switch a power transistor which will have a sufficient spec to supply the amps of current the peltier will need to operate. The transistor will need a heatsink. Peltiers get very hot (on one side) so the addition of a substantial heatsink and a fan would make it a practical solution.
Hi @all , Am also trying this kind of idea..Can i use any type of N-Channel enhancement mosfet transistor for peltier module for providing enough current?
Is there any header file? It didn't work properly...
Or these whole circuit doesn't work?!

Do this only if you want destroy your arduino!

An arduino can handle only 20mA per port and 200mA for all.

Peltier cells works with 12V DC and much more current.

I suppose your peltier module is 20W.

It drains:

20W / 12V = 1.67A.

As said Tehemton, do you needs a transistor, Mosfet or relay to manage this amount of current.

To pull-up resistor a 10KΩ value is enough. The 100Ω or 220Ω resistor is very small value. It drains 50mA when the button is pressed.

Peltier devices are current devices. You're connecting this to an arduino pin that will never supply enough current to even change the temperatures by a degree... All the Peltier will do is sit there (and possibly even destroy your arduino by drawing more current).
This setup is absolutely useless unless you operate the Peltier with some sort of power Moffett or a motor driver connected to a high current power supply

I kinda had the same thought - I have a project in the works with one of these chips and I bought a (small) dedicated power supply for it and it still isn't enough current - these chips work great but they are power hogs

You could make an h-bridge yourself using irf540-irf9540 mosfets. There are countless schematics available online.. A quick search should give you one that can be controlled by using just one logic gate ic which uses 2 pins on the arduino(one for direction and the other for pwm). The irf540 can allow enough current to pass with 5 volts gate to source(i believe something around 10 amps for 12V drain to source). Alternatively you could use IRL series mosfets that saturate at 5V logic levels.
Nice setup. If you want to get a little more heat transfer out of the peltier module, you can control it with a power transistor. This will let you get more current than the digital pins can provide.