mirror of
https://github.com/kidoman/embd
synced 2024-10-31 23:38:44 +01:00
21 lines
384 B
Go
21 lines
384 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" // This loads the RPi driver
|
|
)
|
|
|
|
func main() {
|
|
for {
|
|
embd.LEDToggle("LED0")
|
|
time.Sleep(250 * time.Millisecond)
|
|
}
|
|
}
|