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
3
3
import (
4
4
"fmt"
5
5
"io/ioutil"
6
+
6
7
mmd "simonwaldherr.de/go/micromarkdownGo"
7
8
)
8
9
Original file line number Diff line number Diff line change 1
1
package main
2
2
3
3
import (
4
- "machine"
5
- "time"
4
+ "machine"
5
+ "time"
6
6
)
7
7
8
8
func 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 })
11
11
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
+ }
18
18
}
You can’t perform that action at this time.
0 commit comments