KOSSCON2016: Go IoT programming
Goal Learn how to make a program in Go which display RaspberryPi’s IP to an OLED display on boot. You need: Linux host RaspberryPi board (and USB-wifi module) 2 LEDs I2C OLED module Setup Go development environment Install Go compiler Download Go Setup path to GOROOT and GOPATH export GOROOT=/usr/local/go export GOPATH=$HOME/go Add following to your .bashrc export PATH=$GOROOT/bin:$PATH export PATH=$GOPATH/bin:$PATH export CDPATH=.:$GOPATH/src/github.com/ Install Atom editor Install Atom editor Install atom packages go-plus: ...