This section will show you how to use the Finch Robot 2.0 with Java on Mac/Windows computers. Your computer must have Bluetooth capability to program the Finch in Java.
Browser-based Java editors are not compatible with the Finch. You can use any offline Java editor with the Finch. If you don’t have a favorite, we suggest trying Eclipse.
Optional step: If your micro:bit is already flashing 3 or 10 characters when powered on, you can skip this step.
Download this file and drag it onto the micro:bit. Your device should start to flash ten characters on its display. You will only need to complete this step once for each Finch – as long as your device is flashing its initials, you are ready to connect via Bluetooth.
After dragging the file onto the micro:bit, remove the USB cord. You won’t need it to use Java.
When you turn on your Finch the color of the tail LEDs will indicate the battery charge level.
– If all 4 tail LEDs are GREEN this means your Finch is fully charged.
– If 3 tail LEDs are GREEN this means your Finch is partially charged.
– If tail LEDs are YELLOW this means you have about 2 hours of charge left on your Finch.
– If 1 tail LED is RED this means you should charge your Finch immediately. You may lose Bluetooth connection at this point.
If the Finch battery becomes very low while you are programming, all the tail LEDs will quickly blink RED 5 times, once per minute until you plug the Finch in for charging.
To charge the Finch, plug the USB-C cable (micro-USB on older models) into the charging slot beneath the Finch’s tail.
Plugging the micro USB into the micro:bit will NOT charge the Finch!
Fully charging the Finch takes 7 hours. We suggest charging the Finch overnight.
The micro:bit is not needed to charge the Finch.
To turn off the Finch after you are done using it, hold down the power button until the beak turns red.
The Finch will turn itself off to save battery power if it is inactive for 10 minutes without connecting to Bluetooth, or for 20 minutes while connected to Bluetooth.
When turning off, the Finch will play a disconnecting sound and the beak LED will be red. The Finch will also show its battery status using the tail LEDs.
This section will show you how to use an offline Java editor with the Finch on Mac/Windows computers. Browser-based Java editors are not compatible with the Finch.
You can use any offline Java editor with the Finch, but if you don’t have a favorite, we suggest trying Eclipse. The screenshots here will show Eclipse as an example.
**IMPORTANT NOTE** You will need to install a Java Development Kit (JDK) prior to installing Eclipse. If your computer does not already have a JDK, please download one from https://www.oracle.com/java/technologies/downloads/
Download the BirdBrain Java Library.
When you connect to your Finch, you will hear a series of tones, and the robot will show up in the purple “CONNECTED” section of the BlueBird Connector.
You can minimize the BlueBird Connector, but you should leave it open the entire time that you are using the Finch. If at any point you have trouble with your robot, you should come back to the BlueBird Connector, check your Bluetooth connection, and reconnect if necessary. You can also check your battery level in the BlueBird Connector.
Once the files are in the src folder, open FinchTest.java. To test that everything is working properly, run the test program. The Finch’s beak should blink 10 times.
Now you are ready to start writing your own Java programs with the Finch! These lessons will help you to get started, and this reference summarizes the functions that are available in the Finch library.
Make sure to store your programs in the finch project so that they can find the Finch class. If you wish to create a new project, be sure to add the six files in the BirdBrainJava folder to the new project.
Greenfoot is a version of Java that includes visual tools. Its goal is to make it easy for beginners to incorporate graphics into their programs.
This module contains information about using Greenfoot with Finch 2. If you are using any other development environment for Java, please use the the Download Software section instead.
Use this blank project to create your own Greenfoot project with the Finch.
You can use all of the Finch methods described in the lessons and the library document. Use getFinch() to get the Finch object, and then use any Finch method. For example, use getFinch().getDistance() to find the distance from the Finch distance sensor to the closest object.