Skip to content

Commit fd42955

Browse files
committed
Rename to BluefruitLE library.
1 parent ecee438 commit fd42955

29 files changed

+13
-14
lines changed
File renamed without changes.
File renamed without changes.
File renamed without changes.

examples/list_uarts.py

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -2,12 +2,12 @@
22
# Author: Tony DiCola
33
import time
44

5-
import Adafruit_BluetoothLE
6-
from Adafruit_BluetoothLE.services import UART
5+
import Adafruit_BluefruitLE
6+
from Adafruit_BluefruitLE.services import UART
77

88

99
# Get the BLE provider for the current platform.
10-
ble = Adafruit_BluetoothLE.get_provider()
10+
ble = Adafruit_BluefruitLE.get_provider()
1111

1212

1313
# Main function implements the program logic so it can run in a background
@@ -24,7 +24,7 @@ def main():
2424
try:
2525
# Start scanning with the bluetooth adapter.
2626
adapter.start_scan()
27-
print('Searching for UART device...')
27+
print('Searching for UART devices...')
2828
print('Press Ctrl-C to quit.')
2929
# Enter a loop and print out whenever a new UART device is found.
3030
known_uarts = set()

examples/low_level.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
import time
99
import uuid
1010

11-
import Adafruit_BluetoothLE
11+
import Adafruit_BluefruitLE
1212

1313

1414
# Enable debug output.
@@ -20,7 +20,7 @@
2020
RX_CHAR_UUID = uuid.UUID('6E400003-B5A3-F393-E0A9-E50E24DCCA9E')
2121

2222
# Get the BLE provider for the current platform.
23-
ble = Adafruit_BluetoothLE.get_provider()
23+
ble = Adafruit_BluefruitLE.get_provider()
2424

2525

2626
# Main function implements the program logic so it can run in a background

examples/uart_service.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,12 @@
11
# Example of interaction with a BLE UART device using a UART service
22
# implementation.
33
# Author: Tony DiCola
4-
import Adafruit_BluetoothLE
5-
from Adafruit_BluetoothLE.services import UART
4+
import Adafruit_BluefruitLE
5+
from Adafruit_BluefruitLE.services import UART
66

77

88
# Get the BLE provider for the current platform.
9-
ble = Adafruit_BluetoothLE.get_provider()
9+
ble = Adafruit_BluefruitLE.get_provider()
1010

1111

1212
# Main function implements the program logic so it can run in a background

setup.py

Lines changed: 4 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -2,12 +2,11 @@
22
use_setuptools()
33
from setuptools import setup, find_packages
44

5-
setup(name = 'Adafruit_BluetoothLE',
6-
version = '1.0.0',
5+
setup(name = 'Adafruit_BluefruitLE',
6+
version = '0.9.0',
77
author = 'Tony DiCola',
88
author_email = '[email protected]',
9-
description = 'Python library for interacting with Bluetooth low energy devices on Linux or OSX.',
9+
description = 'Python library for interacting with Bluefruit LE (Bluetooth low energy) devices on Linux or OSX.',
1010
license = 'MIT',
11-
url = 'https://github.com/adafruit/Adafruit_Python_BluetoothLE/',
12-
install_requires = ['futures'],
11+
url = 'https://github.com/adafruit/Adafruit_Python_BluefruitLE/',
1312
packages = find_packages())

0 commit comments

Comments
 (0)