Skip to content

Commit ce4589d

Browse files
committed
black
1 parent 5eba1d5 commit ce4589d

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

examples/bluefruitconnect_uart.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
from adafruit_ble.advertising.standard import ProvideServicesAdvertisement
99
from adafruit_ble.services.nordic import UARTService
1010

11-
SEND_RATE = 10 # how often in seconds to send text
11+
SEND_RATE = 10 # how often in seconds to send text
1212

1313
ble = BLERadio()
1414
uart_server = UARTService()
@@ -33,7 +33,7 @@
3333
if uart_server.in_waiting:
3434
raw_bytes = uart_server.read(uart_server.in_waiting)
3535
text = raw_bytes.decode().strip()
36-
#print("raw bytes =", raw_bytes)
36+
# print("raw bytes =", raw_bytes)
3737
print("RX:", text)
3838
# OUTGOING (TX) periodically send text
3939
if time.monotonic() - last_send > SEND_RATE:

0 commit comments

Comments
 (0)