From 02ec8cc85eee4b12bf71a7aa1c1a39943e764749 Mon Sep 17 00:00:00 2001 From: Yuval Adam <_@yuv.al> Date: Thu, 16 Dec 2021 21:24:37 +0200 Subject: Initial files --- README.md | 33 +++++++++++++++++++++++++++++++++ 1 file changed, 33 insertions(+) create mode 100644 README.md (limited to 'README.md') diff --git a/README.md b/README.md new file mode 100644 index 0000000..a50c40b --- /dev/null +++ b/README.md @@ -0,0 +1,33 @@ +# Wio Terminal OS + +## Prerequisites + +Install [`arduino-cli`](https://github.com/arduino/arduino-cli). + +## Setup + +Update the local indexes: + +```bash +$ arduino-cli core update-index +``` + +Connect the Wio Terminal and ensure it shows up: + +```bash +$ arduino-cli board list +Port Protocol Type Board Name FQBN Core +/dev/ttyACM0 serial Serial Port (USB) Seeeduino Wio Terminal Seeeduino:samd:seeed_wio_terminal Seeeduino:samd +``` + +Compile the sketch: + +```bash +$ arduino-cli compile --fqbn Seeeduino:samd:seeed_wio_terminal HelloWorld +``` + +Upload it: + +```bash +$ arduino-cli upload -p /dev/ttyACM0 --fqbn Seeeduino:samd:seeed_wio_terminal HelloWorld +``` -- cgit v1.3.1