src/ble/ble_scanner.py [9:20]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
'''

__version__ = "0.0.1"
__status__ = "Development"
__copyright__ = "Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved."
__author__ = "Dean Colcott <https://www.linkedin.com/in/deancolcott/>"

import logging
from bluepy.btle import Scanner, DefaultDelegate

# Config the logger.
log = logging.getLogger(__name__)
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



src/ble/ble_uart_peripheral.py [5:21]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
'''

__version__ = "0.0.1"
__status__ = "Development"
__copyright__ = "Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved."
__author__ = "Dean Colcott <https://www.linkedin.com/in/deancolcott/>"

# import the necessary parts of the bluepy library
import json
import logging
import time
import bluepy.btle as btle
from queue import Queue
from threading import Thread

# Config the logger.
log = logging.getLogger(__name__)
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



