File tree Expand file tree Collapse file tree 6 files changed +13
-13
lines changed Expand file tree Collapse file tree 6 files changed +13
-13
lines changed Original file line number Diff line number Diff line change @@ -9,8 +9,8 @@ Introduction
9
9
:target: https://discord.gg/nBQh6qu
10
10
:alt: Discord
11
11
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
14
14
:alt: Build Status
15
15
16
16
This library provides simple byte and string based inter-device communication
@@ -36,7 +36,7 @@ Usage Example
36
36
37
37
All the functionality is exposed via the very simple ``Radio `` class::
38
38
39
- from adafruit_radio import Radio
39
+ from adafruit_ble_radio import Radio
40
40
41
41
42
42
# A radio instance listens/broadcasts on a numbered channel.
@@ -47,7 +47,7 @@ All the functionality is exposed via the very simple ``Radio`` class::
47
47
48
48
# Broadcast a simple string message.
49
49
r.send("Hello")
50
-
50
+
51
51
# Broadcast raw bytes.
52
52
r.send_bytes(b"Hello")
53
53
@@ -83,7 +83,7 @@ Contributing
83
83
============
84
84
85
85
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> `_
87
87
before contributing to help this project stay welcoming.
88
88
89
89
Documentation
Original file line number Diff line number Diff line change 20
20
# OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
21
21
# THE SOFTWARE.
22
22
"""
23
- `adafruit_radio `
23
+ `adafruit_ble_radio `
24
24
================================================================================
25
25
26
26
Simple byte and string based inter-device communication via BLE.
48
48
49
49
50
50
__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"
52
52
53
53
54
54
#: Maximum length of a message (in bytes).
Original file line number Diff line number Diff line change @@ -3,6 +3,6 @@ Simple test
3
3
4
4
Ensure your device works with this simple test.
5
5
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
8
8
:linenos:
Original file line number Diff line number Diff line change @@ -29,7 +29,7 @@ Table of Contents
29
29
.. toctree ::
30
30
:caption: Other Links
31
31
32
- Download <https://github.com/adafruit/adafruit_CircuitPython_radio /releases/latest >
32
+ Download <https://github.com/adafruit/adafruit_CircuitPython_BLE_Radio /releases/latest >
33
33
CircuitPython Reference Documentation <https://circuitpython.readthedocs.io >
34
34
CircuitPython Support Forum <https://forums.adafruit.com/viewforum.php?f=60 >
35
35
Discord Chat <https://adafru.it/discord >
Original file line number Diff line number Diff line change 5
5
"""
6
6
import digitalio
7
7
import board
8
- from adafruit_radio import Radio
8
+ from adafruit_ble_radio import Radio
9
9
10
10
11
11
slide_switch = digitalio .DigitalInOut (board .SLIDE_SWITCH )
Original file line number Diff line number Diff line change 25
25
long_description = long_description ,
26
26
long_description_content_type = "text/x-rst" ,
27
27
# The project's main homepage.
28
- url = "https://github.com/adafruit/Adafruit_CircuitPython_radio " ,
28
+ url = "https://github.com/adafruit/Adafruit_CircuitPython_BLE_Radio " ,
29
29
# Author details
30
30
author = "Adafruit Industries" ,
31
31
49
49
# simple. Or you can use find_packages().
50
50
# TODO: IF LIBRARY FILES ARE A PACKAGE FOLDER,
51
51
# CHANGE `py_modules=['...']` TO `packages=['...']`
52
- py_modules = ["adafruit_radio " ],
52
+ py_modules = ["adafruit_ble_radio " ],
53
53
)
You can’t perform that action at this time.
0 commit comments