//Flowing LED Lights
/* Eight LEDs will light up one by one from left to right, and then go out one by one from right to left.
After that, the LEDs will light up one by one from right to left, and then go out one by one from left to right.
This process will repeat indefinitely.*/
//www.RobotLinking.com
//2015.5.7
/**************************************/
const int lowestPin = 2;//the lowest one attach to
const int highestPin = 11;//the highest one attach to
const int redPin = 11;
const int yellowPin = 9;
const int greenPin = 7;
int lastPin = 2;
int lastlastPin = 2;
/**************************************/
void setup()
{
//set pins 1 through 6 as output
for(int thisPin = lowestPin;thisPin <= highestPin;thisPin++)
{
pinMode(thisPin,OUTPUT); //initialize thisPin as an output
}
}
/****************************************/
void loop()
{
/*
//iterate over the pins
//turn the led on from lowest to the highest
for(int thisPin = lowestPin;thisPin <= highestPin;thisPin++)
{
digitalWrite(thisPin,HIGH);//turn this led on
delay(100);//wait for 100 microseconds
}
//fade from the highest to the lowest
for(int thisPin = highestPin;thisPin>=lowestPin;thisPin--)
{
digitalWrite(thisPin,LOW);//turn this led off
delay(100);//wait for 100 microseconds
}
for(int thisPin = highestPin;thisPin>=lowestPin;thisPin--)
{
digitalWrite(thisPin,HIGH);//turn this led off
delay(100);//wait for 100 microseconds
}
for(int thisPin = lowestPin;thisPin <= highestPin;thisPin++)
{
digitalWrite(thisPin,LOW);//turn this led on
delay(100);//wait for 100 microseconds
}
*/
/*
//svetofor
//red
digitalWrite(yellowPin, LOW);
digitalWrite(redPin, HIGH);
delay(5000);
//yellow red
digitalWrite(yellowPin, HIGH);
delay(2000);
//green
digitalWrite(redPin, LOW);
digitalWrite(yellowPin, LOW);
digitalWrite(greenPin, HIGH);
delay(5000);
//yellow
digitalWrite(greenPin, LOW);
digitalWrite(yellowPin, HIGH);
delay(2000);
*/
for(int thisPin = lowestPin;thisPin <= highestPin;thisPin++)
{
digitalWrite(thisPin,HIGH);
digitalWrite(lastlastPin,LOW);
lastlastPin = lastPin;
lastPin = thisPin;
delay(5000);//wait for 100 microseconds
}
}
Arduino — прошивка для светофора, ночника, и вообще со светодиодами поиграться
Добавить комментарий