We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 5eba1d5 commit ce4589dCopy full SHA for ce4589d
examples/bluefruitconnect_uart.py
@@ -8,7 +8,7 @@
8
from adafruit_ble.advertising.standard import ProvideServicesAdvertisement
9
from adafruit_ble.services.nordic import UARTService
10
11
-SEND_RATE = 10 # how often in seconds to send text
+SEND_RATE = 10 # how often in seconds to send text
12
13
ble = BLERadio()
14
uart_server = UARTService()
@@ -33,7 +33,7 @@
33
if uart_server.in_waiting:
34
raw_bytes = uart_server.read(uart_server.in_waiting)
35
text = raw_bytes.decode().strip()
36
- #print("raw bytes =", raw_bytes)
+ # print("raw bytes =", raw_bytes)
37
print("RX:", text)
38
# OUTGOING (TX) periodically send text
39
if time.monotonic() - last_send > SEND_RATE:
0 commit comments