Devices & Components
1
ICStation Mega2560
Hardware & Tools
1
led
Software & Tools
1
Arduino Web Editor
Project description
Code
blink
c_cpp
Comments
Only logged in users can leave comments
Devices & Components
ICStation Mega2560
Hardware & Tools
led
Software & Tools
Arduino Web Editor
Project description
Code
blink
c_cpp
1void setup() { 2 // put your setup code here, to run once: 3 pinMode(8, OUTPUT); 4} 5 6void loop() { 7 // put your main code here, to run repeatedly: 8 digitalWrite(8,HIGH); 9 delay(1000);//delay of 1 second 10 digitalWrite(8,LOW); 11 delay(1000); 12}
Comments
Only logged in users can leave comments