SandroMesquitaPixelsEscola
Published

Three Form of Blink LED

In this article, we will show three form of blink LED, and you will learn that use the delay() is bad to program.

BeginnerFull instructions provided5,904
Three Form of Blink LED

Things used in this project

Story

Read more

Schematics

Led com Arduino

Code

Pisca LED lendo a porta Digital

Arduino
const int LED=13; //Declara o led na 
                  //porta 13
void setup() {
pinMode(LED,OUTPUT);//Configura porta 13 
}                   //como de sada

void loop() {
  digitalWrite(LED, !digitalRead(LED));
  delay(1000);
}

Credits

SandroMesquita

SandroMesquita

14 projects • 113 followers
Professor de robótica com Arduino e Raspberry, estudando e aplicando conhecimentos de I.A. usando a Linguagem Python como base.
PixelsEscola

PixelsEscola

14 projects • 69 followers

Comments