mirror of
https://github.com/kidoman/embd
synced 2025-07-03 11:57:38 +02: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
2 changed files with 51 additions and 0 deletions
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…
Add table
Add a link
Reference in a new issue