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_controller.py [13:27]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
'''

__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/>"

# imports
import logging
import bluepy
import bluepy.btle as btle
from ble.ble_uart_peripheral import BleUartPeripheral

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



