Little Bird
Uno R3 - Little Bird
All Products
New Arrivals
Arduino
Circuitry & IOT
Brands and Manufacturers
Microcontrollers & Development Boards
Digital Technologies
Arduino STEM Products
Arduino Boards
Learning & Starter Kits
Prototyping & Wiring
Little Bird Electronics
Microcontrollers
$19.00
$28.00
Save 32%
|
In stock
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...
Estimated Delivery
Arrives
Disclaimer
Secure checkout
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 expansion boards easy.
This Arduino can be powered from 7-12 VDC or using your computer's USB port (limited available current to pins if done so).
This board includes a USB type B Cable.
Just like the original Arduino Uno the Arduino Shield compatible design makes adding expansion boards easy.
This Arduino can be powered from 7-12 VDC or using your computer's USB port (limited available current to pins if done so).
This board includes a USB type B Cable.
We have written so many tutorials for the Arduino here!
Jargon buster
Plain-language definitions for the technical terms used above.
- Shield
- An add-on board that plugs into a main controller board to give it extra features such as sensing, motor control or communication. Knowing a product supports shields helps you judge whether it can connect neatly into an existing maker-board setup.
Find this product in
All Products
Circuitry & IOT
Learning & Starter Kits
Microcontrollers & Development Boards
New Arrivals
Prototyping & Wiring
Arduino
Code Examples
Sample code to get started with this product
blink.ino
Arduino
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
}
Project Guides
Step-by-step builds that use this part
Alcohol Sensor with Arduino
Optional part
Beginner
Automatic Plant Watering with Arduino
Optional part
Intermediate
Capacitive Touch Sensor with Arduino
Optional part
Beginner
Change a Variable with a Potentiometer
Optional part
Beginner
Control a Servo with Arduino
Optional part
Beginner
Hall Effect Sensor with Arduino
Optional part
Beginner
How to Power Your Arduino
Optional part
Beginner
How to Use an RGB LED with Arduino
Optional part
Beginner
LEDs with Arduino
Optional part
Beginner
Laser Sensor for Arduino
Optional part
Beginner
Light Dependent Resistor
Optional part
Beginner
Lorikeet with Arduino
Optional part
Beginner
Make a Sound with a Piezo Buzzer
Optional part
Beginner
Meet the Arduino IDE
Optional part
Beginner
Program an Uno with Raspberry Pi
Optional part
Beginner
Real-time clock with Arduino
Optional part
Intermediate
Reed Switch with Arduino
Optional part
Beginner
SD Card Module with Arduino
Optional part
Intermediate
Sound Detection with Arduino
Optional part
Beginner
Temperature Sensor
Optional part
Beginner
Ultrasonic Rangefinder with Arduino
Optional part
Beginner
Use a Moisture Sensor with Arduino
Optional part
Beginner
Use a Push Button with Arduino
Optional part
Beginner
Use a Tilt Sensor with Arduino
Optional part
Beginner
Use an Arduino to Control a Relay
Optional part
Beginner
Use an IR Receiver with Arduino
Optional part
Beginner
millis() function and Arduino
Optional part
Intermediate
Related Tutorials
Free guides on learn.littlebird.com.au