🚀 How to Get Started

To start using the Waliduino, you only need three things:

  1. The Waliduino board

  2. The USB cable (included in the box)

  3. The Arduino IDE (a free program you install on your computer to write and upload code)

Once you have these, you’re ready to connect the board and begin your first project. Don’t worry—we’ll walk you through everything!


đź’» Installing the Arduino IDE (Windows)

To program your Waliduino board, you need to install the Arduino IDE—a software that lets you write code and send it to the board.

Here is a simple step-by-step guide:


âś… Step 1: Go to the official website

Open your browser and go to:
👉 https://www.arduino.cc/en/software


âś… Step 2: Download for Windows

Choose your suitable package for your operating system. Below is an example for Windows 64bits
You will see a button like this:
📥 “Windows Win 10 and newer, 64bits”

Arduino Download


âś… Step 3: Allow the download

When your browser asks if you want to keep the file, click “Yes” or “Keep”.

👉 You can either:

Both options will start the download of the installer.

Allow Download

After you click “Just Download”, you may see a pop-up asking if you want to join the Arduino newsletter by entering your email.

👉 You can either:

Your download will then begin automatically. If your browser asks for permission, click “Keep” or “Yes” to allow the download. Arduino Newsletter


âś… Step 4: Start the installer

Double-click the downloaded file (something like arduino-1.x.x-windows.exe) to begin installation. Start the Installer


âś… Step 5: Agree and Install

  1. Click “I Agree” to accept the license.
    License Agreement
  2. Keep all default options selected.

  3. Click “Next”, then “Install”.
    Arduino Setup

âś… Step 6: Wait for the installation

The installer will copy all needed files and drivers. This may take 1–2 minutes.


âś… Step 7: Finish the Installation

After the setup is complete, you’ll see the “Completing Arduino IDE Setup” screen.

Complete Setup

🎉 You’re now ready to start your first project with Waliduino!

🖊️ Exploring the Arduino IDE Editor

This is what the Arduino IDE looks like when you open it. The editor is where you write the code (called sketches) that tells your Waliduino what to do.

Let’s look at the most important parts:


📝 The Code Area

In the middle, you see two basic functions:


đź§© Board Manager (Left Sidebar)

On the left side, there is a section called Boards Manager. This is where you install the right board package so the Arduino IDE knows how to talk to your Waliduino. Arduino Board Manager

👉 Important: Before you upload code, make sure you install the Arduino AVR Boards package. This supports the Arduino Nano, which is the brain of the Waliduino.

To install:

  1. Search for “Arduino AVR Boards”

  2. Click Install (you’ll see “Installed” once it’s done)

Select Board and Port

Make sure to select the “Arduino nano” as Board and to select the correct COM Port where the Arduino nano board is attached via USB to your PC. Select Board and Port Select Board and Port Dialog

Once this is set up, you’re ready to choose the board and port, write your first sketch, and upload it to the Waliduino!

🔌 Installing the USB Driver for Waliduino

To connect your Waliduino board to your computer and upload code, you may need to install a USB driver. This driver helps your PC recognize the board through the USB cable.

👉 After downloading, follow the installer instructions and restart your computer if needed.
Once installed, your computer will recognize the Waliduino board when connected, and the COM port will appear in the Arduino IDE.

Go to Tools > Board and select Arduino Nano.

Then go to Tools > Port and choose the port where your Waliduino is connected (usually something like COM3, COM4, etc.).

👉 Good to know