samples: full blinker rpi example

this is a more complete version of the simple blinker. this cleans up
after itself
This commit is contained in:
Karan Misra 2014-04-11 10:51:29 +05:30
parent ad9dea5616
commit 946aa2694f
2 changed files with 51 additions and 0 deletions

1
samples/.gitignore vendored
View File

@ -3,6 +3,7 @@ analogshort
bh1750fvi
bmp085
bmp180
fullblinker
gpio
gpiodetect
gpiodirect

50
samples/fullblinker.go Normal file
View File

@ -0,0 +1,50 @@
// +build ignore
// LED blinker, works OOTB on a RPi.
package main
import (
"flag"
"fmt"
"os"
"os/signal"
"time"
"github.com/kidoman/embd"
_ "github.com/kidoman/embd/host/rpi"
)
func main() {
flag.Parse()
if err := embd.InitLED(); err != nil {
panic(err)
}
defer embd.CloseLED()
led, err := embd.NewLED(0)
if err != nil {
panic(err)
}
defer func() {
led.Off()
led.Close()
}()
quit := make(chan os.Signal, 1)
signal.Notify(quit, os.Interrupt, os.Kill)
defer signal.Stop(quit)
for {
select {
case <-time.After(250 * time.Millisecond):
if err := led.Toggle(); err != nil {
panic(err)
}
fmt.Printf("Toggled\n")
case <-quit:
return
}
}
}