This entry level kit contains the basics you'll need to get started in the world of Arduino programming & electronics.
The MakerBox has an Arduino board and is programmed using the Arduino IDE. Arduino refers to an open-source electronics platform or board and the software used to program it. Arduino is designed to make electronics and programming more accessible to students, artists, designers, hobbyists and ayone interested in creating interactive objects or environments. You will need to install Arduino on your computer and then install this library in Arduino to program the MakerBox.
The Arduino IDE can be found on the official Arduino website at https://www.arduino.cc/en/Main/Software
Download the version suitable for your computer and follow the prompts to install the software package.
Alternativly, if you are using Windows you can install Arduino through the Microsoft Store or Company Portal if it has been added by your company IT department.
To install this library in Arduino you will use the Arduino Library Manager. It is located on the left hand side of the IDE. It is the third button from the top. Open the library manager and search for MakerBox. Click Install and when prompted make sure you install all dependancies. This library uses a few other open-source libraries that must be installed for all examples to work. If you do not install these additional libraries now you will see an error message when you try to compile examples that need them. You can use the library manager to search for the missing libraries and install them that way if you choose.
Opening the Arduino IDE for the first time, you will be presented with the following screen.
This is where you will write or paste in the code for your program.
Now that you have prepared your code, it's time to upload it onto the board.
You'll need to select the entry in the Tools > Board menu that corresponds to your Arduino board. For the MakerBox, you will select Arduino Uno.
Select the serial device of the board from the Tools | Serial Port menu. This is likely to be COM3 or higher (COM1 and COM2 are usually reserved for hardware serial ports). To find out, you can disconnect your board and re-open the menu; the entry that disappears should be the Arduino Uno board. Reconnect the board and select that serial port.
Now, simply click the "Upload" button in the environment. Wait a few seconds - you should see the RX and TX LEDs on the board flashing. If the upload is successful, the message "Done uploading." will appear in the status bar.
The example programs in this kit are free of errors, however, if you modify them or write your own code you may find an error when uploading your code. The software will show a message indicating the type of error and the location in which it appears in the code.
This library includes examples on how to use each of the components included in the kit. To open the example files go to the menu and choose "File>Examples>SpaceTrek MakerBox" and then you will see a list of all of the example files.
The L## examples are lessons and are complete and will compile without issue. The P## files are projects and are missing code because they are intended to show you have learned the skills taught in the lessons. All of the examples have detailed comments that will tell you how to use the components and what each line of code is doing. Make sure you read all of the comments to fully understand how things work and what you need to do to make them work with the components in the kit.
Now that you have the Arduino IDE setup and ready to use you can begin working through our beginner projects.
| Lesson | Outcome |
|---|---|
| Blink | This basic program will introduce the beginner Arduino user to simple code & circuits by turning on & off an LED. |
| Hello Arduino | An Arduino twist on the classic Hello World program. You will learn how to use the Serial port. |
| Touch Sound | Another basic program that will show you using the touch sensor to turn a buzzer on and off. |






























