Skip to content

Embedded Setup

Dylan Brose edited this page Feb 11, 2025 · 12 revisions

Setting up your Environment!

By following this guide, you should be able to have all of the necessary software required for working on the ChessBot Embedded Software!

Note

There may be differences in the setup process for Windows, Linux, and Mac. Overall, both processes will be very similar.

Software Required

  • Git
  • Text Editor (VSCode)
  • Platform IO (VSCode Extension)
  • Python

Software Installation

Git

Git is the software that allows users to collaborate with their code! Having this allows you to pull the latest version of the ChessBots Repositories onto your computer. If you already have Git installed, you can bypass this step. If you aren't sure, follow along. The simplest way to ensure Git is set up properly is to use a client like GitHub Desktop. This is how we will install moving forward.

  1. Create an account at Github.com

Tip

If you already have an account, you can use your existing one

  1. Download GitHub Desktop for your system (Download Here!)
  2. Open the installer and proceed with the install process.
  3. When prompted, log in with your GitHub account.
  4. Choose to allow GitHub to configure Git. Do not configure manually.
  5. If you are on MacOS, when prompted, allow GitHub Desktop to be moved to the Application folder.
  6. Done!

VSCode

VSCode is simply a text editor with a lot of great features for software development, such as powerful extensions, syntax hinting, and Git integration. This is what we recommend for all ChessBots development for its ease of use. If you want to use another text editor, you may have a more difficult time moving forward since some of our extensions may not be compatible.

  1. Download VSCode (Download Here!)
  2. Proceed with install process

Note

If you are using MacOS, make sure to move to the application folder! It is not automatic for VSCode!

  1. Done!

Python

Python is required for PlatformIO, the software that allows us to upload code to a ChessBot's MicroController.

  1. Download Python Installer (Download Here!)
  2. Proceed with install process
  3. Done!

Environment Setup!

Now that all the software is installed, we can setup our environment for ChessBots! The way I describe is my personal preference, so you can make some changes along the way if preferred. For simplicity, feel free to follow my steps exactly.

Making a dev folder

Having a dev folder is important. This is a location where git can pull your projects to, and a central location for all of your development work. It is important to avoid syncing your code in a cloud location, such as OneDrive, iCloud, Google Drive, Box, or Dropbox. This can cause issues when working with git, and should be avoided! Instead, backup your files the old fashioned way with an external drive, or make sure your work is pushed to Git.

Windows

  1. Open Explorer
  2. In the Explorer Address Bar, navigate to C:/Users
  3. Choose your user folder
  4. Create a new folder called "dev" in your user folder.

Warning

Saving your dev folder to Desktop or Documents is risky. These locations may be synced by Onedrive on your system, which can cause damage!

MacOS

Setting up a dev folder on MacOS is simple!

  1. Open Finder
  2. Click "Go" at the top of the screen
  3. Click "Home"
  4. This will open your home folder, you should see things like "Downloads" and "Pictures" in here
  5. Create a new folder called "dev" in the home folder.

Warning

Saving your dev folder to Desktop or Documents is risky. These locations may be synced by iCloud on your system, which can cause damage!

Pulling The ChessBots Embedded Repo

Now, we need to pull the latest version of the ChessBots Embedded code to our computer. For this, we will use Github Desktop. If you prefer to use the command line, feel free, we will not be explaining that in this guide.

  1. Open GitHub Desktop
  2. In your web browser, navigate to ChessBots Embedded Repo (Click Here!)
  3. Click the green "Code" button
  4. Click "Open with GitHub Desktop" and accept the prompt.
  5. GitHub Desktop will open with the project.
  6. Type in the correct folder, for macOS, that looks like this:

Important

Make sure to include the /chessbots-embedded at the end. This will create a chessbots-embedded folder for the project.

  1. Done! You now have the ChessBots Embedded Source Code on your system!

Setting up VSCode

Our last step is to setup VSCode for the project.

  1. Open VSCode
  2. Select "Open Folder" and choose the chessbots-embedded folder located in "dev"
  3. VSCode will prompt you to install the recommended extensions, click yes.
  4. This should start installing the PlatformIO IDE extension

Important

If VSCode doesn't automatically install the PlatformIO IDE extension, then manually install it via the Extensions tab on the left in VSCode

  1. After PlatformIO is installed, it will start configuring the project. If it doesn't, restart VSCode and re-open the project.
  2. After everything finishes setting up with PlatformIO, completely close VSCode and re-open the project
  3. VSCode is now ready to use!

Building The Project

  1. In the root of the project files, there should be a file called env.h.schema. Duplicate this file and rename it env.h.
  2. In this env.h file, you have to fill in some information. The WiFi SSID and Password will be provided to you by the Project Manager.
  3. Connect to the network with your computer after filling in the details (The WiFi name is the SSID).
  4. Now get your local IP Address. On Windows, this can be done by typing ipconfig in a command prompt, and copying the IPv4 Address from the Wireless LAN adapter Wi-Fi: section

Note

If you have your own 2.4GHz network, you may provide your own details and connect to that network instead

  1. After filling in your ip address, you are ready to build the repo.
  2. You can do this by clicking the checkmark icon at the bottom of VSCode. Hovering over it will show the label PlatformIO: Build.
Clone this wiki locally