mirror of
https://github.com/kidoman/embd
synced 2025-01-22 03:17:18 +01:00
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:
parent
ad9dea5616
commit
946aa2694f
1
samples/.gitignore
vendored
1
samples/.gitignore
vendored
@ -3,6 +3,7 @@ analogshort
|
||||
bh1750fvi
|
||||
bmp085
|
||||
bmp180
|
||||
fullblinker
|
||||
gpio
|
||||
gpiodetect
|
||||
gpiodirect
|
||||
|
50
samples/fullblinker.go
Normal file
50
samples/fullblinker.go
Normal 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
|
||||
}
|
||||
}
|
||||
}
|
Loading…
x
Reference in New Issue
Block a user