Skip to content

Latest commit

 

History

History
51 lines (35 loc) · 1.89 KB

HOWTO.md

File metadata and controls

51 lines (35 loc) · 1.89 KB

How To TaMatisse

Hardware and software requirements

Step by step guide to building and uploading the software

1. Start your editor (VSCode/Atom) and launch the PlatformIO pluign 1

2. Open your project in PlatformIO 2 3

3. Install the "Atmel AVR" platform 4

4. Build the project 5 6

5. Upload to the Arduino (Atmel AVR) 7

5.1. If uploading doesn't work, change the upload target port

PlatformIO automatically tries to detect which USB serial port to upload to. Sometimes this doesn't work, therefore we have to specify the port in the platformio.ini file. If you're using OSX it may also be your laptop is missing the right drivers for the CH34x USB to Serial chip in which case you won't see the the 'usbserial' device listed at all - see below.

Find the correct port: 8

Set new port in platformio.ini: 9

5.2. Install the CH34x USB to Serial Drivers:

Taken from this guide

brew tap mengbo/ch340g-ch34g-ch34x-mac-os-x-driver https://github.com/mengbo/ch340g-ch34g-ch34x-mac-os-x-driver
brew cask install wch-ch34x-usb-serial-driver

After that you'll need to restart and go back to point 5 above.

5.3. Successful upload: 10