diff --git a/BLE_CPB_Color_Picker/code.py b/BLE_CPB_Color_Picker/code.py index 030e072e..a488725c 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 26dcca50..38dc8215 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 56d17392..21dd074e 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 1685f5dd..d095ff1c 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 d57c20b1..8ce7b075 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 43f50b57..e34ad1bc 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 07252d0b..4fca4d2d 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 6915116a..f0772edc 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 2ba0d4e3..c42b3df8 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 d8d1ccc9..0fa24966 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 3bafcef4..81d75b5a 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 58bb8d81..16632dda 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 2300c1dc..6ac8ec3e 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 4e2dc68e..755cc64f 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 1a59cd33..911f8a8c 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 525fda85..59f97a09 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 86c0a845..66491a26 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 550cddf1..d06aaa3b 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 f667ed5a..02565c2e 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 26d2298e..f2d71be3 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 5254304d..98bd8051 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 b8932ebe..e575a52d 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 88fa4c77..325ea860 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 e2148a63..f58827d1 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 a65c4776..1723a6c5 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 8249a700..a7601499 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 b358972d..14521936 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 f3206cf1..f67709bc 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 bc120583..27be8115 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 073b6b74..e1b0aa93 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