Temp Based Fan Speed Control and Monitoring
Temp Based Fan Speed Control and Monitoring
ADARSH, ASHISH
C lass XI ‘A’
PM SHRI KV CHITTARANJAN
1
Project Overview:
Components:
Hardware Connections:
Software Requirements:
Working Principle:
Monitoring Features:
Applications:
Challenges:
CODE:
const int tempPin = A0; // Temperature sensor pin
void setup() {
Serial.begin(9600);
pinMode(fanPin, OUTPUT);
}
void loop() {
} else {
}
Serial.print("Temperature: ");
Serial.print(temperature);
Serial.println("°C");
Serial.println("%");
delay(1000);
}