A repository to explore TinyGo features and have fun.
All the examples have been tested on an Arduino Nano IoT 33.
Install TinyGo
If you do not have an arduino or a compatible microcontroller; you can use to begin the TinyGo playground to begin.
Example | Description |
---|---|
Blink | The HelloWorld of the microcontroller. Blink a led. |
Serial | Write on a serial port and use serial reader in utils to read values. |
Thermometer | Read temperature and humidity from a DHT22 sensor and use serial reader in utils to read values. |
Tiny hen | Read temperature and humidity from a DHT22 sensor and sends it to a webserver through WiFi |
Flash your arduino-nano33 with the blink example:
$ make led
You should observe a LED blinking on the board.