-
Notifications
You must be signed in to change notification settings - Fork 0
Embedded Setup
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.
- Git
- Text Editor (VSCode)
- Platform IO (VSCode Extension)
- Python
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.
- Create an account at Github.com
Tip
If you already have an account, you can use your existing one
- Download GitHub Desktop for your system (Download Here!)
- Open the installer and proceed with the install process.
- When prompted, log in with your GitHub account.
- Choose to allow GitHub to configure Git. Do not configure manually.
- If you are on MacOS, when prompted, allow GitHub Desktop to be moved to the Application folder.
- Done!
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.
- Download VSCode (Download Here!)
- Proceed with install process
Note
If you are using MacOS, make sure to move to the application folder! It is not automatic for VSCode!
- Done!
Python is required for PlatformIO, the software that allows us to upload code to a ChessBot's MicroController.
- Download Python Installer (Download Here!)
- Proceed with install process
- Done!
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.
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.
- Open Explorer
- In the Explorer Address Bar, navigate to
C:/Users
- Choose your user folder
- 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!
Setting up a dev folder on MacOS is simple!
- Open Finder
- Click "Go" at the top of the screen
- Click "Home"
- This will open your home folder, you should see things like "Downloads" and "Pictures" in here
- 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!
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.
- Open GitHub Desktop
- In your web browser, navigate to ChessBots Embedded Repo (Click Here!)
- Click the green "Code" button
- Click "Open with GitHub Desktop" and accept the prompt.
- GitHub Desktop will open with the project.
- 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.
- Done! You now have the ChessBots Embedded Source Code on your system!
Our last step is to setup VSCode for the project.
- Open VSCode
- Select "Open Folder" and choose the chessbots-embedded folder located in "dev"
- VSCode will prompt you to install the recommended extensions, click yes.
- 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
- After PlatformIO is installed, it will start configuring the project. If it doesn't, restart VSCode and re-open the project.
- After everything finishes setting up with PlatformIO, completely close VSCode and re-open the project
- VSCode is now ready to use!
- In the root of the project files, there should be a file called
env.h.schema
. Duplicate this file and rename itenv.h
. - 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. - Connect to the network with your computer after filling in the details (The WiFi name is the SSID).
- 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 theWireless 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
- After filling in your ip address, you are ready to build the repo.
- You can do this by clicking the checkmark icon at the bottom of VSCode. Hovering over it will show the label
PlatformIO: Build
.