Quickstart
Downloading and installing is outlined here: Download and install BrainBuilder Development Studio
In this guide, an example project “blinky LED” is built.
You can use any LED, but the example will make use of the on-board LED.

Add a Hardware item (left-click on the ‘Hardware’ folder).

Select the development board you are using. At the moment Arduino Mega and Arduino Uno are supported.

Give it a name, for example ‘myUno’.

Physically connect the board.

This will autoscan for a development board. Sometimes it can take a while to try a few ports before the board is found. (Only one connected board at the same time is supported)

Generating firmware
The most basic example: make the on-board LED blink.
Right-click on Logic, Add Logic, Select Block: Blinker. Give it a name, for example ‘blinky’, and specify the blink frequency, for example 500 milliseconds. Then go back to your Arduino board, and enter ‘blinky’ in the Source for LED field.
Click on Firmware in the menu, then Generate.
The first time you use BrainBuilder, a browser window will open to link your workstation.
Once the workstation is linked, the firmware is generated. Linking is a one-time thing, so the next times you generate firmware, it will be immediate.
After generating and flashing the firmware, it is working on the Arduino in no time.
Change the blink frequency, and generate again. That’s how quick and easy it is to change your firmware!
If you have a Arduino Display shield or a generic LCD Display, you can add that too in the same way.
Arduino Uno and Mega have an on-board LED that is already configured and available as ‘led1’. Other LEDs you can add yourself.
With analog and digital inputs, you can define which sensors or switches are connected to which pins.
Example: For using an analog temperature sensor on analog input pin 2, use an Analog Input block, name it ‘temp’ and specify the port as ‘2’.

Tip: by clicking on any of the field descriptions, help texts are displayed, as in this example by clicking on ‘Analog port’.
This automatically adds the variable temp. The list of variables on the right-hand side of the screen is updated with the new variable.
Example: A switch connected to Digital Output port ‘D12’

Rule blocks specify actions based on conditions. For example, to switch ‘led2’ on when ‘temp’ level over 23, and off if is below, add a rule like this:
if ( temp > 23 ) {
led2 = 1;
} else {
led2 = 0 ;
}

Input blocks implicitly make variables available with the name of that block. For example ‘Light’. But if it is easier to work with the inverse value, we can define a Global Variable with the name ‘LightInverted’ and type U16. Then we can add a Rule Block to set the variable ‘LightInverted’ to ‘1024 - Light’.
If you have a LCD connected to your Arduino, add it as a hardware item:

Next, add a ‘Screen’ under ‘Screen Definitions’. This will create a ‘Screen Item List’, to which you can add ‘Screen cells’.
A screen cell is the easiest way to display a text and a value together.
For example, to show the ADC value from the temperature sensor on the display, specify text ‘Temp.: ‘, and a value from a temperature sensor (temp).
The Arduino display has two rows of 16 characters. Numbering starts at 0. An easy way to get the lay-out correct is to use grid paper.

Click ‘Firmware.. Generate’ to generate the firmware image.

It’s convenient to create a folder to store your projects in. The folder is remembered for the next times you start BrainBuilder.
You can enter project information on the Project Info page. There’s room for a description and notes.
You can drag and drop blocks to reorder them, and organize them in folders, to logically group blocks together.