EasyManua.ls Logo

Littlebits Arduino Coding Kit - Page 9

Littlebits Arduino Coding Kit
32 pages
Print Icon
To Next Page IconTo Next Page
To Next Page IconTo Next Page
To Previous Page IconTo Previous Page
To Previous Page IconTo Previous Page
Loading...
7
DIY DRAWING MACHINE.
Use two dimmers to draw
on your computer screen,
just like an Etch A Sketch
®
.
ONLINE INVENTION 1 ONLINE INVENTION 3ONLINE INVENTION 2
ANALOG PONG. Play Pong
on your computer screen
using two input Bits.
DIY COMPUTER MOUSE.
Control your mouse
(computer, not pet) with
your Arduino Bit!
Learn how to code your Arduino Bit with
one of the many tutorials on the website.
Learn about all of the dierent features
of the Arduino Bit and how you can use
them to add interactivity or complexity
to your inventions.
FIND THESE INVENTIONS ONLINE
CODING TUTORIALS ARDUINO BIT TUTORIALS
//This is a comment! Comments start with
double backslashes on each line
//This is the start of our program
void setup() {
//Set up Serial Communication
Serial.begin(9600);
}
void loop() {
//See the magic happen!
Serial.println("hello littleWorld!");
}