From cdde977ae93d91cb6181c44f213ab223e4615ee8 Mon Sep 17 00:00:00 2001 From: dherrada Date: Fri, 18 Feb 2022 17:22:12 -0500 Subject: [PATCH] Added SPDX to 20 more files - spdx-9 --- Ambient_Color_Control_Pad/code.py | 4 ++++ CLUE_Purse_Slideshow/code.py | 4 ++++ CLUE_plenbit_demo/code.py | 4 ++++ Chirping_Plush_Owl_Toy/Chirping_Plush_Owl_Toy.ino | 7 ++++++- Chirping_Plush_Owl_Toy/code.py | 5 +++++ Crickit_Sparky_Automaton/code.py | 4 ++++ Custom_Magstripe_Swiper/code/code.ino | 4 ++++ HAL-9000/code.py | 4 ++++ Introducing_Feather_M0_Express/code.py | 4 ++++ MagTag_Kitchen_Timer/code.py | 4 ++++ Mini_Chair_Swing_Ride/code.py | 4 ++++ .../code_servo_without_sleep/code.py | 4 ++++ NeoPixel_Cyber_Falls_Wig/NeoPixel_Cyber_Falls_Wig.ino | 4 ++++ NeoPixel_Cyber_Falls_Wig/code.py | 4 ++++ Nextmind_Unity_Control/Nextmind_Unity_Control.ino | 4 ++++ PyPortal_OpenWeather/code.py | 4 ++++ PyPortal_OpenWeather/openweather_graphics.py | 4 ++++ Ratcatcher_CPX/code.py | 4 ++++ Rotary_Encoder/rotary_encoder/code.py | 4 ++++ Rotary_Encoder/rotary_encoder_volume/code.py | 4 ++++ 20 files changed, 83 insertions(+), 1 deletion(-) diff --git a/Ambient_Color_Control_Pad/code.py b/Ambient_Color_Control_Pad/code.py index b74641e6b..9bb046599 100644 --- a/Ambient_Color_Control_Pad/code.py +++ b/Ambient_Color_Control_Pad/code.py @@ -1,3 +1,7 @@ +# SPDX-FileCopyrightText: 2018 John Edgar Park for Adafruit Industries +# +# SPDX-License-Identifier: MIT + # Ambient Color Control Pad # NeoTrellis to select colors of NeoPixel strip # NeoTrellis connected to Feather M4 (need the extra memory vs. M0) SCL, SDA diff --git a/CLUE_Purse_Slideshow/code.py b/CLUE_Purse_Slideshow/code.py index 86c55de2a..5a997d980 100644 --- a/CLUE_Purse_Slideshow/code.py +++ b/CLUE_Purse_Slideshow/code.py @@ -1,3 +1,7 @@ +# SPDX-FileCopyrightText: 2020 Anne Barela for Adafruit Industries +# +# SPDX-License-Identifier: MIT + # Bright Wearables Purse Slideshow with FancyLED # Anne Barela for Adafruit Industries, February 2020 # MIT License diff --git a/CLUE_plenbit_demo/code.py b/CLUE_plenbit_demo/code.py index c559fe368..fee4d8894 100644 --- a/CLUE_plenbit_demo/code.py +++ b/CLUE_plenbit_demo/code.py @@ -1,3 +1,7 @@ +# SPDX-FileCopyrightText: 2020 Limor Fried for Adafruit Industries +# +# SPDX-License-Identifier: MIT + import busio import board from digitalio import DigitalInOut, Direction diff --git a/Chirping_Plush_Owl_Toy/Chirping_Plush_Owl_Toy.ino b/Chirping_Plush_Owl_Toy/Chirping_Plush_Owl_Toy.ino index a76b41148..4f2811dee 100644 --- a/Chirping_Plush_Owl_Toy/Chirping_Plush_Owl_Toy.ino +++ b/Chirping_Plush_Owl_Toy/Chirping_Plush_Owl_Toy.ino @@ -1,3 +1,8 @@ +// SPDX-FileCopyrightText: 2018 Becky Stern for Adafruit Industries +// SPDX-FileCopyrightText: 2018 T Main for Adafruit Industries +// +// SPDX-License-Identifier: MIT + /* Chirp Owl written by Becky Stern and T Main for Adafruit Industries Tutorial: http://learn.adafruit.com/chirping-plush-owl-toy/ @@ -146,4 +151,4 @@ void arf() { // dog arf playTone(i,5); playTone(4545,80); // intermediate playTone(12200,70); // "ff" (shorter, hard to do) -} \ No newline at end of file +} diff --git a/Chirping_Plush_Owl_Toy/code.py b/Chirping_Plush_Owl_Toy/code.py index 0605c34bc..4bcb56592 100644 --- a/Chirping_Plush_Owl_Toy/code.py +++ b/Chirping_Plush_Owl_Toy/code.py @@ -1,3 +1,8 @@ +# SPDX-FileCopyrightText: 2018 Becky Stern for Adafruit Industries +# SPDX-FileCopyrightText: 2018 T Main for Adafruit Industries +# +# SPDX-License-Identifier: MIT + # Chirp Owl written by Becky Stern and T Main for Adafruit Industries # Tutorial: http://learn.adafruit.com/chirping-plush-owl-toy/ diff --git a/Crickit_Sparky_Automaton/code.py b/Crickit_Sparky_Automaton/code.py index 81f8669fb..bba9d500f 100644 --- a/Crickit_Sparky_Automaton/code.py +++ b/Crickit_Sparky_Automaton/code.py @@ -1,3 +1,7 @@ +# SPDX-FileCopyrightText: 2018 Limor Fried for Adafruit Industries +# +# SPDX-License-Identifier: MIT + import os import time import random diff --git a/Custom_Magstripe_Swiper/code/code.ino b/Custom_Magstripe_Swiper/code/code.ino index 89cc6e2bd..3c0207420 100644 --- a/Custom_Magstripe_Swiper/code/code.ino +++ b/Custom_Magstripe_Swiper/code/code.ino @@ -1,3 +1,7 @@ +// SPDX-FileCopyrightText: 2019 Anne Barela for Adafruit Industries +// +// SPDX-License-Identifier: MIT + #define PIEZO 3 #define CLOCK2 10 #define DATA2 9 diff --git a/HAL-9000/code.py b/HAL-9000/code.py index fc55b3cbf..3e45e4e9f 100644 --- a/HAL-9000/code.py +++ b/HAL-9000/code.py @@ -1,3 +1,7 @@ +# SPDX-FileCopyrightText: 2018 Anne Barela for Adafruit Industries +# +# SPDX-License-Identifier: MIT + import os import random import time diff --git a/Introducing_Feather_M0_Express/code.py b/Introducing_Feather_M0_Express/code.py index 349fee7d6..543a9e293 100755 --- a/Introducing_Feather_M0_Express/code.py +++ b/Introducing_Feather_M0_Express/code.py @@ -1,3 +1,7 @@ +# SPDX-FileCopyrightText: 2018 Kattni Rembor for Adafruit Industries +# +# SPDX-License-Identifier: MIT + import board import analogio diff --git a/MagTag_Kitchen_Timer/code.py b/MagTag_Kitchen_Timer/code.py index 526488a82..88a402849 100644 --- a/MagTag_Kitchen_Timer/code.py +++ b/MagTag_Kitchen_Timer/code.py @@ -1,3 +1,7 @@ +# SPDX-FileCopyrightText: 2020 Eva Herrada for Adafruit Industries +# +# SPDX-License-Identifier: MIT + import time import terminalio from adafruit_magtag.magtag import MagTag diff --git a/Mini_Chair_Swing_Ride/code.py b/Mini_Chair_Swing_Ride/code.py index 46b4b21d4..cc25480e3 100644 --- a/Mini_Chair_Swing_Ride/code.py +++ b/Mini_Chair_Swing_Ride/code.py @@ -1,3 +1,7 @@ +# SPDX-FileCopyrightText: 2018 Anne Barela for Adafruit Industries +# +# SPDX-License-Identifier: MIT + # Isaac Wellish # Code adapted from Anne Barela's Hello World of Robotics and # Make it Move with Crickit guides at learn.adafruit.com diff --git a/Multitasking_with_CircuitPython/code_servo_without_sleep/code.py b/Multitasking_with_CircuitPython/code_servo_without_sleep/code.py index 1496a13d8..488706dc9 100644 --- a/Multitasking_with_CircuitPython/code_servo_without_sleep/code.py +++ b/Multitasking_with_CircuitPython/code_servo_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 sweep servo(s) without using time.sleep(). diff --git a/NeoPixel_Cyber_Falls_Wig/NeoPixel_Cyber_Falls_Wig.ino b/NeoPixel_Cyber_Falls_Wig/NeoPixel_Cyber_Falls_Wig.ino index b1b5520a4..1c88e6217 100644 --- a/NeoPixel_Cyber_Falls_Wig/NeoPixel_Cyber_Falls_Wig.ino +++ b/NeoPixel_Cyber_Falls_Wig/NeoPixel_Cyber_Falls_Wig.ino @@ -1,3 +1,7 @@ +// SPDX-FileCopyrightText: 2018 Mikey Sklar for Adafruit Industries +// +// SPDX-License-Identifier: MIT + // 'Cyber falls' sketch, adapted from code for Firewalker sneakers. // Creates a fiery rain-like effect on multiple NeoPixel strips. // Requires Adafruit Trinket and NeoPixel strips. Strip length is diff --git a/NeoPixel_Cyber_Falls_Wig/code.py b/NeoPixel_Cyber_Falls_Wig/code.py index 6e754a538..efdb70bb6 100644 --- a/NeoPixel_Cyber_Falls_Wig/code.py +++ b/NeoPixel_Cyber_Falls_Wig/code.py @@ -1,3 +1,7 @@ +# SPDX-FileCopyrightText: 2018 Mikey Sklar for Adafruit Industries +# +# SPDX-License-Identifier: MIT + # 'Cyber falls' sketch # Creates a fiery rain-like effect on multiple NeoPixel strips. # Requires Adafruit Trinket and NeoPixel strips. Strip length is diff --git a/Nextmind_Unity_Control/Nextmind_Unity_Control.ino b/Nextmind_Unity_Control/Nextmind_Unity_Control.ino index bd8f6498a..61204f972 100644 --- a/Nextmind_Unity_Control/Nextmind_Unity_Control.ino +++ b/Nextmind_Unity_Control/Nextmind_Unity_Control.ino @@ -1,3 +1,7 @@ +// SPDX-FileCopyrightText: 2021 Collin Cunningham for Adafruit Industries +// +// SPDX-License-Identifier: MIT + #include Servo servo; diff --git a/PyPortal_OpenWeather/code.py b/PyPortal_OpenWeather/code.py index 89fee07fc..b9b2299b1 100644 --- a/PyPortal_OpenWeather/code.py +++ b/PyPortal_OpenWeather/code.py @@ -1,3 +1,7 @@ +# SPDX-FileCopyrightText: 2019 Limor Fried for Adafruit Industries +# +# SPDX-License-Identifier: MIT + """ This example queries the Open Weather Maps site API to find out the current weather for your location... and display it on a screen! diff --git a/PyPortal_OpenWeather/openweather_graphics.py b/PyPortal_OpenWeather/openweather_graphics.py index 5d6a3abd5..5cd8376f7 100644 --- a/PyPortal_OpenWeather/openweather_graphics.py +++ b/PyPortal_OpenWeather/openweather_graphics.py @@ -1,3 +1,7 @@ +# SPDX-FileCopyrightText: 2019 Limor Fried for Adafruit Industries +# +# SPDX-License-Identifier: MIT + import time import json import displayio diff --git a/Ratcatcher_CPX/code.py b/Ratcatcher_CPX/code.py index 3a396a37a..07111e04a 100644 --- a/Ratcatcher_CPX/code.py +++ b/Ratcatcher_CPX/code.py @@ -1,3 +1,7 @@ +# SPDX-FileCopyrightText: 2021 Noe Ruiz for Adafruit Industries +# +# SPDX-License-Identifier: MIT + import board import neopixel from adafruit_led_animation.animation.pulse import Pulse diff --git a/Rotary_Encoder/rotary_encoder/code.py b/Rotary_Encoder/rotary_encoder/code.py index 10824526d..e73a20b17 100755 --- a/Rotary_Encoder/rotary_encoder/code.py +++ b/Rotary_Encoder/rotary_encoder/code.py @@ -1,3 +1,7 @@ +# SPDX-FileCopyrightText: 2018 Kattni Rembor for Adafruit Industries +# +# SPDX-License-Identifier: MIT + import rotaryio import board diff --git a/Rotary_Encoder/rotary_encoder_volume/code.py b/Rotary_Encoder/rotary_encoder_volume/code.py index 52a8664fa..996728b55 100755 --- a/Rotary_Encoder/rotary_encoder_volume/code.py +++ b/Rotary_Encoder/rotary_encoder_volume/code.py @@ -1,3 +1,7 @@ +# SPDX-FileCopyrightText: 2018 Kattni Rembor for Adafruit Industries +# +# SPDX-License-Identifier: MIT + import rotaryio import board import digitalio