mirror of
https://github.com/kidoman/embd
synced 2024-11-10 19:48:53 +01:00
c35deeb17c
this ensures cleaner abstractions/code and will ensure that the produced binary is as small as possible. a convenience package is provided to easily load all hosts easily: "github.com/kidoman/embd/host/all"
23 lines
263 B
Go
23 lines
263 B
Go
// +build ignore
|
|
|
|
package main
|
|
|
|
import (
|
|
"flag"
|
|
"fmt"
|
|
|
|
"github.com/kidoman/embd"
|
|
|
|
_ "github.com/kidoman/embd/host/all"
|
|
)
|
|
|
|
func main() {
|
|
flag.Parse()
|
|
|
|
embd.InitGPIO()
|
|
defer embd.CloseGPIO()
|
|
|
|
val, _ := embd.AnalogRead(0)
|
|
fmt.Printf("Reading: %v\n", val)
|
|
}
|