File tree Expand file tree Collapse file tree 10 files changed +18
-26
lines changed Expand file tree Collapse file tree 10 files changed +18
-26
lines changed Original file line number Diff line number Diff line change 1
- # SPDX-FileCopyrightText: 2021 ladyada for Adafruit Industries
1
+ # SPDX-FileCopyrightText: 2020 Jerry Needell for Adafruit Industries
2
2
# SPDX-License-Identifier: MIT
3
3
4
4
# Example to display raw packets including header
5
- # Author: Jerry Needell
5
+
6
6
#
7
7
import board
8
8
import busio
Original file line number Diff line number Diff line change 1
- # SPDX-FileCopyrightText: 2021 ladyada for Adafruit Industries
1
+ # SPDX-FileCopyrightText: 2020 Jerry Needell for Adafruit Industries
2
2
# SPDX-License-Identifier: MIT
3
3
4
4
# Example to send a packet periodically between addressed nodes
5
- # Author: Jerry Needell
6
- #
5
+
7
6
import time
8
7
import board
9
8
import busio
Original file line number Diff line number Diff line change 1
- # SPDX-FileCopyrightText: 2021 ladyada for Adafruit Industries
1
+ # SPDX-FileCopyrightText: 2020 Jerry Needell for Adafruit Industries
2
2
# SPDX-License-Identifier: MIT
3
3
4
4
# Example to send a packet periodically between addressed nodes with ACK
5
- # Author: Jerry Needell
6
- #
5
+
7
6
import time
8
7
import board
9
8
import busio
Original file line number Diff line number Diff line change 1
- # SPDX-FileCopyrightText: 2021 ladyada for Adafruit Industries
1
+ # SPDX-FileCopyrightText: 2020 Jerry Needell for Adafruit Industries
2
2
# SPDX-License-Identifier: MIT
3
3
4
4
# Example to send a packet periodically between addressed nodes
5
- # Author: Jerry Needell
6
- #
5
+
7
6
import board
8
7
import busio
9
8
import digitalio
Original file line number Diff line number Diff line change 1
- # SPDX-FileCopyrightText: 2021 ladyada for Adafruit Industries
1
+ # SPDX-FileCopyrightText: 2020 Jerry Needell for Adafruit Industries
2
2
# SPDX-License-Identifier: MIT
3
3
4
4
# Example to send a packet periodically between addressed nodes
5
- # Author: Jerry Needell
6
- #
5
+
7
6
import time
8
7
import board
9
8
import busio
Original file line number Diff line number Diff line change 1
- # SPDX-FileCopyrightText: 2021 ladyada for Adafruit Industries
1
+ # SPDX-FileCopyrightText: 2020 Jerry Needell for Adafruit Industries
2
2
# SPDX-License-Identifier: MIT
3
3
4
4
# Example to receive addressed packed with ACK and send a response
5
- # Author: Jerry Needell
6
- #
5
+
7
6
import time
8
7
import board
9
8
import busio
Original file line number Diff line number Diff line change 1
- # SPDX-FileCopyrightText: 2021 ladyada for Adafruit Industries
1
+ # SPDX-FileCopyrightText: 2020 Tony DiCola, Jerry Needell for Adafruit Industries
2
2
# SPDX-License-Identifier: MIT
3
3
4
4
# Example using Interrupts to send a message and then wait indefinitely for messages
5
5
# to be received. Interrupts are used only for receive. sending is done with polling.
6
6
# This example is for systems that support interrupts like the Raspberry Pi with "blinka"
7
7
# CircuitPython does not support interrupts so it will not work on Circutpython boards
8
- # Author: Tony DiCola, Jerry Needell
9
8
import time
10
9
import board
11
10
import busio
Original file line number Diff line number Diff line change 1
- # SPDX-FileCopyrightText: 2021 ladyada for Adafruit Industries
1
+ # SPDX-FileCopyrightText: 2018 Tony DiCola for Adafruit Industries
2
2
# SPDX-License-Identifier: MIT
3
3
4
4
# Simple example to send a message and then wait indefinitely for messages
5
5
# to be received. This uses the default RadioHead compatible GFSK_Rb250_Fd250
6
6
# modulation and packet format for the radio.
7
- # Author: Tony DiCola
7
+
8
8
import board
9
9
import busio
10
10
import digitalio
Original file line number Diff line number Diff line change 1
- # SPDX-FileCopyrightText: 2021 ladyada for Adafruit Industries
1
+ # SPDX-FileCopyrightText: 2018 Tony DiCola for Adafruit Industries
2
2
# SPDX-License-Identifier: MIT
3
3
4
4
# Simple example to send a message and then wait indefinitely for messages
5
5
# to be received. This uses the default RadioHead compatible GFSK_Rb250_Fd250
6
6
# modulation and packet format for the radio.
7
- # Author: Tony DiCola
8
7
import board
9
8
import busio
10
9
import digitalio
Original file line number Diff line number Diff line change 1
- # SPDX-FileCopyrightText: 2021 ladyada for Adafruit Industries
1
+ # SPDX-FileCopyrightText: 2020 Jerry Needell for Adafruit Industries
2
2
# SPDX-License-Identifier: MIT
3
3
4
4
# Example to send a packet periodically
5
- # Author: Jerry Needell
6
- #
5
+
7
6
import time
8
7
import board
9
8
import busio
You can’t perform that action at this time.
0 commit comments