

A Peltier element, also known as a thermoelectric cooler (TEC), is a solid-state semiconductor device that transfers heat from one side of the element to the other when an electric current is applied. This creates a temperature difference, enabling the device to function as a compact and efficient cooling or heating solution. Peltier elements are widely used in applications requiring precise temperature control, such as cooling electronic components, portable refrigerators, and thermal management systems.








Below are the general technical specifications for a typical Peltier element. Note that specific models may vary, so always refer to the datasheet of the exact component you are using.
| Parameter | Typical Value |
|---|---|
| Operating Voltage (V) | 12V (common range: 3V to 24V) |
| Operating Current (A) | 5A (varies by model) |
| Maximum Temperature Difference (ΔT) | 60°C to 70°C |
| Maximum Power Consumption | 60W |
| Dimensions | 40mm x 40mm x 3.6mm (varies) |
| Material | Bismuth Telluride (Bi2Te3) |
| Lifespan | 200,000+ hours (under proper use) |
Peltier elements typically have two wires for electrical connections:
| Wire Color | Description |
|---|---|
| Red | Positive terminal (connect to +V) |
| Black | Negative terminal (connect to GND) |
/*
Example code to control a Peltier element using an Arduino UNO
and a MOSFET. The Peltier element is connected to a 12V power
supply, and the MOSFET is used to switch the element on and off.
*/
const int peltierPin = 9; // PWM pin connected to the MOSFET gate
void setup() {
pinMode(peltierPin, OUTPUT); // Set the pin as an output
}
void loop() {
analogWrite(peltierPin, 128); // Set 50% duty cycle (cooling at half power)
delay(5000); // Keep cooling for 5 seconds
analogWrite(peltierPin, 0); // Turn off the Peltier element
delay(5000); // Wait for 5 seconds before restarting
}
Note: Ensure the MOSFET used can handle the current drawn by the Peltier element. Use a heatsink for the MOSFET if necessary.
Peltier Element Not Cooling or Heating:
Overheating of the Peltier Element:
Low Efficiency or Poor Performance:
Short Lifespan:
Q: Can I use a Peltier element for both heating and cooling?
A: Yes, by reversing the polarity of the power supply, the hot and cold sides of the Peltier element will switch.
Q: How do I know which side is hot and which is cold?
A: When powered, the side facing the positive terminal (red wire) will become cold, and the side facing the negative terminal (black wire) will become hot.
Q: Can I connect a Peltier element directly to a battery?
A: While possible, it is not recommended unless the battery voltage and current match the Peltier element's specifications. Use a regulated power supply for optimal performance.
Q: What happens if I run the Peltier element without a heatsink?
A: The Peltier element will overheat and may become permanently damaged. Always use a heatsink or cooling solution on the hot side.