Juan Carlos
Created January 30, 2016 © GPL3+

Hello world Udoo Neo

How to execute the "blinking" led with UDO NEO

BeginnerFull instructions provided631
Hello world Udoo Neo

Things used in this project

Hardware components

UDOO NEO
UDOO NEO
×1

Story

Read more

Code

arduino "Hello World"

Arduino
Lights up a led for a second, turns it of for a second, like this forever :)
void setup() {

  pinMode(13, OUTPUT);
}


void loop() {
  digitalWrite(13, HIGH);
  delay(1000);
  digitalWrite(13, LOW);
  delay(1000);
}

Credits

Juan Carlos

Juan Carlos

8 projects • 9 followers

Comments