Tec1 12709 40X40Mm Thermoelectric Cooler 9A Peltier Module
Rs. 254.00 Rs. 305.00
- Brand: https://peltiermodules.com/?p=product
- Product Code: SEN-PELTIER
- SKU -
- Availability: In Stock
- Price in reward points: 3
- For Bulk Order 9962060070
Quick support on WhatsApp (+919962060070) only between morning 11am-4pm, no call will be answered
SPECIFICATIONS | |
Model | TEC1-12709 |
Operating Voltage(VDC) | 12 |
Maximum Voltage(V) | 15 |
Maximum Current(A) | 9 |
Maximum Power (W) | 130 |
Wire Length(mm) | 250 |
Shipment Weight | 0.125 kg |
Shipment Dimensions | 5 × 5 × 5 cm |
OVERVIEW | |
Model number | TEC1-12709 |
Operating Voltage | 12V |
Maximum Voltage- Umax (V) | 15V |
Maximum Current- Imax (A) | 9A |
Maximum power (W) | 130 |
Power Cord | 25cm |
₹ 350.00 (inc GST) | |
₹ 296.61 (+18% GST extra) |
PACKAGE INCLUDES:
1 PCS x Tec1 12709 40X40Mm Thermoelectric Cooler 9A Peltier Module
https://peltiermodules.com/?p=product
//SOURCE CODE FROM BELOW LINK
//https://content.instructables.com/pdfs/E5K/HLEL/II96XKHB/How-to-Set-Up-a-Peltier-Module.pdf
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);
}
15 days