mirror of
https://github.com/kidoman/embd
synced 2025-07-03 03:47:33 +02:00
samples: changes to led
- blink every 250 msec - use Println instead of Printf with \n
This commit is contained in:
parent
e97394e7c2
commit
e73b70b296
1 changed files with 2 additions and 2 deletions
|
@ -39,11 +39,11 @@ func main() {
|
|||
|
||||
for {
|
||||
select {
|
||||
case <-time.After(500 * time.Millisecond):
|
||||
case <-time.After(250 * time.Millisecond):
|
||||
if err := led.Toggle(); err != nil {
|
||||
panic(err)
|
||||
}
|
||||
fmt.Printf("Toggled\n")
|
||||
fmt.Println("Toggled")
|
||||
case <-quit:
|
||||
return
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue