Little Bird: Big on service!
Little Bird are awesome. Same day dispatch, delivery the very next day. Love you guys and girls!
Rolf Mutter
/products/{handle}.md)
and JSON
(/products.json, /products/{handle}.json).
Little Bird
The Little Bird Uno R3, is a 100% Arduino™ compatible development board.Just like the original Arduino Uno the Arduino Shield compatible design makes adding...
Plain-language definitions for the technical terms used above.
Find this product in
Arduino
Sample code to get started with this product
The classic Arduino Blink sketch. Turns the built-in LED on for one second, then off for one second, repeatedly.
/*
Blink
Turns an LED on for one second, then off for one second, repeatedly.
Most Arduinos have an on-board LED you can control. On the Uno R3
it is attached to digital pin 13.
This example code is in the public domain.
https://www.arduino.cc/en/Tutorial/BuiltInExamples/Blink
*/
// the setup function runs once when you press reset or power the board
void setup() {
// initialize digital pin LED_BUILTIN as an output
pinMode(LED_BUILTIN, OUTPUT);
}
// the loop function runs over and over again forever
void loop() {
digitalWrite(LED_BUILTIN, HIGH); // turn the LED on (HIGH is the voltage level)
delay(1000); // wait for a second
digitalWrite(LED_BUILTIN, LOW); // turn the LED off by making the voltage LOW
delay(1000); // wait for a second
}
Step-by-step builds that use this part
Free step-by-step guides
Hi, I'm Maddy. My team and I are ready to help with your order or any questions.