diff --git a/BLE_Crickit_Light_Switch/code.py b/BLE_Crickit_Light_Switch/code.py index 00bee9ce9..57715fbc3 100644 --- a/BLE_Crickit_Light_Switch/code.py +++ b/BLE_Crickit_Light_Switch/code.py @@ -1,3 +1,7 @@ +# SPDX-FileCopyrightText: 2019 John Edgar Park for Adafruit Industries +# +# SPDX-License-Identifier: MIT + # BLE Crickit Light Switch # Use with the Adafruit BlueFruit LE Connect app # Works with CircuitPython 5.0.0-beta.0 and later diff --git a/CLUE_Hand_Wash_Timer/code.py b/CLUE_Hand_Wash_Timer/code.py index 5c4c89bdb..ad97412ff 100644 --- a/CLUE_Hand_Wash_Timer/code.py +++ b/CLUE_Hand_Wash_Timer/code.py @@ -1,3 +1,7 @@ +# SPDX-FileCopyrightText: 2020 John Park for Adafruit Industries +# +# SPDX-License-Identifier: MIT + """ Start a 20 second hand washing timer via proximity sensor. Countdown the seconds with text and beeps. diff --git a/Guardian_Robot_Zelda_BOTW/Trinket_Guardian_Sketch/Trinket_Guardian_Sketch.ino b/Guardian_Robot_Zelda_BOTW/Trinket_Guardian_Sketch/Trinket_Guardian_Sketch.ino index b6bde9f5b..5a0c7102d 100644 --- a/Guardian_Robot_Zelda_BOTW/Trinket_Guardian_Sketch/Trinket_Guardian_Sketch.ino +++ b/Guardian_Robot_Zelda_BOTW/Trinket_Guardian_Sketch/Trinket_Guardian_Sketch.ino @@ -1,3 +1,7 @@ +// SPDX-FileCopyrightText: 2018 Limor Fried for Adafruit Industries +// +// SPDX-License-Identifier: MIT + // Trinket Servo Monster sketch // Hardware: Adafruit Trinket (3V or 5V), micro servo, LED + resistor // Libraries: uses Adafruit_TiCoServo library to manage servo pulses, diff --git a/Introducing_CircuitPlaygroundExpress/CircuitPlaygroundExpress_808_Drum_Machine/code.py b/Introducing_CircuitPlaygroundExpress/CircuitPlaygroundExpress_808_Drum_Machine/code.py index 42c614699..fc26b9d12 100644 --- a/Introducing_CircuitPlaygroundExpress/CircuitPlaygroundExpress_808_Drum_Machine/code.py +++ b/Introducing_CircuitPlaygroundExpress/CircuitPlaygroundExpress_808_Drum_Machine/code.py @@ -1,3 +1,7 @@ +# SPDX-FileCopyrightText: 2019 Kattni Rembor for Adafruit Industries +# +# SPDX-License-Identifier: MIT + # Circuit Playground 808 Drum machine import time import board diff --git a/Introducing_CircuitPlaygroundExpress/CircuitPlaygroundExpress_AnalogIn/code.py b/Introducing_CircuitPlaygroundExpress/CircuitPlaygroundExpress_AnalogIn/code.py index 48674b609..60725a898 100644 --- a/Introducing_CircuitPlaygroundExpress/CircuitPlaygroundExpress_AnalogIn/code.py +++ b/Introducing_CircuitPlaygroundExpress/CircuitPlaygroundExpress_AnalogIn/code.py @@ -1,3 +1,7 @@ +# SPDX-FileCopyrightText: 2017 John Edgar Park for Adafruit Industries +# +# SPDX-License-Identifier: MIT + # Circuit Playground AnalogIn # Reads the analog voltage level from a 10k potentiometer connected to GND, 3.3V, and pin A1 # and prints the results to the serial console. diff --git a/Introducing_CircuitPlaygroundExpress/CircuitPlaygroundExpress_AudioFiles/code.py b/Introducing_CircuitPlaygroundExpress/CircuitPlaygroundExpress_AudioFiles/code.py index bc61f3388..ed9958ee0 100644 --- a/Introducing_CircuitPlaygroundExpress/CircuitPlaygroundExpress_AudioFiles/code.py +++ b/Introducing_CircuitPlaygroundExpress/CircuitPlaygroundExpress_AudioFiles/code.py @@ -1,3 +1,7 @@ +# SPDX-FileCopyrightText: 2017 Limor Fried for Adafruit Industries +# +# SPDX-License-Identifier: MIT + import board import digitalio diff --git a/Introducing_CircuitPlaygroundExpress/CircuitPlaygroundExpress_AudioFiles_cpx/code.py b/Introducing_CircuitPlaygroundExpress/CircuitPlaygroundExpress_AudioFiles_cpx/code.py index 379e89183..652bd63d3 100755 --- a/Introducing_CircuitPlaygroundExpress/CircuitPlaygroundExpress_AudioFiles_cpx/code.py +++ b/Introducing_CircuitPlaygroundExpress/CircuitPlaygroundExpress_AudioFiles_cpx/code.py @@ -1,3 +1,7 @@ +# SPDX-FileCopyrightText: 2017 Kattni Rembor for Adafruit Industries +# +# SPDX-License-Identifier: MIT + from adafruit_circuitplayground.express import cpx while True: diff --git a/Introducing_CircuitPlaygroundExpress/CircuitPlaygroundExpress_AudioSine/code.py b/Introducing_CircuitPlaygroundExpress/CircuitPlaygroundExpress_AudioSine/code.py index 6492b8062..86af34930 100644 --- a/Introducing_CircuitPlaygroundExpress/CircuitPlaygroundExpress_AudioSine/code.py +++ b/Introducing_CircuitPlaygroundExpress/CircuitPlaygroundExpress_AudioSine/code.py @@ -1,3 +1,7 @@ +# SPDX-FileCopyrightText: 2017 Limor Fried for Adafruit Industries +# +# SPDX-License-Identifier: MIT + import time import array import math diff --git a/Introducing_CircuitPlaygroundExpress/CircuitPlaygroundExpress_AudioSine_cpx/code.py b/Introducing_CircuitPlaygroundExpress/CircuitPlaygroundExpress_AudioSine_cpx/code.py index aee23f9c8..6ecb009bb 100755 --- a/Introducing_CircuitPlaygroundExpress/CircuitPlaygroundExpress_AudioSine_cpx/code.py +++ b/Introducing_CircuitPlaygroundExpress/CircuitPlaygroundExpress_AudioSine_cpx/code.py @@ -1,3 +1,7 @@ +# SPDX-FileCopyrightText: 2017 Kattni Rembor for Adafruit Industries +# +# SPDX-License-Identifier: MIT + from adafruit_circuitplayground.express import cpx cpx.play_tone(440, 1) diff --git a/Introducing_CircuitPlaygroundExpress/CircuitPlaygroundExpress_Blinky/code.py b/Introducing_CircuitPlaygroundExpress/CircuitPlaygroundExpress_Blinky/code.py index f61c9a996..0a53d86dd 100644 --- a/Introducing_CircuitPlaygroundExpress/CircuitPlaygroundExpress_Blinky/code.py +++ b/Introducing_CircuitPlaygroundExpress/CircuitPlaygroundExpress_Blinky/code.py @@ -1,3 +1,7 @@ +# SPDX-FileCopyrightText: 2017 John Edgar Park for Adafruit Industries +# +# SPDX-License-Identifier: MIT + # CircuitPlaygroundExpress_Blinky import time diff --git a/Introducing_CircuitPlaygroundExpress/CircuitPlaygroundExpress_Blinky_cpx/code.py b/Introducing_CircuitPlaygroundExpress/CircuitPlaygroundExpress_Blinky_cpx/code.py index a0f0998ed..9ee495112 100755 --- a/Introducing_CircuitPlaygroundExpress/CircuitPlaygroundExpress_Blinky_cpx/code.py +++ b/Introducing_CircuitPlaygroundExpress/CircuitPlaygroundExpress_Blinky_cpx/code.py @@ -1,3 +1,7 @@ +# SPDX-FileCopyrightText: 2017 Kattni Rembor for Adafruit Industries +# +# SPDX-License-Identifier: MIT + import time from adafruit_circuitplayground.express import cpx diff --git a/Introducing_CircuitPlaygroundExpress/CircuitPlaygroundExpress_CapTouch/code.py b/Introducing_CircuitPlaygroundExpress/CircuitPlaygroundExpress_CapTouch/code.py index 436f3c0e0..7d016c36f 100644 --- a/Introducing_CircuitPlaygroundExpress/CircuitPlaygroundExpress_CapTouch/code.py +++ b/Introducing_CircuitPlaygroundExpress/CircuitPlaygroundExpress_CapTouch/code.py @@ -1,3 +1,7 @@ +# SPDX-FileCopyrightText: 2017 John Edgar Park for Adafruit Industries +# +# SPDX-License-Identifier: MIT + # Circuit Playground Capacitive Touch import time diff --git a/Introducing_CircuitPlaygroundExpress/CircuitPlaygroundExpress_CapTouch_cpx/code.py b/Introducing_CircuitPlaygroundExpress/CircuitPlaygroundExpress_CapTouch_cpx/code.py index 9f495690e..98f335153 100755 --- a/Introducing_CircuitPlaygroundExpress/CircuitPlaygroundExpress_CapTouch_cpx/code.py +++ b/Introducing_CircuitPlaygroundExpress/CircuitPlaygroundExpress_CapTouch_cpx/code.py @@ -1,3 +1,7 @@ +# SPDX-FileCopyrightText: 2017 Kattni Rembor for Adafruit Industries +# +# SPDX-License-Identifier: MIT + from adafruit_circuitplayground.express import cpx while True: diff --git a/Introducing_CircuitPlaygroundExpress/CircuitPlaygroundExpress_DigitalIO/code.py b/Introducing_CircuitPlaygroundExpress/CircuitPlaygroundExpress_DigitalIO/code.py index c230a3d43..c79913755 100644 --- a/Introducing_CircuitPlaygroundExpress/CircuitPlaygroundExpress_DigitalIO/code.py +++ b/Introducing_CircuitPlaygroundExpress/CircuitPlaygroundExpress_DigitalIO/code.py @@ -1,3 +1,7 @@ +# SPDX-FileCopyrightText: 2017 Limor Fried for Adafruit Industries +# +# SPDX-License-Identifier: MIT + # Circuit Playground digitalio example import time diff --git a/Introducing_CircuitPlaygroundExpress/CircuitPlaygroundExpress_DigitalIO_cpx/code.py b/Introducing_CircuitPlaygroundExpress/CircuitPlaygroundExpress_DigitalIO_cpx/code.py index 7f05a0a8a..c650a31fd 100755 --- a/Introducing_CircuitPlaygroundExpress/CircuitPlaygroundExpress_DigitalIO_cpx/code.py +++ b/Introducing_CircuitPlaygroundExpress/CircuitPlaygroundExpress_DigitalIO_cpx/code.py @@ -1,3 +1,7 @@ +# SPDX-FileCopyrightText: 2017 Kattni Rembor for Adafruit Industries +# +# SPDX-License-Identifier: MIT + from adafruit_circuitplayground.express import cpx while True: diff --git a/Introducing_CircuitPlaygroundExpress/CircuitPlaygroundExpress_DigitalIO_example1_cpx/code.py b/Introducing_CircuitPlaygroundExpress/CircuitPlaygroundExpress_DigitalIO_example1_cpx/code.py index 97f319f12..8d4837993 100755 --- a/Introducing_CircuitPlaygroundExpress/CircuitPlaygroundExpress_DigitalIO_example1_cpx/code.py +++ b/Introducing_CircuitPlaygroundExpress/CircuitPlaygroundExpress_DigitalIO_example1_cpx/code.py @@ -1,3 +1,7 @@ +# SPDX-FileCopyrightText: 2017 Kattni Rembor for Adafruit Industries +# +# SPDX-License-Identifier: MIT + from adafruit_circuitplayground.express import cpx while True: diff --git a/Introducing_CircuitPlaygroundExpress/CircuitPlaygroundExpress_DigitalIO_example2_cpx/code.py b/Introducing_CircuitPlaygroundExpress/CircuitPlaygroundExpress_DigitalIO_example2_cpx/code.py index ef1295b3d..396a5eefa 100755 --- a/Introducing_CircuitPlaygroundExpress/CircuitPlaygroundExpress_DigitalIO_example2_cpx/code.py +++ b/Introducing_CircuitPlaygroundExpress/CircuitPlaygroundExpress_DigitalIO_example2_cpx/code.py @@ -1,3 +1,7 @@ +# SPDX-FileCopyrightText: 2017 Kattni Rembor for Adafruit Industries +# +# SPDX-License-Identifier: MIT + from adafruit_circuitplayground.express import cpx while True: diff --git a/Introducing_CircuitPlaygroundExpress/CircuitPlaygroundExpress_HIDKeyboard/code.py b/Introducing_CircuitPlaygroundExpress/CircuitPlaygroundExpress_HIDKeyboard/code.py index bd9a26779..aaf9698b7 100644 --- a/Introducing_CircuitPlaygroundExpress/CircuitPlaygroundExpress_HIDKeyboard/code.py +++ b/Introducing_CircuitPlaygroundExpress/CircuitPlaygroundExpress_HIDKeyboard/code.py @@ -1,3 +1,7 @@ +# SPDX-FileCopyrightText: 2017 Limor Fried for Adafruit Industries +# +# SPDX-License-Identifier: MIT + # Circuit Playground HID Keyboard import time diff --git a/Introducing_CircuitPlaygroundExpress/CircuitPlaygroundExpress_LightSensor/code.py b/Introducing_CircuitPlaygroundExpress/CircuitPlaygroundExpress_LightSensor/code.py index e0eaa20b9..6274b5084 100644 --- a/Introducing_CircuitPlaygroundExpress/CircuitPlaygroundExpress_LightSensor/code.py +++ b/Introducing_CircuitPlaygroundExpress/CircuitPlaygroundExpress_LightSensor/code.py @@ -1,3 +1,7 @@ +# SPDX-FileCopyrightText: 2017 John Edgar Park for Adafruit Industries +# +# SPDX-License-Identifier: MIT + # Circuit Playground Light Sensor # Reads the on-board light sensor and graphs the brightness with NeoPixels diff --git a/Introducing_CircuitPlaygroundExpress/CircuitPlaygroundExpress_LightSensor_cpx/code.py b/Introducing_CircuitPlaygroundExpress/CircuitPlaygroundExpress_LightSensor_cpx/code.py index d5341906d..d0bd193ee 100755 --- a/Introducing_CircuitPlaygroundExpress/CircuitPlaygroundExpress_LightSensor_cpx/code.py +++ b/Introducing_CircuitPlaygroundExpress/CircuitPlaygroundExpress_LightSensor_cpx/code.py @@ -1,3 +1,7 @@ +# SPDX-FileCopyrightText: 2017 Kattni Rembor for Adafruit Industries +# +# SPDX-License-Identifier: MIT + # CircuitPlaygroundExpress_LightSensor # reads the on-board light sensor and graphs the brighness with NeoPixels diff --git a/Introducing_CircuitPlaygroundExpress/CircuitPlaygroundExpress_NeoPixel/code.py b/Introducing_CircuitPlaygroundExpress/CircuitPlaygroundExpress_NeoPixel/code.py index af2697fe9..69677b79a 100644 --- a/Introducing_CircuitPlaygroundExpress/CircuitPlaygroundExpress_NeoPixel/code.py +++ b/Introducing_CircuitPlaygroundExpress/CircuitPlaygroundExpress_NeoPixel/code.py @@ -1,3 +1,7 @@ +# SPDX-FileCopyrightText: 2017 John Edgar Park for Adafruit Industries +# +# SPDX-License-Identifier: MIT + # Circuit Playground NeoPixel import time import board diff --git a/Introducing_CircuitPlaygroundExpress/CircuitPlaygroundExpress_Neopixel_cpx/code.py b/Introducing_CircuitPlaygroundExpress/CircuitPlaygroundExpress_Neopixel_cpx/code.py index d1cf204dd..799a1ae4f 100755 --- a/Introducing_CircuitPlaygroundExpress/CircuitPlaygroundExpress_Neopixel_cpx/code.py +++ b/Introducing_CircuitPlaygroundExpress/CircuitPlaygroundExpress_Neopixel_cpx/code.py @@ -1,3 +1,7 @@ +# SPDX-FileCopyrightText: 2017 Kattni Rembor for Adafruit Industries +# +# SPDX-License-Identifier: MIT + import time from rainbowio import colorwheel from adafruit_circuitplayground.express import cpx diff --git a/Introducing_CircuitPlaygroundExpress/CircuitPlaygroundExpress_SoundMeter/code.py b/Introducing_CircuitPlaygroundExpress/CircuitPlaygroundExpress_SoundMeter/code.py index 6672792e1..f61354bac 100644 --- a/Introducing_CircuitPlaygroundExpress/CircuitPlaygroundExpress_SoundMeter/code.py +++ b/Introducing_CircuitPlaygroundExpress/CircuitPlaygroundExpress_SoundMeter/code.py @@ -1,3 +1,9 @@ +# SPDX-FileCopyrightText: 2017 Dan Halbert for Adafruit Industries +# SPDX-FileCopyrightText: 2017 Tony DiCola for Adafruit Industries +# SPDX-FileCopyrightText: 2017 Kattni Rembor for Adafruit Industries +# +# SPDX-License-Identifier: MIT + # The MIT License (MIT) # # Copyright (c) 2017 Dan Halbert for Adafruit Industries diff --git a/Introducing_CircuitPlaygroundExpress/CircuitPlaygroundExpress_Temperature/code.py b/Introducing_CircuitPlaygroundExpress/CircuitPlaygroundExpress_Temperature/code.py index 8bca7cc48..49d4ee27b 100644 --- a/Introducing_CircuitPlaygroundExpress/CircuitPlaygroundExpress_Temperature/code.py +++ b/Introducing_CircuitPlaygroundExpress/CircuitPlaygroundExpress_Temperature/code.py @@ -1,3 +1,7 @@ +# SPDX-FileCopyrightText: 2017 John Edgar Park for Adafruit Industries +# +# SPDX-License-Identifier: MIT + # Circuit Playground Temperature # Reads the on-board temperature sensor and prints the value diff --git a/Introducing_CircuitPlaygroundExpress/CircuitPlaygroundExpress_Temperature_cpx/code.py b/Introducing_CircuitPlaygroundExpress/CircuitPlaygroundExpress_Temperature_cpx/code.py index 0bd30e93e..046ad7b80 100755 --- a/Introducing_CircuitPlaygroundExpress/CircuitPlaygroundExpress_Temperature_cpx/code.py +++ b/Introducing_CircuitPlaygroundExpress/CircuitPlaygroundExpress_Temperature_cpx/code.py @@ -1,3 +1,7 @@ +# SPDX-FileCopyrightText: 2017 Kattni Rembor for Adafruit Industries +# +# SPDX-License-Identifier: MIT + import time from adafruit_circuitplayground.express import cpx diff --git a/Introducing_CircuitPlaygroundExpress/digitalio/digitalio.ino b/Introducing_CircuitPlaygroundExpress/digitalio/digitalio.ino index f877d0a6e..08ec552d4 100644 --- a/Introducing_CircuitPlaygroundExpress/digitalio/digitalio.ino +++ b/Introducing_CircuitPlaygroundExpress/digitalio/digitalio.ino @@ -1,3 +1,7 @@ +// SPDX-FileCopyrightText: 2017 Limor Fried for Adafruit Industries +// +// SPDX-License-Identifier: MIT + #include void setup() { diff --git a/Introducing_CircuitPlaygroundExpress/digitalio_lib/digitalio_lib.ino b/Introducing_CircuitPlaygroundExpress/digitalio_lib/digitalio_lib.ino index 3217fd918..9179ea405 100644 --- a/Introducing_CircuitPlaygroundExpress/digitalio_lib/digitalio_lib.ino +++ b/Introducing_CircuitPlaygroundExpress/digitalio_lib/digitalio_lib.ino @@ -1,3 +1,7 @@ +// SPDX-FileCopyrightText: 2017 Limor Fried for Adafruit Industries +// +// SPDX-License-Identifier: MIT + #include void setup() { diff --git a/MacroPad_Braille_Keycaps/shortcuts.py b/MacroPad_Braille_Keycaps/shortcuts.py index 628c87c21..4cb83d84f 100755 --- a/MacroPad_Braille_Keycaps/shortcuts.py +++ b/MacroPad_Braille_Keycaps/shortcuts.py @@ -1,3 +1,7 @@ +# SPDX-FileCopyrightText: 2021 Kattni Rembor for Adafruit Industries +# +# SPDX-License-Identifier: MIT + """ A Python dictionary containing information to be associated with the twelve keys on a MacroPad. diff --git a/Macropad_Dragon_Drop/code.py b/Macropad_Dragon_Drop/code.py index c3580030c..d0bcf54f5 100644 --- a/Macropad_Dragon_Drop/code.py +++ b/Macropad_Dragon_Drop/code.py @@ -1,3 +1,7 @@ +# SPDX-FileCopyrightText: 2021 Phillip Burgess for Adafruit Industries +# +# SPDX-License-Identifier: MIT + """ Dragon Drop: a simple game for Adafruit MACROPAD. Uses OLED display in portrait (vertical) orientation. Tap one of four keys across a row to diff --git a/PMS5003_Air_Quality_Sensor/PMS5003_CircuitPython/code.py b/PMS5003_Air_Quality_Sensor/PMS5003_CircuitPython/code.py index d065bdcb5..8209dc2c4 100644 --- a/PMS5003_Air_Quality_Sensor/PMS5003_CircuitPython/code.py +++ b/PMS5003_Air_Quality_Sensor/PMS5003_CircuitPython/code.py @@ -1,3 +1,7 @@ +# SPDX-FileCopyrightText: 2017 Limor Fried for Adafruit Industries +# +# SPDX-License-Identifier: MIT + try: import struct except ImportError: