Moved source code to subdirectory
This commit is contained in:
parent
dba521933e
commit
e691958829
@ -1,16 +0,0 @@
|
||||
int pwm_fan = 6;
|
||||
void setup() {
|
||||
//Declaring LED pin as output
|
||||
pinMode(pwm_fan, OUTPUT);
|
||||
}
|
||||
void loop() {
|
||||
//Fading the LED
|
||||
for(int i=0; i<255; i++){
|
||||
analogWrite(pwm_fan, i);
|
||||
delay(5);
|
||||
}
|
||||
for(int i=255; i>0; i--){
|
||||
analogWrite(pwm_fan, i);
|
||||
delay(5);
|
||||
}
|
||||
}
|
27
src/home_server_pwm/home_server_pwm.ino
Normal file
27
src/home_server_pwm/home_server_pwm.ino
Normal file
@ -0,0 +1,27 @@
|
||||
int pwmFanPin = 6;
|
||||
int tempSensorPin = 2;
|
||||
|
||||
float sensorValue;
|
||||
|
||||
void setup() {
|
||||
//Declaring LED pin as output
|
||||
pinMode(pwmFanPin, OUTPUT);
|
||||
pinMode(tempSensorPin, INPUT);
|
||||
Serial.begin(9600);
|
||||
}
|
||||
void loop() {
|
||||
// Read temperature
|
||||
sensorValue= analogRead(tempSensorPin);
|
||||
vol
|
||||
Serial.print(
|
||||
|
||||
//Fading the LED
|
||||
for(int i=0; i<255; i++){
|
||||
analogWrite(pwmFanPin, i);
|
||||
delay(5);
|
||||
}
|
||||
for(int i=255; i>0; i--){
|
||||
analogWrite(pwmFanPin, i);
|
||||
delay(5);
|
||||
}
|
||||
}
|
Loading…
x
Reference in New Issue
Block a user