DongGeun Leegledel
Published

Fab Lab Academy BongGo first class

Our first arduino class!!! We turn on and blinking on the led using the arduino.

BeginnerFull instructions provided43
Fab Lab Academy BongGo first class

Things used in this project

Hardware components

Breadboard (generic)
Breadboard (generic)
×1
Arduino 101
Arduino 101
×1
LED (generic)
LED (generic)
×3
Resistor 100 ohm
Resistor 100 ohm
×1
Jumper wires (generic)
Jumper wires (generic)
×10

Software apps and online services

Arduino IDE
Arduino IDE

Story

Read more

Code

blinking led

Arduino
easy
/* SparkFun	Inventor's	Kit	for	the	Arduino	/	Genuino	101 Example	sketch	01
BLINKING	AN	LED
Turn	an	LED	on	for	one	second,	off	for	one	second, and	repeat	forever.
This	sketch	was	written	by	SparkFun	Electronics, with	lots	of	help	from	the	Arduino	community. This	code	is	completely	free	for	any	use. Visit	http://learn.sparkfun.com/products/2	for	SIK	information. Visit	http://www.arduino.cc	to	learn	about	Arduino. */
//The	setup	function	runs	once	upon	your	Arduino	being	powered	or	once	upload	is										//complete.
void	setup() {		//set	pin	13	to	OUTPUT			pinMode(13,	OUTPUT); }
//The	loop	function	runs	from	the	top	down	and	repeats	itself	until	you	upload	new								//code	or	power	down	your	Arduino void	loop() {		//Turn	pin	13	HIGH	(ON).			digitalWrite(13,	HIGH);			
		//wait	1000	milliseconds	(1	second)		delay(1000);														
		//Turn	pin	13,	LOW	(OFF)		digitalWrite(13,	LOW);				
		//wait	1000	milliseconds		delay(1000);														}

Credits

DongGeun Lee
4 projects • 1 follower
Hi, glad to meet you. I'm a high school student and studying arduino now. I look forward to your kind cooperation. thx :)
Contact
gledel
100 projects • 116 followers
Looking back on my childhood, I was happy when I was making something and I was proud of myself. "Making is instinct!"
Contact

Comments

Please log in or sign up to comment.