Skip to content

Commit 4160825

Browse files
authored
Merge pull request #11 from paulober/develop
Bindings for VSCode v1.71.0
2 parents 9b25cb4 + 35923a9 commit 4160825

File tree

9 files changed

+16
-0
lines changed

9 files changed

+16
-0
lines changed

README.md

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -22,6 +22,18 @@ To find out what's new, take a look at the [changelog](CHANGELOG.md).
2222
- For setup:
2323

2424
Have the onboard LED flashing in under 5 minutes by following the [Quick Start guide](http://pico-go.net/docs/start/quick/) over on the [Pico-Go web site](http://pico-go.net).
25+
26+
Note that [accessing the onboard LED is slightly different for the Pico W compared with the Pico](https://picockpit.com/raspberry-pi/everything-about-the-raspberry-pi-pico-w/#Blink_onboard_LED). So, you can use the following script in place of `flash.py`:
27+
```python
28+
from machine import Pin
29+
from time import sleep
30+
31+
pin = Pin("LED", Pin.OUT)
32+
33+
while True:
34+
pin.toggle()
35+
sleep(1)
36+
```
2537

2638
- For code:
2739
[Raspberry Pi Pico W Guide Page 15 Chapter 3.4](https://datasheets.raspberrypi.com/picow/connecting-to-the-internet-with-pico-w.pdf)
82.4 KB
Binary file not shown.
Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
{"code":"1.71.0","electron":"19.0.12","modules":106,"serialport":"9.2.8","platform":"darwin","arch":"x64"}
79.5 KB
Binary file not shown.
Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
{"code":"1.71.0","electron":"19.0.12","modules":106,"serialport":"9.2.8","platform":"linux","arch":"arm64"}
79.5 KB
Binary file not shown.
Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
{"code":"1.71.0","electron":"19.0.12","modules":106,"serialport":"9.2.8","platform":"linux","arch":"x64"}
730 KB
Binary file not shown.
Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
{"code":"1.71.0","electron":"19.0.12","modules":106,"serialport":"9.2.8","platform":"win32","arch":"x64"}

0 commit comments

Comments
 (0)