diff --git a/BLE_CPB_Color_Picker/code.py b/BLE_CPB_Color_Picker/code.py index 030e072e1..a488725c6 100644 --- a/BLE_CPB_Color_Picker/code.py +++ b/BLE_CPB_Color_Picker/code.py @@ -1,3 +1,7 @@ +# SPDX-FileCopyrightText: 2019 Dan Halbert for Adafruit Industries +# +# SPDX-License-Identifier: MIT + # CircuitPython NeoPixel Color Picker Example import board diff --git a/CPB_Ornament_Proximity/code.py b/CPB_Ornament_Proximity/code.py index 26dcca508..38dc82153 100644 --- a/CPB_Ornament_Proximity/code.py +++ b/CPB_Ornament_Proximity/code.py @@ -1,3 +1,7 @@ +# SPDX-FileCopyrightText: 2019 John Edgar Park for Adafruit Industries +# +# SPDX-License-Identifier: MIT + """ Circuit Playground Bluefruit Ornament Proximity This demo uses advertising to set the color of scanning devices depending on the strongest broadcast diff --git a/CircuitPython_Scrolling_Clouds/code.py b/CircuitPython_Scrolling_Clouds/code.py index 56d17392a..21dd074e6 100644 --- a/CircuitPython_Scrolling_Clouds/code.py +++ b/CircuitPython_Scrolling_Clouds/code.py @@ -1,3 +1,7 @@ +# SPDX-FileCopyrightText: 2019 Dave Astels for Adafruit Industries +# +# SPDX-License-Identifier: MIT + """ Continuously scroll randomly generated Mario style clouds. Designed for an ItsyBitsy M4 Express and a 1.3" 240x240 TFT diff --git a/Close_Encounters_Hat/Close_Encounters_Hat.ino b/Close_Encounters_Hat/Close_Encounters_Hat.ino index 1685f5dd5..d095ff1c8 100644 --- a/Close_Encounters_Hat/Close_Encounters_Hat.ino +++ b/Close_Encounters_Hat/Close_Encounters_Hat.ino @@ -1,3 +1,10 @@ +// SPDX-FileCopyrightText: 2017 Becky Stern for Adafruit Industries +// SPDX-FileCopyrightText: 2017 Anne Barela for Adafruit Industries +// SPDX-FileCopyrightText: 2017 T Main for Adafruit Industries +// SPDX-FileCopyrightText: 2017 Leslie Birch for Adafruit Industries +// +// SPDX-License-Identifier: MIT + /* Close Encounters hat with 10 neopixels by Leslie Birch for Adafruit Industries. Notes play with each corresponding light. diff --git a/Close_Encounters_Hat/code.py b/Close_Encounters_Hat/code.py index d57c20b1d..8ce7b075d 100644 --- a/Close_Encounters_Hat/code.py +++ b/Close_Encounters_Hat/code.py @@ -1,3 +1,7 @@ +# SPDX-FileCopyrightText: 2017 Mikey Sklar for Adafruit Industries +# +# SPDX-License-Identifier: MIT + # Close Encounters Hat with 10 NeoPixels # ported from Leslie Birch's Arduino to CircuitPython # diff --git a/FONA_SMS_Sensor/code.py b/FONA_SMS_Sensor/code.py index 43f50b57c..e34ad1bcc 100755 --- a/FONA_SMS_Sensor/code.py +++ b/FONA_SMS_Sensor/code.py @@ -1,3 +1,7 @@ +# SPDX-FileCopyrightText: 2020 Brent Rubell for Adafruit Industries +# +# SPDX-License-Identifier: MIT + # pylint: disable=unused-import import time import board diff --git a/LSM303/lsm303agr_combined/code.py b/LSM303/lsm303agr_combined/code.py index 07252d0bd..4fca4d2d7 100644 --- a/LSM303/lsm303agr_combined/code.py +++ b/LSM303/lsm303agr_combined/code.py @@ -1,3 +1,7 @@ +# SPDX-FileCopyrightText: 2019 Bryan Siepert for Adafruit Industries +# +# SPDX-License-Identifier: MIT + from time import sleep import board import busio diff --git a/LSM303/lsm303dlh_combined/code.py b/LSM303/lsm303dlh_combined/code.py index 6915116a8..f0772edc5 100644 --- a/LSM303/lsm303dlh_combined/code.py +++ b/LSM303/lsm303dlh_combined/code.py @@ -1,3 +1,7 @@ +# SPDX-FileCopyrightText: 2019 Bryan Siepert for Adafruit Industries +# +# SPDX-License-Identifier: MIT + from time import sleep import board import busio diff --git a/LSM303/servo_calibration/servo_calibration.ino b/LSM303/servo_calibration/servo_calibration.ino index 2ba0d4e3f..c42b3df82 100644 --- a/LSM303/servo_calibration/servo_calibration.ino +++ b/LSM303/servo_calibration/servo_calibration.ino @@ -1,3 +1,7 @@ +// SPDX-FileCopyrightText: 2019 Bryan Siepert for Adafruit Industries +// +// SPDX-License-Identifier: MIT + #include Servo servo; diff --git a/LSM303/servo_compass/servo_compass.ino b/LSM303/servo_compass/servo_compass.ino index d8d1ccc94..0fa249669 100644 --- a/LSM303/servo_compass/servo_compass.ino +++ b/LSM303/servo_compass/servo_compass.ino @@ -1,3 +1,7 @@ +// SPDX-FileCopyrightText: 2019 Bill Earl for Adafruit Industries +// +// SPDX-License-Identifier: MIT + // ********************************************** // Zax-O-Meter Sketch // for the Adafruit LSM303 Magnetometer Breakout diff --git a/Make_It_Sense/cpx-buttons/code.py b/Make_It_Sense/cpx-buttons/code.py index 3bafcef4b..81d75b5a9 100644 --- a/Make_It_Sense/cpx-buttons/code.py +++ b/Make_It_Sense/cpx-buttons/code.py @@ -1,3 +1,7 @@ +# SPDX-FileCopyrightText: 2018 Anne Barela for Adafruit Industries +# +# SPDX-License-Identifier: MIT + from digitalio import DigitalInOut, Pull, Direction import board diff --git a/Make_It_Sense/cpx-cap-touch/code.py b/Make_It_Sense/cpx-cap-touch/code.py index 58bb8d81d..16632dda7 100644 --- a/Make_It_Sense/cpx-cap-touch/code.py +++ b/Make_It_Sense/cpx-cap-touch/code.py @@ -1,3 +1,7 @@ +# SPDX-FileCopyrightText: 2018 Anne Barela for Adafruit Industries +# +# SPDX-License-Identifier: MIT + from adafruit_circuitplayground.express import cpx # NeoPixel blank out diff --git a/Make_It_Sense/cpx-ir-decode/code.py b/Make_It_Sense/cpx-ir-decode/code.py index 2300c1dc5..6ac8ec3ee 100644 --- a/Make_It_Sense/cpx-ir-decode/code.py +++ b/Make_It_Sense/cpx-ir-decode/code.py @@ -1,3 +1,7 @@ +# SPDX-FileCopyrightText: 2017 John Edgar Park for Adafruit Industries +# +# SPDX-License-Identifier: MIT + # Read Adafruit Remote Codes with Circuit Playground Express # # Simplified code based on https://learn.adafruit.com/remote- diff --git a/Make_It_Sense/cpx-lib-buttons/code.py b/Make_It_Sense/cpx-lib-buttons/code.py index 4e2dc68e8..755cc64f8 100644 --- a/Make_It_Sense/cpx-lib-buttons/code.py +++ b/Make_It_Sense/cpx-lib-buttons/code.py @@ -1,3 +1,7 @@ +# SPDX-FileCopyrightText: 2018 Anne Barela for Adafruit Industries +# +# SPDX-License-Identifier: MIT + from adafruit_circuitplayground.express import cpx while True: diff --git a/Microcontroller_Benchmarking/dhrystone21/dhry.h b/Microcontroller_Benchmarking/dhrystone21/dhry.h index 1a59cd336..911f8a8ca 100644 --- a/Microcontroller_Benchmarking/dhrystone21/dhry.h +++ b/Microcontroller_Benchmarking/dhrystone21/dhry.h @@ -1,3 +1,8 @@ +// SPDX-FileCopyrightText: 1988 Reinhold P. Weicker +// SPDX-FileCopyrightText: 2018 Limor Fried for Adafruit Industries +// +// SPDX-License-Identifier: MIT + /* ************************************************************************* * diff --git a/Microcontroller_Benchmarking/dhrystone21/dhrystone21.ino b/Microcontroller_Benchmarking/dhrystone21/dhrystone21.ino index 525fda853..59f97a09e 100644 --- a/Microcontroller_Benchmarking/dhrystone21/dhrystone21.ino +++ b/Microcontroller_Benchmarking/dhrystone21/dhrystone21.ino @@ -1,3 +1,10 @@ +// SPDX-FileCopyrightText: 1988 Reinhold P. Weicker +// SPDX-FileCopyrightText: Gareth Halfacree +// SPDX-FileCopyrightText: Ken Boak +// SPDX-FileCopyrightText: 2018 Limor Fried for Adafruit Industries +// +// SPDX-License-Identifier: MIT + /* Dhrystone benchmark, modified for use with Arduinos and compatibles. * Based on work by Ken Boak. diff --git a/NeoTrellis_M4_MIDI_Synth/code.py b/NeoTrellis_M4_MIDI_Synth/code.py index 86c0a8451..66491a260 100644 --- a/NeoTrellis_M4_MIDI_Synth/code.py +++ b/NeoTrellis_M4_MIDI_Synth/code.py @@ -1,3 +1,7 @@ +# SPDX-FileCopyrightText: 2018 Dave Astels for Adafruit Industries +# +# SPDX-License-Identifier: MIT + """ NeoTrellis M4 Express MIDI synth diff --git a/NeoTrellis_M4_MIDI_Synth/events.py b/NeoTrellis_M4_MIDI_Synth/events.py index 550cddf19..d06aaa3b0 100644 --- a/NeoTrellis_M4_MIDI_Synth/events.py +++ b/NeoTrellis_M4_MIDI_Synth/events.py @@ -1,3 +1,7 @@ +# SPDX-FileCopyrightText: 2018 Dave Astels for Adafruit Industries +# +# SPDX-License-Identifier: MIT + """ NeoTrellis M4 Express MIDI synth diff --git a/NeoTrellis_M4_MIDI_Synth/header.py b/NeoTrellis_M4_MIDI_Synth/header.py index f667ed5ac..02565c2e0 100644 --- a/NeoTrellis_M4_MIDI_Synth/header.py +++ b/NeoTrellis_M4_MIDI_Synth/header.py @@ -1,3 +1,7 @@ +# SPDX-FileCopyrightText: 2018 Dave Astels for Adafruit Industries +# +# SPDX-License-Identifier: MIT + """ NeoTrellis M4 Express MIDI synth diff --git a/NeoTrellis_M4_MIDI_Synth/parser.py b/NeoTrellis_M4_MIDI_Synth/parser.py index 26d2298eb..f2d71be37 100644 --- a/NeoTrellis_M4_MIDI_Synth/parser.py +++ b/NeoTrellis_M4_MIDI_Synth/parser.py @@ -1,3 +1,7 @@ +# SPDX-FileCopyrightText: 2018 Dave Astels for Adafruit Industries +# +# SPDX-License-Identifier: MIT + """ NeoTrellis M4 Express MIDI synth diff --git a/NeoTrellis_M4_MIDI_Synth/sequencer.py b/NeoTrellis_M4_MIDI_Synth/sequencer.py index 5254304d3..98bd80510 100644 --- a/NeoTrellis_M4_MIDI_Synth/sequencer.py +++ b/NeoTrellis_M4_MIDI_Synth/sequencer.py @@ -1,3 +1,7 @@ +# SPDX-FileCopyrightText: 2018 Dave Astels for Adafruit Industries +# +# SPDX-License-Identifier: MIT + """ NeoTrellis M4 Express MIDI synth diff --git a/NeoTrellis_M4_MIDI_Synth/synth.py b/NeoTrellis_M4_MIDI_Synth/synth.py index b8932ebe0..e575a52d2 100644 --- a/NeoTrellis_M4_MIDI_Synth/synth.py +++ b/NeoTrellis_M4_MIDI_Synth/synth.py @@ -1,3 +1,7 @@ +# SPDX-FileCopyrightText: 2018 Dave Astels for Adafruit Industries +# +# SPDX-License-Identifier: MIT + """ NeoTrellis M4 Express MIDI synth diff --git a/Pathfinder/pathfinder_auto/code.py b/Pathfinder/pathfinder_auto/code.py index 88fa4c77b..325ea860a 100755 --- a/Pathfinder/pathfinder_auto/code.py +++ b/Pathfinder/pathfinder_auto/code.py @@ -1,3 +1,7 @@ +# SPDX-FileCopyrightText: 2020 John Park for Adafruit Industries +# +# SPDX-License-Identifier: MIT + # Pathfinder Auto Mode # automatically advances to new image/sound # press and hold the touch screen to toggle sound on and off diff --git a/Pathfinder/pathfinder_touch/code.py b/Pathfinder/pathfinder_touch/code.py index e2148a636..f58827d1e 100755 --- a/Pathfinder/pathfinder_touch/code.py +++ b/Pathfinder/pathfinder_touch/code.py @@ -1,3 +1,7 @@ +# SPDX-FileCopyrightText: 2020 John Park for Adafruit Industries +# +# SPDX-License-Identifier: MIT + # Pathfinder Touch Screen # press screen to advance to new image/sound # by John Park for Adafruit and Sugru diff --git a/PropMaker_Light_Up_Prop/code.py b/PropMaker_Light_Up_Prop/code.py index a65c47767..1723a6c5e 100644 --- a/PropMaker_Light_Up_Prop/code.py +++ b/PropMaker_Light_Up_Prop/code.py @@ -1,3 +1,7 @@ +# SPDX-FileCopyrightText: 2019 Kattni Rembor for Adafruit Industries +# +# SPDX-License-Identifier: MIT + """ Prop-Maker based Light Up Prop. Adafruit invests time and resources providing this open source code. diff --git a/PyPortal_Electioncal_US/electioncal/code.py b/PyPortal_Electioncal_US/electioncal/code.py index 8249a700b..a7601499b 100644 --- a/PyPortal_Electioncal_US/electioncal/code.py +++ b/PyPortal_Electioncal_US/electioncal/code.py @@ -1,3 +1,7 @@ +# SPDX-FileCopyrightText: 2020 Alvaro Figueroa for Adafruit Industries +# +# SPDX-License-Identifier: MIT + import sys import time import board diff --git a/PyPortal_Electioncal_US/electioncal_graphics/code.py b/PyPortal_Electioncal_US/electioncal_graphics/code.py index b358972d6..145219363 100644 --- a/PyPortal_Electioncal_US/electioncal_graphics/code.py +++ b/PyPortal_Electioncal_US/electioncal_graphics/code.py @@ -1,3 +1,7 @@ +# SPDX-FileCopyrightText: 2020 Alvaro Figueroa for Adafruit Industries +# +# SPDX-License-Identifier: MIT + import time import json import displayio diff --git a/PyPortal_HacksterStream/code.py b/PyPortal_HacksterStream/code.py index f3206cf12..f67709bc9 100644 --- a/PyPortal_HacksterStream/code.py +++ b/PyPortal_HacksterStream/code.py @@ -1,3 +1,7 @@ +# SPDX-FileCopyrightText: 2019 Limor Fried for Adafruit Industries +# +# SPDX-License-Identifier: MIT + import time import random import board diff --git a/PyPortal_HacksterStream/unsafe_boot.py b/PyPortal_HacksterStream/unsafe_boot.py index bc1205834..27be81159 100644 --- a/PyPortal_HacksterStream/unsafe_boot.py +++ b/PyPortal_HacksterStream/unsafe_boot.py @@ -1,3 +1,7 @@ +# SPDX-FileCopyrightText: 2019 Limor Fried for Adafruit Industries +# +# SPDX-License-Identifier: MIT + import time import storage diff --git a/Servo_Tester/code.py b/Servo_Tester/code.py index 073b6b746..e1b0aa934 100644 --- a/Servo_Tester/code.py +++ b/Servo_Tester/code.py @@ -1,3 +1,7 @@ +# SPDX-FileCopyrightText: 2018 Dave Astels for Adafruit Industries +# +# SPDX-License-Identifier: MIT + """ Servo Tester