1
0
mirror of https://github.com/arduino/Arduino.git synced 2024-12-03 14:24:15 +01:00
Arduino/build/shared/dist/examples/Analog/Fading/Fading.pde

44 lines
1.0 KiB
Plaintext
Raw Normal View History

2009-06-17 23:28:08 +02:00
/*
Fading
2007-04-23 17:43:12 +02:00
2009-06-17 23:28:08 +02:00
This example shows how to fade an LED using the analogWrite() function.
2007-04-23 17:43:12 +02:00
2009-06-17 23:28:08 +02:00
The circuit:
* LED attached from digital pin 9 to ground.
Created 1 Nov 2008
By David A. Mellis
Modified 17 June 2009
By Tom Igoe
http://arduino.cc/en/Tutorial/Fading
*/
int ledPin = 9; // LED connected to digital pin 9
void setup() {
// nothing happens in setup
2007-04-23 17:43:12 +02:00
}
2009-06-17 23:28:08 +02:00
void loop() {
// fade in from min to max in increments of 5 points:
for(int fadeValue = 0 ; fadeValue <= 255; fadeValue +=5) {
// sets the value (range from 0 to 255):
analogWrite(ledPin, fadeValue);
// wait for 30 milliseconds to see the dimming effect
delay(30);
}
// fade out from max to min in increments of 5 points:
for(int fadeValue = 255 ; fadeValue >= 0; fadeValue -=5) {
// sets the value (range from 0 to 255):
analogWrite(ledPin, fadeValue);
// wait for 30 milliseconds to see the dimming effect
delay(30);
}
}