Merge pull request #2085 from adafruit/spdx-50

Added SPDX to 30 more files - spdx-50
This commit is contained in:
Anne Barela 2022-03-01 17:38:08 -05:00 committed by GitHub
commit 89e4075844
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
30 changed files with 120 additions and 0 deletions

View file

@ -1,3 +1,7 @@
# SPDX-FileCopyrightText: 2019 John Edgar Park for Adafruit Industries
#
# SPDX-License-Identifier: MIT
# CircuitPython BLE Rover # CircuitPython BLE Rover
# Use with the Adafruit BlueFruit LE Connect app # Use with the Adafruit BlueFruit LE Connect app
# Works with CircuitPython 4.0.0-beta.1 and later # Works with CircuitPython 4.0.0-beta.1 and later

View file

@ -1,3 +1,7 @@
# SPDX-FileCopyrightText: 2019 Dan Halbert for Adafruit Industries
#
# SPDX-License-Identifier: MIT
# CircusPython! # CircusPython!
# For use with the Adafruit BlueFruit LE Connect app. # For use with the Adafruit BlueFruit LE Connect app.
# Works with CircuitPython 5.0.0-beta.0 and later running on an nRF52840 board. # Works with CircuitPython 5.0.0-beta.0 and later running on an nRF52840 board.

View file

@ -1,3 +1,7 @@
// SPDX-FileCopyrightText: 2021 John Park for Adafruit Industries
//
// SPDX-License-Identifier: MIT
//Wii Guitar Hero MIDI Controller //Wii Guitar Hero MIDI Controller
// by John Park for Adafruit Industries // by John Park for Adafruit Industries
#include <WiiChuck.h> #include <WiiChuck.h>

View file

@ -1,3 +1,7 @@
# SPDX-FileCopyrightText: 2017 Kattni Rembor for Adafruit Industries
#
# SPDX-License-Identifier: MIT
import time import time
from adafruit_circuitplayground.express import cpx from adafruit_circuitplayground.express import cpx

View file

@ -1,3 +1,7 @@
# SPDX-FileCopyrightText: 2018 Kattni Rembor for Adafruit Industries
#
# SPDX-License-Identifier: MIT
import time import time
from adafruit_circuitplayground.express import cpx from adafruit_circuitplayground.express import cpx

View file

@ -1,3 +1,7 @@
# SPDX-FileCopyrightText: 2017 Kattni Rembor for Adafruit Industries
#
# SPDX-License-Identifier: MIT
import time import time
from adafruit_circuitplayground.express import cpx from adafruit_circuitplayground.express import cpx

View file

@ -1,3 +1,7 @@
# SPDX-FileCopyrightText: 2018 Kattni Rembor for Adafruit Industries
#
# SPDX-License-Identifier: MIT
import time import time
from adafruit_circuitplayground.express import cpx from adafruit_circuitplayground.express import cpx

View file

@ -1,3 +1,7 @@
# SPDX-FileCopyrightText: 2018 Kattni Rembor for Adafruit Industries
#
# SPDX-License-Identifier: MIT
import adafruit_irremote import adafruit_irremote
import board import board
import neopixel import neopixel

View file

@ -1,3 +1,7 @@
# SPDX-FileCopyrightText: 2018 Kattni Rembor for Adafruit Industries
#
# SPDX-License-Identifier: MIT
import time import time
from rainbowio import colorwheel from rainbowio import colorwheel
from adafruit_circuitplayground.express import cpx from adafruit_circuitplayground.express import cpx

View file

@ -1,3 +1,7 @@
# SPDX-FileCopyrightText: 2018 Kattni Rembor for Adafruit Industries
#
# SPDX-License-Identifier: MIT
import time import time
from rainbowio import colorwheel from rainbowio import colorwheel
from adafruit_circuitplayground.express import cpx from adafruit_circuitplayground.express import cpx

View file

@ -1,3 +1,7 @@
# SPDX-FileCopyrightText: 2018 Kattni Rembor for Adafruit Industries
#
# SPDX-License-Identifier: MIT
from adafruit_circuitplayground.express import cpx from adafruit_circuitplayground.express import cpx
touchpad_to_color = { touchpad_to_color = {

View file

@ -1,3 +1,7 @@
# SPDX-FileCopyrightText: 2018 Kattni Rembor for Adafruit Industries
#
# SPDX-License-Identifier: MIT
from adafruit_circuitplayground.express import cpx from adafruit_circuitplayground.express import cpx
while True: while True:

View file

@ -1,3 +1,7 @@
// SPDX-FileCopyrightText: 2017 Mikey Sklar for Adafruit Industries
//
// SPDX-License-Identifier: MIT
// Low power NeoPixel goggles example. Makes a nice blinky display // Low power NeoPixel goggles example. Makes a nice blinky display
// with just a few LEDs on at any time. // with just a few LEDs on at any time.

View file

@ -1,3 +1,7 @@
# SPDX-FileCopyrightText: 2017 Mikey Sklar for Adafruit Industries
#
# SPDX-License-Identifier: MIT
# #
# Kaleidoscope_Eyes_NeoPixel_LED_Goggles.py # Kaleidoscope_Eyes_NeoPixel_LED_Goggles.py
# #

View file

@ -1,3 +1,7 @@
# SPDX-FileCopyrightText: 2018 Anne Barela for Adafruit Industries
#
# SPDX-License-Identifier: MIT
import time import time
import board import board
from analogio import AnalogIn from analogio import AnalogIn

View file

@ -1,3 +1,7 @@
# SPDX-FileCopyrightText: 2018 Anne Barela for Adafruit Industries
#
# SPDX-License-Identifier: MIT
import time import time
import board import board
from analogio import AnalogIn from analogio import AnalogIn

View file

@ -1,3 +1,7 @@
// SPDX-FileCopyrightText: 2018 Anne Barela for Adafruit Industries
//
// SPDX-License-Identifier: MIT
// Simple read analog potentiometer on Circuit Playground Express or other board with pin change // Simple read analog potentiometer on Circuit Playground Express or other board with pin change
// Anne Barela for Adafruit Industries 9/2018 // Anne Barela for Adafruit Industries 9/2018

View file

@ -1,3 +1,7 @@
# SPDX-FileCopyrightText: 2018 Anne Barela for Adafruit Industries
#
# SPDX-License-Identifier: MIT
import time import time
import random import random
import audioio import audioio

View file

@ -1,3 +1,7 @@
# SPDX-FileCopyrightText: 2020 Liz Clark for Adafruit Industries
#
# SPDX-License-Identifier: MIT
import time import time
import board import board
import touchio import touchio

View file

@ -1,3 +1,7 @@
// SPDX-FileCopyrightText: 2017 Mikey Sklar for Adafruit Industries
//
// SPDX-License-Identifier: MIT
#include <Adafruit_NeoPixel.h> #include <Adafruit_NeoPixel.h>
#define PIN 1 #define PIN 1

View file

@ -1,3 +1,7 @@
# SPDX-FileCopyrightText: 2017 Mikey Sklar for Adafruit Industries
#
# SPDX-License-Identifier: MIT
import time import time
from rainbowio import colorwheel from rainbowio import colorwheel
import board import board

View file

@ -1,3 +1,7 @@
# SPDX-FileCopyrightText: 2019 Anne Barela for Adafruit Industries
#
# SPDX-License-Identifier: MIT
# NeoTrellis Soundbox Remix - CircuitPython # NeoTrellis Soundbox Remix - CircuitPython
# Noe and Pedro Ruiz, code by Anne Barela # Noe and Pedro Ruiz, code by Anne Barela
# for Adafruit Industries, MIT License # for Adafruit Industries, MIT License

View file

@ -1,3 +1,7 @@
# SPDX-FileCopyrightText: 2019 Limor Fried for Adafruit Industries
#
# SPDX-License-Identifier: MIT
""" """
This example will access the adafruit.io API, grab a number like active users This example will access the adafruit.io API, grab a number like active users
and io plus subscribers... and display it on a screen and io plus subscribers... and display it on a screen

View file

@ -1,3 +1,7 @@
# SPDX-FileCopyrightText: 2019 Dave Astels for Adafruit Industries
#
# SPDX-License-Identifier: MIT
""" """
PyPortal based alarm clock. PyPortal based alarm clock.

View file

@ -1,3 +1,7 @@
# SPDX-FileCopyrightText: 2019 Limor Fried for Adafruit Industries
#
# SPDX-License-Identifier: MIT
""" """
This example will figure out the current local time using the internet, and This example will figure out the current local time using the internet, and
then draw out a count-up clock since an event occurred! then draw out a count-up clock since an event occurred!

View file

@ -1,3 +1,7 @@
# SPDX-FileCopyrightText: 2021 Kattni Rembor for Adafruit Industries
#
# SPDX-License-Identifier: MIT
"""CircuitPython Digital Input Example for QT2040 Trinkey""" """CircuitPython Digital Input Example for QT2040 Trinkey"""
import board import board
import digitalio import digitalio

View file

@ -1,3 +1,7 @@
# SPDX-FileCopyrightText: 2021 Kattni Rembor for Adafruit Industries
#
# SPDX-License-Identifier: MIT
""" """
CircuitPython U2IF I2C QT2040 Trinkey Example CircuitPython U2IF I2C QT2040 Trinkey Example

View file

@ -1,3 +1,7 @@
# SPDX-FileCopyrightText: 2021 Kattni Rembor for Adafruit Industries
#
# SPDX-License-Identifier: MIT
"""CircuitPython U2IF Example for QT2040 Trinkey""" """CircuitPython U2IF Example for QT2040 Trinkey"""
import board import board
import digitalio import digitalio

View file

@ -1,3 +1,7 @@
# SPDX-FileCopyrightText: 2021 Noe Ruiz for Adafruit Industries
#
# SPDX-License-Identifier: MIT
import time import time
import digitalio import digitalio
import board import board

View file

@ -1,3 +1,7 @@
# SPDX-FileCopyrightText: 2019 Mikey Sklar for Adafruit Industries
#
# SPDX-License-Identifier: MIT
import time import time
import board import board
from imapclient import IMAPClient from imapclient import IMAPClient