Skip to content

Commit 00072bb

Browse files
committed
Rename to Adafruit CircuitPython BLE Radio
1 parent 5f9caf4 commit 00072bb

File tree

6 files changed

+13
-13
lines changed

6 files changed

+13
-13
lines changed

README.rst

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -9,8 +9,8 @@ Introduction
99
:target: https://discord.gg/nBQh6qu
1010
:alt: Discord
1111

12-
.. image:: https://travis-ci.com/adafruit/Adafruit_CircuitPython_radio.svg?branch=master
13-
:target: https://travis-ci.com/adafruit/Adafruit_CircuitPython_radio
12+
.. image:: https://travis-ci.com/adafruit/Adafruit_CircuitPython_BLE_Radio.svg?branch=master
13+
:target: https://travis-ci.com/adafruit/Adafruit_CircuitPython_BLE_Radio
1414
:alt: Build Status
1515

1616
This library provides simple byte and string based inter-device communication
@@ -36,7 +36,7 @@ Usage Example
3636

3737
All the functionality is exposed via the very simple ``Radio`` class::
3838

39-
from adafruit_radio import Radio
39+
from adafruit_ble_radio import Radio
4040

4141

4242
# A radio instance listens/broadcasts on a numbered channel.
@@ -47,7 +47,7 @@ All the functionality is exposed via the very simple ``Radio`` class::
4747

4848
# Broadcast a simple string message.
4949
r.send("Hello")
50-
50+
5151
# Broadcast raw bytes.
5252
r.send_bytes(b"Hello")
5353

@@ -83,7 +83,7 @@ Contributing
8383
============
8484

8585
Contributions are welcome! Please read our `Code of Conduct
86-
<https://github.com/adafruit/Adafruit_CircuitPython_radio/blob/master/CODE_OF_CONDUCT.md>`_
86+
<https://github.com/adafruit/Adafruit_CircuitPython_BLE_Radio/blob/master/CODE_OF_CONDUCT.md>`_
8787
before contributing to help this project stay welcoming.
8888

8989
Documentation

adafruit_radio.py renamed to adafruit_ble_radio.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@
2020
# OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
2121
# THE SOFTWARE.
2222
"""
23-
`adafruit_radio`
23+
`adafruit_ble_radio`
2424
================================================================================
2525
2626
Simple byte and string based inter-device communication via BLE.
@@ -48,7 +48,7 @@
4848

4949

5050
__version__ = "0.0.0-auto.0"
51-
__repo__ = "https://github.com/adafruit/Adafruit_CircuitPython_radio.git"
51+
__repo__ = "https://github.com/adafruit/Adafruit_CircuitPython_BLE_Radio.git"
5252

5353

5454
#: Maximum length of a message (in bytes).

docs/examples.rst

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,6 @@ Simple test
33

44
Ensure your device works with this simple test.
55

6-
.. literalinclude:: ../examples/radio_simpletest.py
7-
:caption: examples/radio_simpletest.py
6+
.. literalinclude:: ../examples/ble_radio_simpletest.py
7+
:caption: examples/ble_radio_simpletest.py
88
:linenos:

docs/index.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ Table of Contents
2929
.. toctree::
3030
:caption: Other Links
3131

32-
Download <https://github.com/adafruit/adafruit_CircuitPython_radio/releases/latest>
32+
Download <https://github.com/adafruit/adafruit_CircuitPython_BLE_Radio/releases/latest>
3333
CircuitPython Reference Documentation <https://circuitpython.readthedocs.io>
3434
CircuitPython Support Forum <https://forums.adafruit.com/viewforum.php?f=60>
3535
Discord Chat <https://adafru.it/discord>

examples/radio_simpletest.py renamed to examples/ble_radio_simpletest.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
"""
66
import digitalio
77
import board
8-
from adafruit_radio import Radio
8+
from adafruit_ble_radio import Radio
99

1010

1111
slide_switch = digitalio.DigitalInOut(board.SLIDE_SWITCH)

setup.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@
2525
long_description=long_description,
2626
long_description_content_type="text/x-rst",
2727
# The project's main homepage.
28-
url="https://github.com/adafruit/Adafruit_CircuitPython_radio",
28+
url="https://github.com/adafruit/Adafruit_CircuitPython_BLE_Radio",
2929
# Author details
3030
author="Adafruit Industries",
3131
author_email="[email protected]",
@@ -49,5 +49,5 @@
4949
# simple. Or you can use find_packages().
5050
# TODO: IF LIBRARY FILES ARE A PACKAGE FOLDER,
5151
# CHANGE `py_modules=['...']` TO `packages=['...']`
52-
py_modules=["adafruit_radio"],
52+
py_modules=["adafruit_ble_radio"],
5353
)

0 commit comments

Comments
 (0)