Arduino Blinking LED Tutorial

preview_player
Показать описание

You can find the diagram and code at our website:

The code is also available on GitHub:
Рекомендации по теме
Комментарии
Автор

If you’re still having trouble, check if your wires are bad. I spent the past 2 days pulling my hair out trying to figure out why my code wasn’t working, only to find out my wires weren’t working

redwolf
Автор

This is so cool! I love how simple you can make something so that's actually so intricate. Well done tutorial! Subbed.

murkypuddle
Автор

easy, fast, comprehensible.
feels like a babystep but hey you gotta start somewhere

ninobach
Автор

4 years later the code worked but still it kinda worked

kriststreams
Автор

#define led_pin 8


void setup() {
pinMode(led_pin, OUTPUT);

// put your setup code here, to run once:

}

void loop() {
digitalWrite(led_pin, HIGH);
delay(1500);

digitalWrite(led_pin, LOW);
delay(1500);

KOCHIYEONGMoe
Автор

Thank you, look forward to the next one.

gamefly
Автор

You made a lot of work on this video. Lots of respect for that 👍👍👍Question: Is the speech in your tutorial generated by software?

rolandberendonck
Автор

My led just stays on, I re typed the code 1-1 exactly like you have it on the video, and on gthub . Checked and checked the connections and everything. Changed the delay to a smaller number, and nothing the led stays solid.... HELP I just started trying to do this and I've been discouraging so many times. I do have a Ethernet shield on the Arduino but I don't think that would change anything please help, anyone lols, don't let me give up again please

joshuacox
Автор

its genuinely not working. i have mixed and matched different wires but no matter what i do, it just doesnt work.

ella-mw
Автор

Why am I not allowed to place the transistor parallel to the LED?

wombatZ
Автор

Does it make a difference which Arduino board you use? Having trouble deciding.

juliekhov
Автор

Hii how do I make the LED blink faster

marcjames_
Автор

Which software you used for animation?

electricalengineering
Автор

Hi. How can I contact you? Do you have an email id? I would like to discuss something.

devadathan
Автор

#define led_pin 8


void setup() {
pinMode(led_pin, OUTPUT);

// put your setup code here, to run once:

}

void loop() {
digitalWrite(led_pin, HIGH);
delay(1500);

digitalWrite(led_pin, LOW);
delay(1500);

KOCHIYEONGMoe