mirror of
https://github.com/kidoman/embd
synced 2024-11-13 21:18:55 +01:00
ad9dea5616
does not cleanup up after itself, but is concise
21 lines
350 B
Go
21 lines
350 B
Go
// +build ignore
|
|
|
|
// Simple LED blinker, works OOTB on a RPi. However, it does not clean up
|
|
// after itself. So might leave the LED On. The RPi is not harmed though.
|
|
|
|
package main
|
|
|
|
import (
|
|
"time"
|
|
|
|
"github.com/kidoman/embd"
|
|
_ "github.com/kidoman/embd/host/rpi"
|
|
)
|
|
|
|
func main() {
|
|
for {
|
|
embd.LEDToggle(0)
|
|
time.Sleep(250 * time.Millisecond)
|
|
}
|
|
}
|