File tree Expand file tree Collapse file tree 9 files changed +48
-9
lines changed Expand file tree Collapse file tree 9 files changed +48
-9
lines changed Original file line number Diff line number Diff line change 3
3
# SPDX-License-Identifier: GPL-3.0-or-later
4
4
5
5
"""
6
- `Adafruit_TinyLoRa `
6
+ `adafruit_tinylora `
7
7
====================================================
8
8
CircuitPython LoRaWAN implementation for use with
9
9
The Things Network.
Original file line number Diff line number Diff line change 4
4
# SPDX-License-Identifier: MIT
5
5
6
6
"""
7
- `adafruit_tinylora_encryption.py `
7
+ `adafruit_tinylora_encryption`
8
8
======================================================
9
9
Required tinyLoRA Encryption Methods for AES and
10
10
Message Integrity checks.
Original file line number Diff line number Diff line change 3
3
# SPDX-License-Identifier: MIT
4
4
5
5
"""
6
- `ttn_as.py `
6
+ `ttn_as`
7
7
======================================================
8
8
AS920 The Things Network Frequency Plans
9
9
* Author(s): Brent Rubell
Original file line number Diff line number Diff line change 3
3
# SPDX-License-Identifier: MIT
4
4
5
5
"""
6
- `ttn_au.py `
6
+ `ttn_au`
7
7
======================================================
8
8
The Things Network Frequency Plans - AU915
9
9
* Author(s): Brent Rubell
Original file line number Diff line number Diff line change 4
4
# SPDX-License-Identifier: MIT
5
5
6
6
"""
7
- `ttn_cn.py `
7
+ `ttn_cn`
8
8
======================================================
9
9
The Things Network Frequency Plans - CN470
10
10
* Author(s): IAMLIUBO
Original file line number Diff line number Diff line change 3
3
# SPDX-License-Identifier: MIT
4
4
5
5
"""
6
- `ttn_eu.py `
6
+ `ttn_eu`
7
7
======================================================
8
8
The Things Network Frequency Plans - EU863
9
9
* Author(s): Brent Rubell
Original file line number Diff line number Diff line change 3
3
# SPDX-License-Identifier: MIT
4
4
5
5
"""
6
- `ttn_usa.py `
6
+ `ttn_usa`
7
7
======================================================
8
8
The Things Network Frequency Plans - US902
9
9
* Author(s): Brent Rubell
Original file line number Diff line number Diff line change 4
4
.. If your library file(s) are nested in a directory (e.g. /adafruit_foo/foo.py)
5
5
.. use this format as the module name: "adafruit_foo.foo"
6
6
7
- TinyLoRa
8
- ========
9
7
.. automodule :: adafruit_tinylora
10
8
:members:
9
+ :member-order: bysource
10
+
11
+
12
+ .. automodule :: adafruit_tinylora.adafruit_tinylora
13
+ :members:
14
+
15
+ .. automodule :: adafruit_tinylora.adafruit_tinylora_encryption
16
+ :members:
17
+
18
+ .. automodule :: adafruit_tinylora.ttn_as
19
+ :members:
20
+
21
+ .. automodule :: adafruit_tinylora.ttn_au
22
+ :members:
23
+
24
+ .. automodule :: adafruit_tinylora.ttn_cn
25
+ :members:
26
+
27
+ .. automodule :: adafruit_tinylora.ttn_eu
28
+ :members:
29
+
30
+ .. automodule :: adafruit_tinylora.ttn_usa
31
+ :members:
Original file line number Diff line number Diff line change @@ -6,3 +6,21 @@ Ensure your device works with this simple test.
6
6
.. literalinclude :: ../examples/tinylora_simpletest.py
7
7
:caption: examples/tinylora_simpletest.py
8
8
:linenos:
9
+
10
+ Using TinyLora with a Sensor
11
+ ----------------------------
12
+
13
+ Using TinyLoRa with a Si7021 Sensor
14
+
15
+ .. literalinclude :: ../examples/tinylora_simpletest_si7021.py
16
+ :caption: examples/tinylora_simpletest_si7021.py
17
+ :linenos:
18
+
19
+ Using a single Channel
20
+ ----------------------
21
+
22
+ Ensure your device works with this simple test.
23
+
24
+ .. literalinclude :: ../examples/tinylora_simpletest_single_channel.py
25
+ :caption: examples/tinylora_simpletest_single_channel.py
26
+ :linenos:
You can’t perform that action at this time.
0 commit comments