This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #define LED1 2 | |
| #define LED2 3 | |
| #define LED3 4 | |
| #define LED4 5 | |
| #define LED5 6 | |
| #define LED6 7 | |
| #define LED7 8 | |
| #define LED8 9 | |
| #define DELAYMS 100 | |
| #define LDR_PIN A0 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #define LED1 3 | |
| #define LED2 4 | |
| #define LED3 5 | |
| #define LED4 6 | |
| #define LED5 7 | |
| #define LED6 8 | |
| #define LED7 9 | |
| #define LED8 10 | |
| void setup() { |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #define LED1 5 | |
| #define LED2 6 | |
| void setup(){ | |
| pinMode(LED1, OUTPUT); | |
| pinMode(LED2, OUTPUT); | |
| } |