Skip to content

Commit 0a909d4

Browse files
committed
adv.pid, not adv.pin
1 parent d31a9c2 commit 0a909d4

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

examples/ble_adafruit_circuitplayground_bluefruit.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,7 @@
5757
# Adafruit Circuit Playground Bluefruit USB PID:
5858
# Arduino: 0x8045, CircuitPython: 0x8046, app supports either
5959
adv = AdafruitServerAdvertisement()
60-
adv.pin = 0x8046
60+
adv.pid = 0x8046
6161

6262
while True:
6363
# Advertise when not connected.

examples/ble_adafruit_clue.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -77,7 +77,7 @@
7777
# Adafruit CLUE USB PID:
7878
# Arduino: 0x8071, CircuitPython: 0x8072, app supports either
7979
adv = AdafruitServerAdvertisement()
80-
adv.pin = 0x8072
80+
adv.pid = 0x8072
8181

8282
while True:
8383
# Advertise when not connected.

examples/ble_adafruit_feather_bluefruit_sense.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -97,7 +97,7 @@
9797
# This board is not yet support on the app.
9898
# Arduino: 0x8087, CircuitPython: 0x8088
9999
adv = AdafruitServerAdvertisement()
100-
adv.pin = 0x8088
100+
adv.pid = 0x8088
101101

102102
while True:
103103
# Advertise when not connected.

0 commit comments

Comments
 (0)