diff --git a/BME680_BSEC_OLED_Demo/BME680_BSEC_OLED_Demo.ino b/BME680_BSEC_OLED_Demo/BME680_BSEC_OLED_Demo.ino index 5a0d8d020..6a1ef0ba0 100644 --- a/BME680_BSEC_OLED_Demo/BME680_BSEC_OLED_Demo.ino +++ b/BME680_BSEC_OLED_Demo/BME680_BSEC_OLED_Demo.ino @@ -1,3 +1,8 @@ +// SPDX-FileCopyrightText: 2020 Limor Fried for Adafruit Industries +// SPDX-FileCopyrightText: 2020 Kevin Townsend for Adafruit Industries +// +// SPDX-License-Identifier: MIT + /*************************************************************************** This is a library for the BME680 gas, humidity, temperature & pressure sensor diff --git a/CircuitPython_Made_Easy_On_CPX/cpx_acceleration/code.py b/CircuitPython_Made_Easy_On_CPX/cpx_acceleration/code.py index aecdfa016..118cee4c5 100644 --- a/CircuitPython_Made_Easy_On_CPX/cpx_acceleration/code.py +++ b/CircuitPython_Made_Easy_On_CPX/cpx_acceleration/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/CircuitPython_Made_Easy_On_CPX/cpx_neopixel_0_1/code.py b/CircuitPython_Made_Easy_On_CPX/cpx_neopixel_0_1/code.py index f04c11588..91e026feb 100644 --- a/CircuitPython_Made_Easy_On_CPX/cpx_neopixel_0_1/code.py +++ b/CircuitPython_Made_Easy_On_CPX/cpx_neopixel_0_1/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.pixels.brightness = 0.3 diff --git a/CircuitPython_Made_Easy_On_CPX/cpx_play_file/code.py b/CircuitPython_Made_Easy_On_CPX/cpx_play_file/code.py index c4857db11..6da7d45ed 100644 --- a/CircuitPython_Made_Easy_On_CPX/cpx_play_file/code.py +++ b/CircuitPython_Made_Easy_On_CPX/cpx_play_file/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_file("Wild_Eep.wav") diff --git a/CircuitPython_Made_Easy_On_CPX/cpx_play_tone/code.py b/CircuitPython_Made_Easy_On_CPX/cpx_play_tone/code.py index 31daceb81..92a80e679 100644 --- a/CircuitPython_Made_Easy_On_CPX/cpx_play_tone/code.py +++ b/CircuitPython_Made_Easy_On_CPX/cpx_play_tone/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(262, 1) diff --git a/CircuitPython_Made_Easy_On_CPX/cpx_sound_meter/code.py b/CircuitPython_Made_Easy_On_CPX/cpx_sound_meter/code.py index 7e1130777..265ae6ced 100644 --- a/CircuitPython_Made_Easy_On_CPX/cpx_sound_meter/code.py +++ b/CircuitPython_Made_Easy_On_CPX/cpx_sound_meter/code.py @@ -1,3 +1,7 @@ +# SPDX-FileCopyrightText: 2018 Kattni Rembor for Adafruit Industries +# +# SPDX-License-Identifier: MIT + import array import math import audiobusio diff --git a/CircuitPython_Made_Easy_On_CPX/cpx_tap_single_double/code.py b/CircuitPython_Made_Easy_On_CPX/cpx_tap_single_double/code.py index 04d6b6584..a94036e04 100644 --- a/CircuitPython_Made_Easy_On_CPX/cpx_tap_single_double/code.py +++ b/CircuitPython_Made_Easy_On_CPX/cpx_tap_single_double/code.py @@ -1,3 +1,7 @@ +# SPDX-FileCopyrightText: 2018 Kattni Rembor for Adafruit Industries +# +# SPDX-License-Identifier: MIT + from adafruit_circuitplayground.express import cpx # Set to check for single-taps. diff --git a/CircuitPython_Quick_Starts/CircuitPython_CapTouch/code.py b/CircuitPython_Quick_Starts/CircuitPython_CapTouch/code.py index feaec0e20..2a1a4914a 100644 --- a/CircuitPython_Quick_Starts/CircuitPython_CapTouch/code.py +++ b/CircuitPython_Quick_Starts/CircuitPython_CapTouch/code.py @@ -1,3 +1,7 @@ +# SPDX-FileCopyrightText: 2018 Kattni Rembor for Adafruit Industries +# +# SPDX-License-Identifier: MIT + import time import board diff --git a/CircuitPython_Quick_Starts/CircuitPython_CapTouch_2Pins/code.py b/CircuitPython_Quick_Starts/CircuitPython_CapTouch_2Pins/code.py index fc9eafa67..3b2dae334 100644 --- a/CircuitPython_Quick_Starts/CircuitPython_CapTouch_2Pins/code.py +++ b/CircuitPython_Quick_Starts/CircuitPython_CapTouch_2Pins/code.py @@ -1,3 +1,7 @@ +# SPDX-FileCopyrightText: 2018 Kattni Rembor for Adafruit Industries +# +# SPDX-License-Identifier: MIT + # CircuitPython Demo - Cap Touch Multiple Pins # Example does NOT work with Trinket M0! diff --git a/CircuitPython_Quick_Starts/CircuitPython_Internal_RGB_LED_rainbow/code.py b/CircuitPython_Quick_Starts/CircuitPython_Internal_RGB_LED_rainbow/code.py index 5c2758207..e71fc5eaf 100644 --- a/CircuitPython_Quick_Starts/CircuitPython_Internal_RGB_LED_rainbow/code.py +++ b/CircuitPython_Quick_Starts/CircuitPython_Internal_RGB_LED_rainbow/code.py @@ -1,3 +1,7 @@ +# SPDX-FileCopyrightText: 2018 Kattni Rembor for Adafruit Industries +# +# SPDX-License-Identifier: MIT + import time from rainbowio import colorwheel import adafruit_dotstar diff --git a/CircuitPython_Quick_Starts/CircuitPython_Servo/code.py b/CircuitPython_Quick_Starts/CircuitPython_Servo/code.py index 00c0bfed5..8181835df 100644 --- a/CircuitPython_Quick_Starts/CircuitPython_Servo/code.py +++ b/CircuitPython_Quick_Starts/CircuitPython_Servo/code.py @@ -1,3 +1,7 @@ +# SPDX-FileCopyrightText: 2018 Kattni Rembor for Adafruit Industries +# +# SPDX-License-Identifier: MIT + import time import board diff --git a/CircuitPython_Quick_Starts/CircuitPython_UART/code.py b/CircuitPython_Quick_Starts/CircuitPython_UART/code.py index c05e50dce..eb0bff3ef 100644 --- a/CircuitPython_Quick_Starts/CircuitPython_UART/code.py +++ b/CircuitPython_Quick_Starts/CircuitPython_UART/code.py @@ -1,3 +1,7 @@ +# SPDX-FileCopyrightText: 2018 Kattni Rembor for Adafruit Industries +# +# SPDX-License-Identifier: MIT + # CircuitPython Demo - USB/Serial echo import board diff --git a/Flora_Brakelight_Backpack/Flora_Brakelight_Backpack/Flora_Brakelight_Backpack.ino b/Flora_Brakelight_Backpack/Flora_Brakelight_Backpack/Flora_Brakelight_Backpack.ino index 2c8926ab0..bf3a790a6 100644 --- a/Flora_Brakelight_Backpack/Flora_Brakelight_Backpack/Flora_Brakelight_Backpack.ino +++ b/Flora_Brakelight_Backpack/Flora_Brakelight_Backpack/Flora_Brakelight_Backpack.ino @@ -1,3 +1,7 @@ +// SPDX-FileCopyrightText: 2019 Anne Barela for Adafruit Industries +// +// SPDX-License-Identifier: MIT + #include #include #include diff --git a/Matrix_Quote_Board/code.py b/Matrix_Quote_Board/code.py index df7bb0612..c2f78b54c 100644 --- a/Matrix_Quote_Board/code.py +++ b/Matrix_Quote_Board/code.py @@ -1,3 +1,7 @@ +# SPDX-FileCopyrightText: 2020 John Park for Adafruit Industries +# +# SPDX-License-Identifier: MIT + # Quote board matrix display # uses AdafruitIO to serve up a quote text feed and color feed # random quotes are displayed, updates periodically to look for new quotes diff --git a/Mini_LED_Gamer/Mini_LED_Gamer/HT16K33.cpp b/Mini_LED_Gamer/Mini_LED_Gamer/HT16K33.cpp index 7c2011b71..3888f22b7 100644 --- a/Mini_LED_Gamer/Mini_LED_Gamer/HT16K33.cpp +++ b/Mini_LED_Gamer/Mini_LED_Gamer/HT16K33.cpp @@ -1,3 +1,7 @@ +// SPDX-FileCopyrightText: 2019 Anne Barela for Adafruit Industries +// +// SPDX-License-Identifier: MIT + #include "i2c.h" #include "HT16K33.h" diff --git a/Mini_LED_Gamer/Mini_LED_Gamer/HT16K33.h b/Mini_LED_Gamer/Mini_LED_Gamer/HT16K33.h index f8ff15f77..ca1b8dde3 100644 --- a/Mini_LED_Gamer/Mini_LED_Gamer/HT16K33.h +++ b/Mini_LED_Gamer/Mini_LED_Gamer/HT16K33.h @@ -1,3 +1,7 @@ +// SPDX-FileCopyrightText: 2019 Anne Barela for Adafruit Industries +// +// SPDX-License-Identifier: MIT + #include "Arduino.h" #define DISP_REGISTER 0x00 diff --git a/Mini_LED_Gamer/Mini_LED_Gamer/Menu.cpp b/Mini_LED_Gamer/Mini_LED_Gamer/Menu.cpp index 470436b07..0e8bc9956 100644 --- a/Mini_LED_Gamer/Mini_LED_Gamer/Menu.cpp +++ b/Mini_LED_Gamer/Mini_LED_Gamer/Menu.cpp @@ -1,3 +1,7 @@ +// SPDX-FileCopyrightText: 2019 Anne Barela for Adafruit Industries +// +// SPDX-License-Identifier: MIT + #include extern uint8_t mode; diff --git a/Mini_LED_Gamer/Mini_LED_Gamer/Mini_LED_Gamer.ino b/Mini_LED_Gamer/Mini_LED_Gamer/Mini_LED_Gamer.ino index 967fa33a2..a632b2389 100644 --- a/Mini_LED_Gamer/Mini_LED_Gamer/Mini_LED_Gamer.ino +++ b/Mini_LED_Gamer/Mini_LED_Gamer/Mini_LED_Gamer.ino @@ -1,3 +1,7 @@ +// SPDX-FileCopyrightText: 2019 Anne Barela for Adafruit Industries +// +// SPDX-License-Identifier: MIT + #include "HT16K33.h" #include "Tetris.h" #include "Snake.h" diff --git a/Mini_LED_Gamer/Mini_LED_Gamer/Paint.cpp b/Mini_LED_Gamer/Mini_LED_Gamer/Paint.cpp index f8b56486c..c569f4189 100644 --- a/Mini_LED_Gamer/Mini_LED_Gamer/Paint.cpp +++ b/Mini_LED_Gamer/Mini_LED_Gamer/Paint.cpp @@ -1,3 +1,7 @@ +// SPDX-FileCopyrightText: 2019 Anne Barela for Adafruit Industries +// +// SPDX-License-Identifier: MIT + #include "Paint.h" Paint::Paint(int8_t x, int8_t y){ diff --git a/Mini_LED_Gamer/Mini_LED_Gamer/Paint.h b/Mini_LED_Gamer/Mini_LED_Gamer/Paint.h index 83d80120d..faddbda46 100644 --- a/Mini_LED_Gamer/Mini_LED_Gamer/Paint.h +++ b/Mini_LED_Gamer/Mini_LED_Gamer/Paint.h @@ -1,3 +1,7 @@ +// SPDX-FileCopyrightText: 2019 Anne Barela for Adafruit Industries +// +// SPDX-License-Identifier: MIT + #include "Arduino.h" // display size information diff --git a/Mini_LED_Gamer/Mini_LED_Gamer/Snake.cpp b/Mini_LED_Gamer/Mini_LED_Gamer/Snake.cpp index fa18d2be4..c0efa72b0 100644 --- a/Mini_LED_Gamer/Mini_LED_Gamer/Snake.cpp +++ b/Mini_LED_Gamer/Mini_LED_Gamer/Snake.cpp @@ -1,3 +1,7 @@ +// SPDX-FileCopyrightText: 2019 Anne Barela for Adafruit Industries +// +// SPDX-License-Identifier: MIT + #include "Snake.h" void Snake::run() { diff --git a/Mini_LED_Gamer/Mini_LED_Gamer/Snake.h b/Mini_LED_Gamer/Mini_LED_Gamer/Snake.h index 89d7619e8..c526b0fa3 100644 --- a/Mini_LED_Gamer/Mini_LED_Gamer/Snake.h +++ b/Mini_LED_Gamer/Mini_LED_Gamer/Snake.h @@ -1,3 +1,7 @@ +// SPDX-FileCopyrightText: 2019 Anne Barela for Adafruit Industries +// +// SPDX-License-Identifier: MIT + #include "Arduino.h" class Snake { diff --git a/Mini_LED_Gamer/Mini_LED_Gamer/Tetris.cpp b/Mini_LED_Gamer/Mini_LED_Gamer/Tetris.cpp index f69269a5a..08491e378 100644 --- a/Mini_LED_Gamer/Mini_LED_Gamer/Tetris.cpp +++ b/Mini_LED_Gamer/Mini_LED_Gamer/Tetris.cpp @@ -1,3 +1,7 @@ +// SPDX-FileCopyrightText: 2019 Anne Barela for Adafruit Industries +// +// SPDX-License-Identifier: MIT + #include "Tetris.h" #include "Tetris_Tetrominoes.h" diff --git a/Mini_LED_Gamer/Mini_LED_Gamer/Tetris.h b/Mini_LED_Gamer/Mini_LED_Gamer/Tetris.h index 7f8ab4542..30d303d01 100644 --- a/Mini_LED_Gamer/Mini_LED_Gamer/Tetris.h +++ b/Mini_LED_Gamer/Mini_LED_Gamer/Tetris.h @@ -1,3 +1,7 @@ +// SPDX-FileCopyrightText: 2019 Anne Barela for Adafruit Industries +// +// SPDX-License-Identifier: MIT + #include "Arduino.h" // display size information diff --git a/Mini_LED_Gamer/Mini_LED_Gamer/Tetris_Tetrominoes.h b/Mini_LED_Gamer/Mini_LED_Gamer/Tetris_Tetrominoes.h index f7ce884b6..db8b7a2b8 100644 --- a/Mini_LED_Gamer/Mini_LED_Gamer/Tetris_Tetrominoes.h +++ b/Mini_LED_Gamer/Mini_LED_Gamer/Tetris_Tetrominoes.h @@ -1,3 +1,7 @@ +// SPDX-FileCopyrightText: 2019 Anne Barela for Adafruit Industries +// +// SPDX-License-Identifier: MIT + const uint8_t Z0[4] = { B00000000, B00000000, diff --git a/Mini_LED_Gamer/Mini_LED_Gamer/i2c.h b/Mini_LED_Gamer/Mini_LED_Gamer/i2c.h index 33c68914c..ab7e592a5 100644 --- a/Mini_LED_Gamer/Mini_LED_Gamer/i2c.h +++ b/Mini_LED_Gamer/Mini_LED_Gamer/i2c.h @@ -1,3 +1,7 @@ +// SPDX-FileCopyrightText: 2019 Anne Barela for Adafruit Industries +// +// SPDX-License-Identifier: MIT + // This library provides the high-level functions needed to use the I2C // serial interface supported by the hardware of several AVR processors. #ifndef i2c_h diff --git a/PyPortal_Titano_Weather_Station/calendar.py b/PyPortal_Titano_Weather_Station/calendar.py index dc7c0e1d7..06adbd4d6 100644 --- a/PyPortal_Titano_Weather_Station/calendar.py +++ b/PyPortal_Titano_Weather_Station/calendar.py @@ -1,3 +1,7 @@ +# SPDX-FileCopyrightText: 2020 Liz Clark for Adafruit Industries +# +# SPDX-License-Identifier: MIT + alarms = { 'bed' : '10:00 PM', 'breakfast' : '8:00 AM', diff --git a/PyPortal_Titano_Weather_Station/code.py b/PyPortal_Titano_Weather_Station/code.py index 87b33de3c..bf8041eb7 100644 --- a/PyPortal_Titano_Weather_Station/code.py +++ b/PyPortal_Titano_Weather_Station/code.py @@ -1,3 +1,7 @@ +# SPDX-FileCopyrightText: 2020 Liz Clark for Adafruit Industries +# +# SPDX-License-Identifier: MIT + import time from calendar import alarms from calendar import timers diff --git a/PyPortal_Titano_Weather_Station/openweather_graphics.py b/PyPortal_Titano_Weather_Station/openweather_graphics.py index d8a08db7e..3aa815737 100644 --- a/PyPortal_Titano_Weather_Station/openweather_graphics.py +++ b/PyPortal_Titano_Weather_Station/openweather_graphics.py @@ -1,3 +1,8 @@ +# SPDX-FileCopyrightText: 2019 Limor Fried for Adafruit Industries +# SPDX-FileCopyrightText: 2020 Liz Clark for Adafruit Industries +# +# SPDX-License-Identifier: MIT + import time import json from calendar import holidays diff --git a/PyPortal_Titano_Weather_Station/secrets.py b/PyPortal_Titano_Weather_Station/secrets.py index 913fc163e..dd41b82bf 100644 --- a/PyPortal_Titano_Weather_Station/secrets.py +++ b/PyPortal_Titano_Weather_Station/secrets.py @@ -1,3 +1,7 @@ +# SPDX-FileCopyrightText: 2020 Liz Clark for Adafruit Industries +# +# SPDX-License-Identifier: MIT + # This file is where you keep secret settings, passwords, and tokens! # If you put them in the code you risk committing that info or sharing it