We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 10dce05 commit b01005fCopy full SHA for b01005f
1 file changed
CircuitPython_Logger/ble_handler.py
@@ -1,5 +1,5 @@
1
"""
2
-UART based message handler for CircuitPython logging.
+BLE based message handler for CircuitPython logging.
3
4
Adafruit invests time and resources providing this open source code.
5
Please support Adafruit and open source hardware by purchasing
@@ -15,19 +15,6 @@
15
16
#pylint:disable=missing-super-argument
17
18
-# Example:
19
-#
20
-# import board
21
-# import busio
22
-# from uart_handler import UartHandler
23
-# import adafruit_logging as logging
24
25
-# uart = busio.UART(board.TX, board.RX, baudrate=115200)
26
-# logger = logging.getLogger('uart')
27
-# logger.addHandler(UartHandler(uart))
28
-# logger.level = logging.INFO
29
-# logger.info('testing')
30
-
31
from adafruit_logging import LoggingHandler
32
from adafruit_ble.uart import UARTServer
33
0 commit comments