diff --git a/Adafruit_LED_Sequins/Adafruit_LED_Sequins.ino b/Adafruit_LED_Sequins/Adafruit_LED_Sequins.ino index cfe671f72..8b0dfa8dd 100644 --- a/Adafruit_LED_Sequins/Adafruit_LED_Sequins.ino +++ b/Adafruit_LED_Sequins/Adafruit_LED_Sequins.ino @@ -1,3 +1,7 @@ +// SPDX-FileCopyrightText: 2018 Mikey Sklar for Adafruit Industries +// +// SPDX-License-Identifier: MIT + int brightness = 0; // how bright the LED is int fadeAmount = 5; // how many points to fade the LED by int counter = 0; // counter to keep track of cycles diff --git a/Adafruit_LED_Sequins/code.py b/Adafruit_LED_Sequins/code.py index 9e322a783..293c66d1c 100644 --- a/Adafruit_LED_Sequins/code.py +++ b/Adafruit_LED_Sequins/code.py @@ -1,3 +1,7 @@ +# SPDX-FileCopyrightText: 2018 Mikey Sklar for Adafruit Industries +# +# SPDX-License-Identifier: MIT + import time import board diff --git a/Arcade_Synth_Controller/ADT.h b/Arcade_Synth_Controller/ADT.h index 4dbacdbe0..c2221ad4c 100644 --- a/Arcade_Synth_Controller/ADT.h +++ b/Arcade_Synth_Controller/ADT.h @@ -1,3 +1,7 @@ +// SPDX-FileCopyrightText: 2022 John Park for Adafruit Industries +// +// SPDX-License-Identifier: MIT + // GUItool: begin automatically generated code AudioSynthWaveform wave0; //xy=502.74795150756836,82.7552137374878 AudioSynthWaveform wave1; //xy=504.28649139404297,117.86524295806885 diff --git a/Arcade_Synth_Controller/Arpy.h b/Arcade_Synth_Controller/Arpy.h index 90b1f41bc..a792cb1ed 100644 --- a/Arcade_Synth_Controller/Arpy.h +++ b/Arcade_Synth_Controller/Arpy.h @@ -1,3 +1,7 @@ +// SPDX-FileCopyrightText: 2022 Tod Kurt for Adafruit Industries +// +// SPDX-License-Identifier: MIT + /** * Arpy - a class to do arpeggios for you * 12 Jan 2022 - Tod Kurt @todbot diff --git a/Arcade_Synth_Controller/midi_to_freq.h b/Arcade_Synth_Controller/midi_to_freq.h index 6de877dd9..3ad25dada 100644 --- a/Arcade_Synth_Controller/midi_to_freq.h +++ b/Arcade_Synth_Controller/midi_to_freq.h @@ -1,3 +1,7 @@ +// SPDX-FileCopyrightText: 2022 John Park for Adafruit Industries +// +// SPDX-License-Identifier: MIT + // from Audio/examples/Synthesis/PlaySynthMusic // This is for the Teensy Audio library which specifies // frequencies as floating point. See make_notetab.xlsx diff --git a/CPB_AMS_Gizmo_BLE/code.py b/CPB_AMS_Gizmo_BLE/code.py index ada2861b1..f4f8c766a 100755 --- a/CPB_AMS_Gizmo_BLE/code.py +++ b/CPB_AMS_Gizmo_BLE/code.py @@ -1,3 +1,7 @@ +# SPDX-FileCopyrightText: 2020 Melissa LeBlanc-Williams for Adafruit Industries +# +# SPDX-License-Identifier: MIT + """ This example solicits that apple devices that provide notifications connect to it, initiates pairing, prints existing notifications and then prints any new ones as they arrive. diff --git a/CircuitPython_Logger/aio_handler/code.py b/CircuitPython_Logger/aio_handler/code.py index bea33c5ba..1d48f518c 100644 --- a/CircuitPython_Logger/aio_handler/code.py +++ b/CircuitPython_Logger/aio_handler/code.py @@ -1,3 +1,7 @@ +# SPDX-FileCopyrightText: 2018 Dave Astels for Adafruit Industries +# +# SPDX-License-Identifier: MIT + """ Adafruit IO based message handler for CircuitPython logging. diff --git a/CircuitPython_Logger/aio_test/code.py b/CircuitPython_Logger/aio_test/code.py index 226b05f22..046f3bb93 100644 --- a/CircuitPython_Logger/aio_test/code.py +++ b/CircuitPython_Logger/aio_test/code.py @@ -1,3 +1,7 @@ +# SPDX-FileCopyrightText: 2019 Dave Astels for Adafruit Industries +# +# SPDX-License-Identifier: MIT + import time import random from adafruit_pyportal import PyPortal diff --git a/CircuitPython_Logger/ble_handler/code.py b/CircuitPython_Logger/ble_handler/code.py index 0ffed8280..b6b0706f2 100644 --- a/CircuitPython_Logger/ble_handler/code.py +++ b/CircuitPython_Logger/ble_handler/code.py @@ -1,3 +1,7 @@ +# SPDX-FileCopyrightText: 2019 Dave Astels for Adafruit Industries +# +# SPDX-License-Identifier: MIT + """ BLE based message handler for CircuitPython logging. diff --git a/CircuitPython_Logger/ble_test/code.py b/CircuitPython_Logger/ble_test/code.py index d1f3dcc59..0b0938064 100644 --- a/CircuitPython_Logger/ble_test/code.py +++ b/CircuitPython_Logger/ble_test/code.py @@ -1,3 +1,7 @@ +# SPDX-FileCopyrightText: 2019 Dave Astels for Adafruit Industries +# +# SPDX-License-Identifier: MIT + import time import random from ble_handler import BLEHandler diff --git a/CircuitPython_Logger/file_handler/code.py b/CircuitPython_Logger/file_handler/code.py index bc33c72f0..4f8198a23 100644 --- a/CircuitPython_Logger/file_handler/code.py +++ b/CircuitPython_Logger/file_handler/code.py @@ -1,3 +1,7 @@ +# SPDX-FileCopyrightText: 2018 Dave Astels for Adafruit Industries +# +# SPDX-License-Identifier: MIT + """ File based message handler for CircuitPython logging. diff --git a/CircuitPython_Logger/uart_handler/code.py b/CircuitPython_Logger/uart_handler/code.py index ce44f94bb..c7382d0a4 100644 --- a/CircuitPython_Logger/uart_handler/code.py +++ b/CircuitPython_Logger/uart_handler/code.py @@ -1,3 +1,7 @@ +# SPDX-FileCopyrightText: 2018 Dave Astels for Adafruit Industries +# +# SPDX-License-Identifier: MIT + """ UART based message handler for CircuitPython logging. diff --git a/CircuitPython_RGBMatrix/rp2040/code.py b/CircuitPython_RGBMatrix/rp2040/code.py index 0ec14abd9..e618d6a82 100644 --- a/CircuitPython_RGBMatrix/rp2040/code.py +++ b/CircuitPython_RGBMatrix/rp2040/code.py @@ -1,3 +1,7 @@ +# SPDX-FileCopyrightText: 2021 Jeff Epler for Adafruit Industries +# +# SPDX-License-Identifier: MIT + import time from math import sin import board diff --git a/FeatherCAN_CircuitPython/listener-ack/code.py b/FeatherCAN_CircuitPython/listener-ack/code.py index 4a3c80dc1..8b669ba05 100644 --- a/FeatherCAN_CircuitPython/listener-ack/code.py +++ b/FeatherCAN_CircuitPython/listener-ack/code.py @@ -1,3 +1,7 @@ +# SPDX-FileCopyrightText: 2020 Jeff Epler for Adafruit Industries +# +# SPDX-License-Identifier: MIT + import struct import board diff --git a/FeatherCAN_CircuitPython/listener/code.py b/FeatherCAN_CircuitPython/listener/code.py index 0df157e14..9f2f4e4a3 100644 --- a/FeatherCAN_CircuitPython/listener/code.py +++ b/FeatherCAN_CircuitPython/listener/code.py @@ -1,3 +1,7 @@ +# SPDX-FileCopyrightText: 2020 Jeff Epler for Adafruit Industries +# +# SPDX-License-Identifier: MIT + import struct import board diff --git a/FeatherCAN_CircuitPython/sender-ack/code.py b/FeatherCAN_CircuitPython/sender-ack/code.py index 4b6fab4de..4429dbcd1 100644 --- a/FeatherCAN_CircuitPython/sender-ack/code.py +++ b/FeatherCAN_CircuitPython/sender-ack/code.py @@ -1,3 +1,7 @@ +# SPDX-FileCopyrightText: 2020 Jeff Epler for Adafruit Industries +# +# SPDX-License-Identifier: MIT + import struct import time diff --git a/FeatherCAN_CircuitPython/sender/code.py b/FeatherCAN_CircuitPython/sender/code.py index 23702e3d2..f2be4479d 100644 --- a/FeatherCAN_CircuitPython/sender/code.py +++ b/FeatherCAN_CircuitPython/sender/code.py @@ -1,3 +1,7 @@ +# SPDX-FileCopyrightText: 2020 Jeff Epler for Adafruit Industries +# +# SPDX-License-Identifier: MIT + import struct import time diff --git a/PyPortal_Calculator/calculator.py b/PyPortal_Calculator/calculator.py index 1ca923fe5..32d538d61 100755 --- a/PyPortal_Calculator/calculator.py +++ b/PyPortal_Calculator/calculator.py @@ -1,3 +1,7 @@ +# SPDX-FileCopyrightText: 2019 Melissa LeBlanc-Williams for Adafruit Industries +# +# SPDX-License-Identifier: MIT + """ CircuitPython library to handle the input and calculations diff --git a/PyPortal_Calculator/code.py b/PyPortal_Calculator/code.py index 5a7186da2..1e1877b03 100755 --- a/PyPortal_Calculator/code.py +++ b/PyPortal_Calculator/code.py @@ -1,3 +1,7 @@ +# SPDX-FileCopyrightText: 2019 Melissa LeBlanc-Williams for Adafruit Industries +# +# SPDX-License-Identifier: MIT + """ PyPortal Calculator Demo """ diff --git a/PyPortal_Calculator/titano_code.py b/PyPortal_Calculator/titano_code.py index 3c33e249f..9ae0c59fa 100644 --- a/PyPortal_Calculator/titano_code.py +++ b/PyPortal_Calculator/titano_code.py @@ -1,3 +1,7 @@ +# SPDX-FileCopyrightText: 2019 Melissa LeBlanc-Williams for Adafruit Industries +# +# SPDX-License-Identifier: MIT + """ PyPortal Titano Calculator Demo """ diff --git a/PyPortal_Hackster/code.py b/PyPortal_Hackster/code.py index 9c4fc22b1..e2d2d730d 100644 --- a/PyPortal_Hackster/code.py +++ b/PyPortal_Hackster/code.py @@ -1,3 +1,7 @@ +# SPDX-FileCopyrightText: 2019 Limor Fried for Adafruit Industries +# +# SPDX-License-Identifier: MIT + import time import board from adafruit_pyportal import PyPortal diff --git a/PyPortal_LIFX_Controller/code.py b/PyPortal_LIFX_Controller/code.py index 92452c87a..2614aff63 100755 --- a/PyPortal_LIFX_Controller/code.py +++ b/PyPortal_LIFX_Controller/code.py @@ -1,3 +1,7 @@ +# SPDX-FileCopyrightText: 2019 Brent Rubell for Adafruit Industries +# +# SPDX-License-Identifier: MIT + """ PyPortal Smart Lighting Controller ------------------------------------------------------------- diff --git a/PyRuler_Simon_Game/code.py b/PyRuler_Simon_Game/code.py index fdd682e18..83a387ae9 100644 --- a/PyRuler_Simon_Game/code.py +++ b/PyRuler_Simon_Game/code.py @@ -1,3 +1,7 @@ +# SPDX-FileCopyrightText: 2019 Isaac Wellish for Adafruit Industries +# +# SPDX-License-Identifier: MIT + """ This example runs the 'Simon' game on the PyRuler. Memorize each led sequence and tap the corresponding diff --git a/Rotary_Trinkey/CircuitPython_Cap_Touch_Example/code.py b/Rotary_Trinkey/CircuitPython_Cap_Touch_Example/code.py index 9e2afff87..ad6026937 100644 --- a/Rotary_Trinkey/CircuitPython_Cap_Touch_Example/code.py +++ b/Rotary_Trinkey/CircuitPython_Cap_Touch_Example/code.py @@ -1,3 +1,7 @@ +# SPDX-FileCopyrightText: 2021 Kattni Rembor for Adafruit Industries +# +# SPDX-License-Identifier: MIT + """CircuitPython Capacitive Touch Example for Rotary Trinkey""" import time import board diff --git a/Rotary_Trinkey/CircuitPython_ColorPicker_Example/code.py b/Rotary_Trinkey/CircuitPython_ColorPicker_Example/code.py index 50d0fe111..6ac6006ac 100644 --- a/Rotary_Trinkey/CircuitPython_ColorPicker_Example/code.py +++ b/Rotary_Trinkey/CircuitPython_ColorPicker_Example/code.py @@ -1,3 +1,7 @@ +# SPDX-FileCopyrightText: 2021 Kattni Rembor for Adafruit Industries +# +# SPDX-License-Identifier: MIT + """Rotary Trinkey NeoPixel color picker example""" import rotaryio import digitalio diff --git a/Rotary_Trinkey/CircuitPython_Volume_Knob_Example/code.py b/Rotary_Trinkey/CircuitPython_Volume_Knob_Example/code.py index 0a8c57663..1ada042f4 100644 --- a/Rotary_Trinkey/CircuitPython_Volume_Knob_Example/code.py +++ b/Rotary_Trinkey/CircuitPython_Volume_Knob_Example/code.py @@ -1,3 +1,7 @@ +# SPDX-FileCopyrightText: 2018 Kattni Rembor for Adafruit Industries +# +# SPDX-License-Identifier: MIT + """Rotary Trinkey Volume and Mute HID example""" import rotaryio import board diff --git a/Rotary_Trinkey/CircuitPython_YouTube_Frame_Example/code.py b/Rotary_Trinkey/CircuitPython_YouTube_Frame_Example/code.py index d38b27a99..a435da9a8 100644 --- a/Rotary_Trinkey/CircuitPython_YouTube_Frame_Example/code.py +++ b/Rotary_Trinkey/CircuitPython_YouTube_Frame_Example/code.py @@ -1,3 +1,7 @@ +# SPDX-FileCopyrightText: 2021 Kattni Rembor for Adafruit Industries +# +# SPDX-License-Identifier: MIT + """Rotary Trinkey YouTube Frame-by-Frame Example""" import time import rotaryio diff --git a/Rotary_Trinkey/neopixel_encoder_demo/neopixel_encoder_demo.ino b/Rotary_Trinkey/neopixel_encoder_demo/neopixel_encoder_demo.ino index 200b391bc..ad085a626 100644 --- a/Rotary_Trinkey/neopixel_encoder_demo/neopixel_encoder_demo.ino +++ b/Rotary_Trinkey/neopixel_encoder_demo/neopixel_encoder_demo.ino @@ -1,3 +1,7 @@ +// SPDX-FileCopyrightText: 2021 Kattni Rembor for Adafruit Industries +// +// SPDX-License-Identifier: MIT + #include #include "Adafruit_FreeTouch.h" #include diff --git a/Rotary_Trinkey/surfacedial_encoder_demo/surfacedial_encoder_demo.ino b/Rotary_Trinkey/surfacedial_encoder_demo/surfacedial_encoder_demo.ino index 8f5df9b18..cf58ce896 100644 --- a/Rotary_Trinkey/surfacedial_encoder_demo/surfacedial_encoder_demo.ino +++ b/Rotary_Trinkey/surfacedial_encoder_demo/surfacedial_encoder_demo.ino @@ -1,3 +1,7 @@ +// SPDX-FileCopyrightText: 2021 Kattni Rembor for Adafruit Industries +// +// SPDX-License-Identifier: MIT + #include #include #include "HID-Project.h" // https://github.com/NicoHood/HID diff --git a/Rotary_Trinkey/volumemute_encoder_demo/volumemute_encoder_demo.ino b/Rotary_Trinkey/volumemute_encoder_demo/volumemute_encoder_demo.ino index cd5e1d5d0..459f91e0a 100644 --- a/Rotary_Trinkey/volumemute_encoder_demo/volumemute_encoder_demo.ino +++ b/Rotary_Trinkey/volumemute_encoder_demo/volumemute_encoder_demo.ino @@ -1,3 +1,7 @@ +// SPDX-FileCopyrightText: 2021 Kattni Rembor for Adafruit Industries +// +// SPDX-License-Identifier: MIT + #include #include #include "HID-Project.h" // https://github.com/NicoHood/HID