Compare commits
No commits in common. "a58d77de9e384c933ae2fc5a8002cbd524df84ab" and "dba521933e5d150f075da03f9c2b3d492604e7a2" have entirely different histories.
a58d77de9e
...
dba521933e
|
@ -5,5 +5,4 @@ This is a repository that containing arduino code to program arduino uno for pwm
|
||||||
## Resources
|
## Resources
|
||||||
|
|
||||||
* [Arduino Tutorial Foundations: PWM](https://www.arduino.cc/en/Tutorial/Foundations/PWM)
|
* [Arduino Tutorial Foundations: PWM](https://www.arduino.cc/en/Tutorial/Foundations/PWM)
|
||||||
* [Arduino PWM Tutorial](https://create.arduino.cc/projecthub/muhammad-aqib/arduino-pwm-tutorial-ae9d71)
|
* [Arduino PWM Tutorial](https://create.arduino.cc/projecthub/muhammad-aqib/arduino-pwm-tutorial-ae9d71)
|
||||||
* [9 Arduino Compatible Temperature Sensors for Your Electronics Projects](https://randomnerdtutorials.com/9-arduino-compatible-temperature-sensors-for-your-electronics-projects/)
|
|
|
@ -0,0 +1,16 @@
|
||||||
|
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);
|
||||||
|
}
|
||||||
|
}
|
|
@ -1,27 +0,0 @@
|
||||||
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…
Reference in New Issue