File tree Expand file tree Collapse file tree 2 files changed +11
-10
lines changed Expand file tree Collapse file tree 2 files changed +11
-10
lines changed Original file line number Diff line number Diff line change @@ -3,6 +3,7 @@ package main
33import (
44 "fmt"
55 "io/ioutil"
6+
67 mmd "simonwaldherr.de/go/micromarkdownGo"
78)
89
Original file line number Diff line number Diff line change 11package main
22
33import (
4- "machine"
5- "time"
4+ "machine"
5+ "time"
66)
77
88func main () {
9- led := machine .Pin (25 ) // Use Pin 19 on Pico W
10- led .Configure (machine.PinConfig {Mode : machine .PinOutput })
9+ led := machine .Pin (25 ) // Use Pin 19 on Pico W
10+ led .Configure (machine.PinConfig {Mode : machine .PinOutput })
1111
12- for {
13- led .High ()
14- time .Sleep (time .Millisecond * 500 )
15- led .Low ()
16- time .Sleep (time .Millisecond * 500 )
17- }
12+ for {
13+ led .High ()
14+ time .Sleep (time .Millisecond * 500 )
15+ led .Low ()
16+ time .Sleep (time .Millisecond * 500 )
17+ }
1818}
You can’t perform that action at this time.
0 commit comments