1
0
mirror of https://github.com/kidoman/embd synced 2024-06-03 09:38:06 +02:00
embd/samples/ledshort.go
2014-03-23 06:25:32 +05:30

19 lines
196 B
Go

// +build ignore
package main
import (
"time"
"github.com/kidoman/embd"
)
func main() {
embd.InitLED()
defer embd.CloseLED()
embd.LEDOn(3)
time.Sleep(1 * time.Second)
embd.LEDOff(3)
}