• Hello World

    Blink my lights

    What this program does

    Usually when people are learning a new computer language the first thing they learn is how to get the computer to say 'Hello world'. The Arduino brains of your robot has very limited ways of talking to the outside world so we are going to get the Arduino to say hello by turning an LED on and off again when you press the space bar on your computer. LEDs are 'Light Emitting Diodes', which is just a fancy name for a little tiny light.

  • How Machines Talk

    broken image

    Machines talk using on/off

    Computers and machines use electricity to communicate and the simplest forms of communication are based on turning the electricity on and off again. Light switches work this way. When the voltage is high the light is on. When the voltage is low (zero volts) the light is off.

  • How Arduinos talk

    broken image

    How your robot talks to the world

    Everything on an Arduino works via pins: digital pins (D0-D13) and analogue pins (A1-A7). Each pin is like a little light switch, either high (on)(True) or low (off)(False).

  • Under the hood

    Learning what your robot actually does to turn motors off and on

    broken image

    Connect your bot

    First connect your robot, otherwise you will not see any digital pins (needed later). Go to

    http://connectmybot.strikingly.com/

    to find out how.

     

    broken image

    Start your program

    You need a way to start your program. Click on the yellow control button and then drag a 'space bar' block onto your palette.

    broken image

    Turn on a pin

    To get our robot to communicate to the world we need to light up an LED by turning on a digital pin, pin 13.

     

    Click on the blue Arduino button and drag a digital pin block onto your palette.

    broken image

    Choose your pin

    Click on the little black arrow and then choose pin 13. Pin 13 is connected to the LED on the Arduino brains of your computer.

     

    If you don't have any pins then go back to step 1 and connect Arduino.

    broken image

    Turn the pin on

    To turn on pin13 we need to set the pin to high (True).

     

    Click on the green operators button and then drag a 'true' block up into the hole next to pin13.

     

    broken image

    Hold on!

    We need to make your robot wait for 1 second so that we can see the LED turn on, before we turn the LED off.

     

    Click on the yellow control button and drag up a wait block and add it to the stack of blocks

    broken image

    Add another pin block

    To turn off the LED we need to set pin13 to false.

     

    Press the blue Arduino button and drag a 'set digital pin' block on to your stack of blocks.

     

    Set the pin number to 13.

    broken image

    Turn off LED

    To turn off the LED we need to set pin13 to false.

     

    Click on the green operator button and drag a 'false' block into the hole next to pin 13.

    broken image

    Make something happen!

    Press the space bar on your computer and look at the Arduino brains of your computer to see what happens.

     

    See the green line around your stack of blocks -- this mean that they are being run.

    broken image

    What does wait do?

    change the wait time to four seconds and then press the space bar.

     

    What does that do?

    broken image

    Save your work!!

    Save your programs in case you make a mistake and delete something or if you need to look at your program later.

     

    Click on the 'paper' icon and choose 'save' or 'save as'. You might call your program 'toggleLED'

    broken image

    Exploring how it works

    Change the pin number on both blue blocks to pin 2, then press the space bar on your computer.

     

    What happens?

     

    What about the other digital pins?

     

    How can you get the robot to move straight ahead?

    broken image

    Make you own block

    Now that you know how to control the Arduino pins, wrap all the steps up together into a custom block to make them easier to use: customblocks.strikingly.com (not yet)

  • Contact Us!

    To get help building, programming or hosting a workshop:

  • About THE tKcBOT

    'Standing on the shoulders of giants.'

    Inspiration

    Starting from the UNSW CS4HS bot, many people have given this project a inspirational push, encouraging feedback, opened doors of opportunity, or sustained the project through their enthusiastic participation. Thanks to Susan, BW, Phillip, Adele, Ruth, Stuart and many others.

    Technology

    Thanks to the explosion of information available on the Internet it is possible to create a robot with amazing capabilities just by bringing together pieces of existing technology with very little original technology.  My role has been to marry the inspiration with the the technology available, and to use my experience as a teacher to construct the learning materials to help bring this amazing technology to children. Thanks also, to the helpful people (especially Leo) at Hobart Hackerspace, who have experience and expertise way beyond mine.