Go


GoLang

Installation

Install Go

Install TinyGo

wget https://github.com/tinygo-org/tinygo/releases/download/v0.26.0/tinygo_0.26.0_amd64.deb
sudo dpkg -i tinygo_0.26.0_amd64.deb

First test

mkdir -p ~/goTest/01-Test
cd ~/goTest/01-Test
go mod init blinky

blink.go file :

package main

import (
    "machine"
    "time"
)

func main() {
    led := machine.LED
    led.Configure(machine.PinConfig{Mode: machine.PinOutput})

    for {
        led.Low()
        time.Sleep(time.Second / 2)
        led.High()
        time.Sleep(time.Second / 2)
    }
}

Using drivers

Try to compile the dev branch of tinyGo

sudo apt install cmake clang-13 llvm-13-dev lld-13 libclang-13-dev

Todo