12V Peltier TEC1-12705 Cooler Module

  1. Model number: TEC1-12705
  2. Operating Voltage: 12V
  3. Maximum Voltage- Umax (V) : 15V
  4. Maximum Current- Imax (A) : 5.2A
  5. Maximum Power : 54 W
  6. Power Cord: 25cm

Apple Shopping Event

Hurry and get discounts on all Apple devices up to 20%

220,00 EGP

20 People watching this product now!

Payment Methods:

Description

The 12V Peltier TEC1-12705 Cooler Module is a thermoelectric cooling device used to transfer heat from one side to another, providing efficient cooling for small electronic devices. Powered by a 12V DC supply, it utilizes the Peltier effect to create a temperature difference, with one side becoming cold and the other hot. This module is ideal for cooling applications like portable coolers, small electronic devices, and temperature-controlled systems.


Short Specifications:

  • Voltage: 12V DC
  • Current: 5A (max)
  • Power: 60W
  • Temperature Differential: Up to 67°C
  • Size: 40mm x 40mm
  • Application: Electronic cooling, small devices, portable coolers
 
🔌
Pin Connections
1 Table
Pin Connections Table 1
BoardSensor PinConnection
Peltier + MOSFETPWM in / Load outboard PWM pin -> MOSFET gate; Peltier on its own 12V supply
📟
12V Peltier TEC1-12705 Cooler Module
7 Examples • C/C++ | Boards: Arduino Uno, Arduino Nano, Arduino Mega, ESP32, ESP8266, STM32, Raspberry Pi Pico
12V Peltier TEC1-12705 Cooler Module - Arduino Uno
12V Peltier TEC1-12705 Cooler Module - Arduino Nano
12V Peltier TEC1-12705 Cooler Module - Arduino Mega
12V Peltier TEC1-12705 Cooler Module - ESP32
12V Peltier TEC1-12705 Cooler Module - ESP8266
12V Peltier TEC1-12705 Cooler Module - STM32
12V Peltier TEC1-12705 Cooler Module - Raspberry Pi Pico
📄 File: 12v_peltier_tec1-12705_cooler_module_-_arduino_uno.inoArduino Uno
437 characters
1//ekostra.com
2//electronics store in egypt
3//+201008896258
4
5// This is an ACTUATOR (heat pump), not a sensor - it draws up to 5A and needs a MOSFET/motor driver between it and any GPIO pin. PWM pin 9 on Arduino Uno drives the MOSFET gate.
6#define PELTIER_PWM_PIN 9
7
8void setup() {
9 pinMode(PELTIER_PWM_PIN, OUTPUT);
10}
11
12void loop() {
13 analogWrite(PELTIER_PWM_PIN, 200);
14 delay(5000);
15 analogWrite(PELTIER_PWM_PIN, 0);
16 delay(5000);
17}
📄 File: 12v_peltier_tec1-12705_cooler_module_-_arduino_nano.inoArduino Nano
438 characters
1//ekostra.com
2//electronics store in egypt
3//+201008896258
4
5// This is an ACTUATOR (heat pump), not a sensor - it draws up to 5A and needs a MOSFET/motor driver between it and any GPIO pin. PWM pin 9 on Arduino Nano drives the MOSFET gate.
6#define PELTIER_PWM_PIN 9
7
8void setup() {
9 pinMode(PELTIER_PWM_PIN, OUTPUT);
10}
11
12void loop() {
13 analogWrite(PELTIER_PWM_PIN, 200);
14 delay(5000);
15 analogWrite(PELTIER_PWM_PIN, 0);
16 delay(5000);
17}
📄 File: 12v_peltier_tec1-12705_cooler_module_-_arduino_mega.inoArduino Mega
438 characters
1//ekostra.com
2//electronics store in egypt
3//+201008896258
4
5// This is an ACTUATOR (heat pump), not a sensor - it draws up to 5A and needs a MOSFET/motor driver between it and any GPIO pin. PWM pin 9 on Arduino Mega drives the MOSFET gate.
6#define PELTIER_PWM_PIN 9
7
8void setup() {
9 pinMode(PELTIER_PWM_PIN, OUTPUT);
10}
11
12void loop() {
13 analogWrite(PELTIER_PWM_PIN, 200);
14 delay(5000);
15 analogWrite(PELTIER_PWM_PIN, 0);
16 delay(5000);
17}
📄 File: 12v_peltier_tec1-12705_cooler_module_-_esp32.inoESP32
433 characters
1//ekostra.com
2//electronics store in egypt
3//+201008896258
4
5// This is an ACTUATOR (heat pump), not a sensor - it draws up to 5A and needs a MOSFET/motor driver between it and any GPIO pin. PWM pin 25 on ESP32 drives the MOSFET gate.
6#define PELTIER_PWM_PIN 25
7
8void setup() {
9 pinMode(PELTIER_PWM_PIN, OUTPUT);
10}
11
12void loop() {
13 analogWrite(PELTIER_PWM_PIN, 200);
14 delay(5000);
15 analogWrite(PELTIER_PWM_PIN, 0);
16 delay(5000);
17}
📄 File: 12v_peltier_tec1-12705_cooler_module_-_esp8266.inoESP8266
435 characters
1//ekostra.com
2//electronics store in egypt
3//+201008896258
4
5// This is an ACTUATOR (heat pump), not a sensor - it draws up to 5A and needs a MOSFET/motor driver between it and any GPIO pin. PWM pin D1 on ESP8266 drives the MOSFET gate.
6#define PELTIER_PWM_PIN D1
7
8void setup() {
9 pinMode(PELTIER_PWM_PIN, OUTPUT);
10}
11
12void loop() {
13 analogWrite(PELTIER_PWM_PIN, 200);
14 delay(5000);
15 analogWrite(PELTIER_PWM_PIN, 0);
16 delay(5000);
17}
📄 File: 12v_peltier_tec1-12705_cooler_module_-_stm32.inoSTM32
435 characters
1//ekostra.com
2//electronics store in egypt
3//+201008896258
4
5// This is an ACTUATOR (heat pump), not a sensor - it draws up to 5A and needs a MOSFET/motor driver between it and any GPIO pin. PWM pin PA8 on STM32 drives the MOSFET gate.
6#define PELTIER_PWM_PIN PA8
7
8void setup() {
9 pinMode(PELTIER_PWM_PIN, OUTPUT);
10}
11
12void loop() {
13 analogWrite(PELTIER_PWM_PIN, 200);
14 delay(5000);
15 analogWrite(PELTIER_PWM_PIN, 0);
16 delay(5000);
17}
📄 File: 12v_peltier_tec1-12705_cooler_module_-_raspberry_pi_pico.inoRaspberry Pi Pico
445 characters
1//ekostra.com
2//electronics store in egypt
3//+201008896258
4
5// This is an ACTUATOR (heat pump), not a sensor - it draws up to 5A and needs a MOSFET/motor driver between it and any GPIO pin. PWM pin 15 on Raspberry Pi Pico drives the MOSFET gate.
6#define PELTIER_PWM_PIN 15
7
8void setup() {
9 pinMode(PELTIER_PWM_PIN, OUTPUT);
10}
11
12void loop() {
13 analogWrite(PELTIER_PWM_PIN, 200);
14 delay(5000);
15 analogWrite(PELTIER_PWM_PIN, 0);
16 delay(5000);
17}
Thermoelectric cooler - actuator, not sensor.

Specification

Specification

WeightWeight8 g
Dimensions4 × 3 × 1,5 cm
modelTEC1-12705
operating-voltage-vdc12
maximum-voltagev15
max-operating-current-a5.2
maximum-power-w54
internal-resistance%cf%892.4 to 2.7
wire-lengthmm250

Customer Reviews