Skip to content

Commit f00389a

Browse files
committed
README updates
1 parent 8161823 commit f00389a

2 files changed

Lines changed: 8 additions & 11 deletions

File tree

README.md

Lines changed: 7 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -296,12 +296,13 @@ Some standalone Bluetooth examples (without all the common example build infrast
296296

297297
App|Description
298298
---|---
299-
[picow_ble_temp_sensor](pico_w/bt/standalone) | Reads from the on board temperature sensor and sends notifications via BLE.
300-
[picow_ble_temp_reader](pico_w/bt/standalone) | Connects to the above sensor and reads the temperature.
301-
[picow_ble_pointer](pico_w/bt/standalone/ble_pointer) | Bluetooth HID mouse using mpu6050 to detect angle and move cursor.
302-
[picow_ble_doorbell](pico_w/bt/standalone/doorbell) | Detects button press on transmitter Pico and illuminates LED on reciever Pico.
303-
[picow_ble_secure_temp_sensor](pico_w/bt/standalone/secure_temp_sensor) | Variant of picow_ble_temp_sensor which allows exploration of LE_secure configurations.
304-
[picow_ble_wifi_provisioner](pico_w/bt/standalone/wifi_provisioner) | Allows WiFi credentials to be provisioned over BLE, either using a mobile app or with the included python script.
299+
[ble_pointer](bluetooth/ble_pointer) | Bluetooth HID mouse using mpu6050 to detect angle and move cursor.
300+
[doorbell](bluetooth/doorbell) | Detects button press on transmitter Pico and illuminates LED on reciever Pico.
301+
[temp_server](bluetooth/temp_sensor) | Reads from the on board temperature sensor and sends notifications via BLE.
302+
[temp_client](bluetooth/temp_sensor) | Connects to the above temp_server and reads the temperature.
303+
[secure_temp_server](bluetooth/secure_temp_sensor) | Variant of temp_server which allows exploration of LE_secure configurations.
304+
[secure_temp_client](bluetooth/secure_temp_sensor) | Connects to the above secure_temp_server and reads the temperature.
305+
[wifi_provisioner](bluetooth/wifi_provisioner) | Allows WiFi credentials to be provisioned over BLE, either using a mobile app or with the included python script.
305306

306307
### PIO
307308

bluetooth/README.md

Lines changed: 1 addition & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -6,11 +6,7 @@ There's a standalone example in `pico-examples/pico_w/bt/standalone`.
66
## Debugging
77

88
To debug Bluetooth issues you can enable [btstack](https://github.com/bluekitchen/btstack) debug output which also enables packet logging.
9-
Define `WANT_HCI_DUMP=1` in your CMakeLists.txt file. Uncomment this line to enable debug in the btstack examples.
10-
11-
target_compile_definitions(picow_bt_example_common INTERFACE
12-
#WANT_HCI_DUMP=1 # This enables btstack debug
13-
)
9+
Define `WANT_HCI_DUMP=1` in your CMakeLists.txt file.
1410

1511
## Packet logging
1612

0 commit comments

Comments
 (0)