top of page
fondo ej-15.png

We recommend doing the first exercises before installing the games

Install programming software

15 min 

STEP 1

Press the button to go to the Arduino page. Follow the download instructions depending on your operating system (Windows, Mac or Linux).

IMPORTANT: download versionArduino IDE 1.8.19

arduino logo vale-02.png

STEP 2

Install the Driver for the computer to recognize the Arduino.

STEP 3

Open Arduino

Double clicking on the program icon.

 

adjust windows

To have a better visualization we are going to place the windows 60% / 40% as shown in the image.

pc-01.png

STEP 4

Install las bookstores

Libraries are a collection of code that makes it easy to connect to a sensor, display, module, etc. To use the led matrix that our PIXO kit has, we use the Adafruit libraries. To use these libraries, we have to install them. (See online guide or book page 22)

Once installed in our Arduino IDE, we can include them in our program with the sentence#include

​

Libraries: 

Adafruit_GFX

Adafruit_NeoMatrix

Adafruit_NeoPixel

STEP 5

Download the game file, unzip it and open it. 

​

 

​

Captura de Pantalla 2023-03-17 a la(s) 17.08.45.png

STEP 6

Connect your PIXO to the computer using the USB cable

The USB type C end goes in the port. The USB of the computer.

Captura de Pantalla 2022-05-19 a la(s) 16.57.39.png
Captura de Pantalla 2022-05-19 a la(s) 16.57.59.png

STEP 7

Tell your Arduino which port it is connected to.

Tools/Port/*select_port*

 

You have to mention dev.Arduino Uno, dec/cu.usbserial or COM. If many appear, try until it lets us upload.

Captura de Pantalla 2022-12-01 a la(s) 15.59.25.png

STEP 8

I defined the chosen digital PIN.

 

#definePIN --> This PIN is the one we use to connect the LED Matrix to the Arduino.

​

#defineB1--> PIN chosen

#defineB2--> PIN chosen

#defineB3--> PIN chosen

#defineB4--> PIN chosen

​

Captura de Pantalla 2023-03-17 a la(s) 17.09.01.png

STEP 9

Click on the upload button

And ready!

​

All these things and more you will be able to do with your PIXO!

 

​

bottom of page