Skip to content

Commit 625cbef

Browse files
committed
Remove debug prints from example
1 parent 581dc2f commit 625cbef

File tree

1 file changed

+0
-3
lines changed

1 file changed

+0
-3
lines changed

examples/ble_hid_periph.py

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -121,15 +121,12 @@
121121
hid = HIDService(HID_DESCRIPTOR)
122122
device_info = DeviceInfoService(software_revision=adafruit_ble.__version__,
123123
manufacturer="Adafruit Industries")
124-
print(device_info.manufacturer)
125124
advertisement = ProvideServicesAdvertisement(hid)
126125
advertisement.appearance = 961
127126
scan_response = Advertisement()
128127
scan_response.complete_name = "CircuitPython HID"
129128

130129
ble = adafruit_ble.BLERadio()
131-
print(advertisement)
132-
print(to_hex(bytes(advertisement)))
133130
if not ble.connected:
134131
print("advertising")
135132
ble.start_advertising(advertisement, scan_response)

0 commit comments

Comments
 (0)