mirror of
https://github.com/esp8266/Arduino.git
synced 2025-08-01 03:47:23 +03:00
Removing old examples so I can copy over Tom's new ones.
This commit is contained in:
@ -1,24 +0,0 @@
|
||||
// Fading LED
|
||||
// by BARRAGAN <http://people.interaction-ivrea.it/h.barragan>
|
||||
|
||||
int value = 0; // variable to keep the actual value
|
||||
int ledpin = 9; // light connected to digital pin 9
|
||||
|
||||
void setup()
|
||||
{
|
||||
// nothing for setup
|
||||
}
|
||||
|
||||
void loop()
|
||||
{
|
||||
for(value = 0 ; value <= 255; value+=5) // fade in (from min to max)
|
||||
{
|
||||
analogWrite(ledpin, value); // sets the value (range from 0 to 255)
|
||||
delay(30); // waits for 30 milli seconds to see the dimming effect
|
||||
}
|
||||
for(value = 255; value >=0; value-=5) // fade out (from max to min)
|
||||
{
|
||||
analogWrite(ledpin, value);
|
||||
delay(30);
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user