Skip to content

Commit 546c8ca

Browse files
committed
update authors in examples
1 parent 4a34662 commit 546c8ca

10 files changed

+18
-26
lines changed

examples/rfm69_header.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
1-
# SPDX-FileCopyrightText: 2021 ladyada for Adafruit Industries
1+
# SPDX-FileCopyrightText: 2020 Jerry Needell for Adafruit Industries
22
# SPDX-License-Identifier: MIT
33

44
# Example to display raw packets including header
5-
# Author: Jerry Needell
5+
66
#
77
import board
88
import busio

examples/rfm69_node1.py

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,8 @@
1-
# SPDX-FileCopyrightText: 2021 ladyada for Adafruit Industries
1+
# SPDX-FileCopyrightText: 2020 Jerry Needell for Adafruit Industries
22
# SPDX-License-Identifier: MIT
33

44
# Example to send a packet periodically between addressed nodes
5-
# Author: Jerry Needell
6-
#
5+
76
import time
87
import board
98
import busio

examples/rfm69_node1_ack.py

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,8 @@
1-
# SPDX-FileCopyrightText: 2021 ladyada for Adafruit Industries
1+
# SPDX-FileCopyrightText: 2020 Jerry Needell for Adafruit Industries
22
# SPDX-License-Identifier: MIT
33

44
# Example to send a packet periodically between addressed nodes with ACK
5-
# Author: Jerry Needell
6-
#
5+
76
import time
87
import board
98
import busio

examples/rfm69_node1_bonnet.py

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,8 @@
1-
# SPDX-FileCopyrightText: 2021 ladyada for Adafruit Industries
1+
# SPDX-FileCopyrightText: 2020 Jerry Needell for Adafruit Industries
22
# SPDX-License-Identifier: MIT
33

44
# Example to send a packet periodically between addressed nodes
5-
# Author: Jerry Needell
6-
#
5+
76
import board
87
import busio
98
import digitalio

examples/rfm69_node2.py

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,8 @@
1-
# SPDX-FileCopyrightText: 2021 ladyada for Adafruit Industries
1+
# SPDX-FileCopyrightText: 2020 Jerry Needell for Adafruit Industries
22
# SPDX-License-Identifier: MIT
33

44
# Example to send a packet periodically between addressed nodes
5-
# Author: Jerry Needell
6-
#
5+
76
import time
87
import board
98
import busio

examples/rfm69_node2_ack.py

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,8 @@
1-
# SPDX-FileCopyrightText: 2021 ladyada for Adafruit Industries
1+
# SPDX-FileCopyrightText: 2020 Jerry Needell for Adafruit Industries
22
# SPDX-License-Identifier: MIT
33

44
# Example to receive addressed packed with ACK and send a response
5-
# Author: Jerry Needell
6-
#
5+
76
import time
87
import board
98
import busio

examples/rfm69_rpi_interrupt.py

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,10 @@
1-
# SPDX-FileCopyrightText: 2021 ladyada for Adafruit Industries
1+
# SPDX-FileCopyrightText: 2020 Tony DiCola, Jerry Needell for Adafruit Industries
22
# SPDX-License-Identifier: MIT
33

44
# Example using Interrupts to send a message and then wait indefinitely for messages
55
# to be received. Interrupts are used only for receive. sending is done with polling.
66
# This example is for systems that support interrupts like the Raspberry Pi with "blinka"
77
# CircuitPython does not support interrupts so it will not work on Circutpython boards
8-
# Author: Tony DiCola, Jerry Needell
98
import time
109
import board
1110
import busio

examples/rfm69_rpi_simpletest.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
1-
# SPDX-FileCopyrightText: 2021 ladyada for Adafruit Industries
1+
# SPDX-FileCopyrightText: 2018 Tony DiCola for Adafruit Industries
22
# SPDX-License-Identifier: MIT
33

44
# Simple example to send a message and then wait indefinitely for messages
55
# to be received. This uses the default RadioHead compatible GFSK_Rb250_Fd250
66
# modulation and packet format for the radio.
7-
# Author: Tony DiCola
7+
88
import board
99
import busio
1010
import digitalio

examples/rfm69_simpletest.py

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,9 @@
1-
# SPDX-FileCopyrightText: 2021 ladyada for Adafruit Industries
1+
# SPDX-FileCopyrightText: 2018 Tony DiCola for Adafruit Industries
22
# SPDX-License-Identifier: MIT
33

44
# Simple example to send a message and then wait indefinitely for messages
55
# to be received. This uses the default RadioHead compatible GFSK_Rb250_Fd250
66
# modulation and packet format for the radio.
7-
# Author: Tony DiCola
87
import board
98
import busio
109
import digitalio

examples/rfm69_transmit.py

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,8 @@
1-
# SPDX-FileCopyrightText: 2021 ladyada for Adafruit Industries
1+
# SPDX-FileCopyrightText: 2020 Jerry Needell for Adafruit Industries
22
# SPDX-License-Identifier: MIT
33

44
# Example to send a packet periodically
5-
# Author: Jerry Needell
6-
#
5+
76
import time
87
import board
98
import busio

0 commit comments

Comments
 (0)