diff --git a/All_Seeing_Skull/All_Seeing_Skull.ino b/All_Seeing_Skull/All_Seeing_Skull.ino index b2d3c0597..073e15285 100644 --- a/All_Seeing_Skull/All_Seeing_Skull.ino +++ b/All_Seeing_Skull/All_Seeing_Skull.ino @@ -1,3 +1,7 @@ +// SPDX-FileCopyrightText: 2018 Phillip Burgess for Adafruit Industries +// +// SPDX-License-Identifier: MIT + // All Seeing Skull -- Eye w PIR sensor //-------------------------------------------------------------------------- // Uncanny eyes for Adafruit 1.5" OLED (product #1431) or 1.44" TFT LCD diff --git a/All_Seeing_Skull/config.h b/All_Seeing_Skull/config.h index 9822d7f62..bfaab5033 100644 --- a/All_Seeing_Skull/config.h +++ b/All_Seeing_Skull/config.h @@ -1,3 +1,7 @@ +// SPDX-FileCopyrightText: 2018 John Edgar Park for Adafruit Industries +// +// SPDX-License-Identifier: MIT + // Pin selections here are based on the original Adafruit Learning System // guide for the Teensy 3.x project. Some of these pin numbers don't even // exist on the smaller SAMD M0 & M4 boards, so you may need to make other diff --git a/All_Seeing_Skull/graphics/defaultEye.h b/All_Seeing_Skull/graphics/defaultEye.h index d8a7b2cab..e723e0e03 100755 --- a/All_Seeing_Skull/graphics/defaultEye.h +++ b/All_Seeing_Skull/graphics/defaultEye.h @@ -1,3 +1,7 @@ +// SPDX-FileCopyrightText: 2018 John Edgar Park for Adafruit Industries +// +// SPDX-License-Identifier: MIT + #define SCLERA_WIDTH 200 #define SCLERA_HEIGHT 200 diff --git a/All_Seeing_Skull/graphics/dragonEye.h b/All_Seeing_Skull/graphics/dragonEye.h index 9690c6d52..0c19794e4 100755 --- a/All_Seeing_Skull/graphics/dragonEye.h +++ b/All_Seeing_Skull/graphics/dragonEye.h @@ -1,3 +1,7 @@ +// SPDX-FileCopyrightText: 2018 John Edgar Park for Adafruit Industries +// +// SPDX-License-Identifier: MIT + #define IRIS_MIN 80 // Override default iris size limits in sketch #define IRIS_MAX 400 diff --git a/All_Seeing_Skull/graphics/goatEye.h b/All_Seeing_Skull/graphics/goatEye.h index 0ace378bb..234df5dc0 100755 --- a/All_Seeing_Skull/graphics/goatEye.h +++ b/All_Seeing_Skull/graphics/goatEye.h @@ -1,3 +1,7 @@ +// SPDX-FileCopyrightText: 2018 John Edgar Park for Adafruit Industries +// +// SPDX-License-Identifier: MIT + #define SCLERA_WIDTH 128 #define SCLERA_HEIGHT 128 diff --git a/All_Seeing_Skull/graphics/logo.h b/All_Seeing_Skull/graphics/logo.h index 32434cab7..3939e9bfb 100755 --- a/All_Seeing_Skull/graphics/logo.h +++ b/All_Seeing_Skull/graphics/logo.h @@ -1,3 +1,7 @@ +// SPDX-FileCopyrightText: 2018 John Edgar Park for Adafruit Industries +// +// SPDX-License-Identifier: MIT + // Logo helps with screen orientation & positioning #define LOGO_TOP_WIDTH 59 diff --git a/All_Seeing_Skull/graphics/newtEye.h b/All_Seeing_Skull/graphics/newtEye.h index 51e33e427..de2083a67 100755 --- a/All_Seeing_Skull/graphics/newtEye.h +++ b/All_Seeing_Skull/graphics/newtEye.h @@ -1,3 +1,7 @@ +// SPDX-FileCopyrightText: 2018 John Edgar Park for Adafruit Industries +// +// SPDX-License-Identifier: MIT + #define IRIS_MIN 180 // Override default iris size limits in sketch #define IRIS_MAX 750 diff --git a/All_Seeing_Skull/graphics/noScleraEye.h b/All_Seeing_Skull/graphics/noScleraEye.h index 542af22aa..bb1f43b34 100755 --- a/All_Seeing_Skull/graphics/noScleraEye.h +++ b/All_Seeing_Skull/graphics/noScleraEye.h @@ -1,3 +1,7 @@ +// SPDX-FileCopyrightText: 2018 John Edgar Park for Adafruit Industries +// +// SPDX-License-Identifier: MIT + #define IRIS_MIN 120 // Override default iris size limits in sketch #define IRIS_MAX 550 diff --git a/BLE_Robot_Rover/Ada_BLE_RC/Ada_BLE_RC.ino b/BLE_Robot_Rover/Ada_BLE_RC/Ada_BLE_RC.ino index 54cd101a4..4b73c0103 100644 --- a/BLE_Robot_Rover/Ada_BLE_RC/Ada_BLE_RC.ino +++ b/BLE_Robot_Rover/Ada_BLE_RC/Ada_BLE_RC.ino @@ -1,3 +1,7 @@ +// SPDX-FileCopyrightText: 2018 Limor Fried for Adafruit Industries +// +// SPDX-License-Identifier: MIT + /********************************************************************* This is an example for our nRF51822 based Bluefruit LE modules diff --git a/BLE_Robot_Rover/Ada_BLE_RC/BluefruitConfig.h b/BLE_Robot_Rover/Ada_BLE_RC/BluefruitConfig.h index 57efc594d..3b518e610 100644 --- a/BLE_Robot_Rover/Ada_BLE_RC/BluefruitConfig.h +++ b/BLE_Robot_Rover/Ada_BLE_RC/BluefruitConfig.h @@ -1,3 +1,7 @@ +// SPDX-FileCopyrightText: 2018 Limor Fried for Adafruit Industries +// +// SPDX-License-Identifier: MIT + // COMMON SETTINGS // ---------------------------------------------------------------------------------------------- // These settings are used in both SW UART, HW UART and SPI mode diff --git a/BLE_Robot_Rover/Ada_BLE_RC/packetParser.cpp b/BLE_Robot_Rover/Ada_BLE_RC/packetParser.cpp index 7c239af34..74ac10cee 100644 --- a/BLE_Robot_Rover/Ada_BLE_RC/packetParser.cpp +++ b/BLE_Robot_Rover/Ada_BLE_RC/packetParser.cpp @@ -1,3 +1,7 @@ +// SPDX-FileCopyrightText: 2018 Limor Fried for Adafruit Industries +// +// SPDX-License-Identifier: MIT + #include #include #include diff --git a/CLUE_Milk_Checker/code.py b/CLUE_Milk_Checker/code.py index 022a5edaa..b94dbc83c 100644 --- a/CLUE_Milk_Checker/code.py +++ b/CLUE_Milk_Checker/code.py @@ -1,3 +1,7 @@ +# SPDX-FileCopyrightText: 2021 Carter Nelson for Adafruit Industries +# +# SPDX-License-Identifier: MIT + import time import board import displayio diff --git a/EInk_Autostereograms/code.py b/EInk_Autostereograms/code.py index ffd4cc214..6463267a0 100644 --- a/EInk_Autostereograms/code.py +++ b/EInk_Autostereograms/code.py @@ -1,3 +1,7 @@ +# SPDX-FileCopyrightText: 2019 Mike Cogliano for Adafruit Industries +# +# SPDX-License-Identifier: MIT + import os import time import json diff --git a/MagTag_Tides/code.py b/MagTag_Tides/code.py index ce419e7bf..bf699404b 100755 --- a/MagTag_Tides/code.py +++ b/MagTag_Tides/code.py @@ -1,3 +1,7 @@ +# SPDX-FileCopyrightText: 2020 Carter Nelson for Adafruit Industries +# +# SPDX-License-Identifier: MIT + import time import terminalio import displayio diff --git a/Multitasking_with_CircuitPython/code_all_together/code.py b/Multitasking_with_CircuitPython/code_all_together/code.py index 3119a1e88..9632d19d1 100644 --- a/Multitasking_with_CircuitPython/code_all_together/code.py +++ b/Multitasking_with_CircuitPython/code_all_together/code.py @@ -1,3 +1,7 @@ +# SPDX-FileCopyrightText: 2020 FoamyGuy for Adafruit Industries +# +# SPDX-License-Identifier: MIT + """ This example script shows the usage of servos, LEDs, and buttons all used simultaneously without interrupting each other. diff --git a/Multitasking_with_CircuitPython/code_blink_and_servo/code.py b/Multitasking_with_CircuitPython/code_blink_and_servo/code.py index 610652350..db3ee051c 100644 --- a/Multitasking_with_CircuitPython/code_blink_and_servo/code.py +++ b/Multitasking_with_CircuitPython/code_blink_and_servo/code.py @@ -1,3 +1,7 @@ +# SPDX-FileCopyrightText: 2020 FoamyGuy for Adafruit Industries +# +# SPDX-License-Identifier: MIT + """ This example script shows the usage of servos, and LEDs used simultaneously without interrupting each other. diff --git a/Multitasking_with_CircuitPython/code_blink_without_sleep/code.py b/Multitasking_with_CircuitPython/code_blink_without_sleep/code.py index e6be83103..7d2fd746e 100644 --- a/Multitasking_with_CircuitPython/code_blink_without_sleep/code.py +++ b/Multitasking_with_CircuitPython/code_blink_without_sleep/code.py @@ -1,3 +1,7 @@ +# SPDX-FileCopyrightText: 2020 FoamyGuy for Adafruit Industries +# +# SPDX-License-Identifier: MIT + """ Using time.monotonic() to blink the built-in LED. diff --git a/Multitasking_with_CircuitPython/code_buttons_without_sleep/code.py b/Multitasking_with_CircuitPython/code_buttons_without_sleep/code.py index b6be023d5..c29448a76 100644 --- a/Multitasking_with_CircuitPython/code_buttons_without_sleep/code.py +++ b/Multitasking_with_CircuitPython/code_buttons_without_sleep/code.py @@ -1,3 +1,7 @@ +# SPDX-FileCopyrightText: 2020 FoamyGuy for Adafruit Industries +# +# SPDX-License-Identifier: MIT + """ This example script shows how to read button state with debouncing that does not rely on time.sleep(). diff --git a/Multitasking_with_CircuitPython/code_multiple_leds/code.py b/Multitasking_with_CircuitPython/code_multiple_leds/code.py index c7e0c0ca5..90875bafe 100644 --- a/Multitasking_with_CircuitPython/code_multiple_leds/code.py +++ b/Multitasking_with_CircuitPython/code_multiple_leds/code.py @@ -1,3 +1,7 @@ +# SPDX-FileCopyrightText: 2020 FoamyGuy for Adafruit Industries +# +# SPDX-License-Identifier: MIT + """ This example script shows how to blink multiple LEDs at different rates simultaneously without each affecting the others. diff --git a/Multitasking_with_CircuitPython/code_multiple_leds_cpb/code.py b/Multitasking_with_CircuitPython/code_multiple_leds_cpb/code.py index 2191ea39f..e2786aa24 100644 --- a/Multitasking_with_CircuitPython/code_multiple_leds_cpb/code.py +++ b/Multitasking_with_CircuitPython/code_multiple_leds_cpb/code.py @@ -1,3 +1,7 @@ +# SPDX-FileCopyrightText: 2020 FoamyGuy for Adafruit Industries +# +# SPDX-License-Identifier: MIT + """ Blinking multiple LEDs at different rates.