Added SPDX to 30 more files - spdx-33

This commit is contained in:
dherrada 2022-02-23 13:25:24 -05:00
parent bfe5427a4a
commit 06982c0656
30 changed files with 120 additions and 0 deletions

View file

@ -1,3 +1,7 @@
// SPDX-FileCopyrightText: 2013 Limor Fried for Adafruit Industries
//
// SPDX-License-Identifier: MIT
/* /*
IMPORTANT: THIS SOFTWARE CURRENTLY DOES NOT WORK, and future IMPORTANT: THIS SOFTWARE CURRENTLY DOES NOT WORK, and future
status is uncertain. Twitter has changed their API to require status is uncertain. Twitter has changed their API to require

View file

@ -1,3 +1,7 @@
# SPDX-FileCopyrightText: 2020 Anne Barela for Adafruit Industries
#
# SPDX-License-Identifier: MIT
"""Bluetooth Key Tracker.""" """Bluetooth Key Tracker."""
from adafruit_ble import BLERadio from adafruit_ble import BLERadio
from adafruit_led_animation.animation import Pulse, Solid from adafruit_led_animation.animation import Pulse, Solid

View file

@ -1,3 +1,7 @@
# SPDX-FileCopyrightText: 2020 John Park for Adafruit Industries
#
# SPDX-License-Identifier: MIT
import time import time
import board import board
import displayio import displayio

View file

@ -1,3 +1,7 @@
# SPDX-FileCopyrightText: 2020 Melissa LeBlanc-Williams for Adafruit Industries
#
# SPDX-License-Identifier: MIT
""" """
This example queries the Open Weather Maps site API to find out the current This example queries the Open Weather Maps site API to find out the current
weather for your location... and display it on a eInk Bonnet! weather for your location... and display it on a eInk Bonnet!

View file

@ -1,3 +1,7 @@
# SPDX-FileCopyrightText: 2020 Melissa LeBlanc-Williams for Adafruit Industries
#
# SPDX-License-Identifier: MIT
from datetime import datetime from datetime import datetime
import json import json
from PIL import Image, ImageDraw, ImageFont from PIL import Image, ImageDraw, ImageFont

View file

@ -1,3 +1,7 @@
# SPDX-FileCopyrightText: 2021 Kattni Rembor for Adafruit Industries
#
# SPDX-License-Identifier: MIT
""" """
CircuitPython Digital Input Example - Blinking an LED using a button switch. CircuitPython Digital Input Example - Blinking an LED using a button switch.
""" """

View file

@ -1,3 +1,7 @@
// SPDX-FileCopyrightText: 2019 Anne Barela for Adafruit Industries
//
// SPDX-License-Identifier: MIT
// VCNL4010 code adapted from: // VCNL4010 code adapted from:
// https://github.com/adafruit/Adafruit_VCNL4010 // https://github.com/adafruit/Adafruit_VCNL4010
#ifndef ADAFRUIT_VCNL4010_H #ifndef ADAFRUIT_VCNL4010_H

View file

@ -1,3 +1,7 @@
// SPDX-FileCopyrightText: 2019 Anne Barela for Adafruit Industries
//
// SPDX-License-Identifier: MIT
// Adafruit 32u4 Feather Color Sensing Holiday Lights // Adafruit 32u4 Feather Color Sensing Holiday Lights
// See the full guide at: // See the full guide at:
// https://learn.adafruit.com/feather-holiday-lights/overview // https://learn.adafruit.com/feather-holiday-lights/overview

View file

@ -1,3 +1,7 @@
// SPDX-FileCopyrightText: 2018 Limor Fried for Adafruit Industries
//
// SPDX-License-Identifier: MIT
// COMMON SETTINGS // COMMON SETTINGS
// ---------------------------------------------------------------------------------------------- // ----------------------------------------------------------------------------------------------
// These settings are used in both SW UART, HW UART and SPI mode // These settings are used in both SW UART, HW UART and SPI mode

View file

@ -1,3 +1,7 @@
// SPDX-FileCopyrightText: 2019 Tony DiCola for Adafruit Industries
//
// SPDX-License-Identifier: MIT
// Adafruit Bluefruit LE Feather Holiday Lights // Adafruit Bluefruit LE Feather Holiday Lights
// See the full guide at: // See the full guide at:
// https://learn.adafruit.com/feather-holiday-lights/overview // https://learn.adafruit.com/feather-holiday-lights/overview

View file

@ -1,3 +1,7 @@
// SPDX-FileCopyrightText: 2018 Limor Fried for Adafruit Industries
//
// SPDX-License-Identifier: MIT
#include <string.h> #include <string.h>
#include <Arduino.h> #include <Arduino.h>
#include <SPI.h> #include <SPI.h>

View file

@ -1,3 +1,7 @@
// SPDX-FileCopyrightText: 2017 Limor Fried for Adafruit Industries
//
// SPDX-License-Identifier: MIT
#include <Adafruit_Pixie.h> #include <Adafruit_Pixie.h>
#include "SoftwareSerial.h" #include "SoftwareSerial.h"
#include <Wire.h> #include <Wire.h>

View file

@ -1,3 +1,7 @@
// SPDX-FileCopyrightText: 2019 Anne Barela for Adafruit Industries
//
// SPDX-License-Identifier: MIT
// Test code for Adafruit Flora GPS modules // Test code for Adafruit Flora GPS modules
// //
// This code shows how to listen to the GPS module in an interrupt // This code shows how to listen to the GPS module in an interrupt

View file

@ -1,3 +1,7 @@
// SPDX-FileCopyrightText: 2018 Phillip Burgess for Adafruit Industries
//
// SPDX-License-Identifier: MIT
// "Googly eye" demo for Adafruit Hallowing. Uses accelerometer for // "Googly eye" demo for Adafruit Hallowing. Uses accelerometer for
// motion plus DMA and related shenanigans for smooth animation. // motion plus DMA and related shenanigans for smooth animation.

View file

@ -1,3 +1,7 @@
// SPDX-FileCopyrightText: 2018 Phillip Burgess for Adafruit Industries
//
// SPDX-License-Identifier: MIT
#define EYE_RADIUS 64.0 // Radius of eye, floating-point pixel units #define EYE_RADIUS 64.0 // Radius of eye, floating-point pixel units
const uint8_t borderData[128][128] = { const uint8_t borderData[128][128] = {

View file

@ -1,3 +1,7 @@
// SPDX-FileCopyrightText: 2018 Phillip Burgess for Adafruit Industries
//
// SPDX-License-Identifier: MIT
// CREEPY SPORTS MASCOT EYE // CREEPY SPORTS MASCOT EYE
#define COLOR_EYE #define COLOR_EYE

View file

@ -1,3 +1,7 @@
# SPDX-FileCopyrightText: 2019 Kattni Rembor for Adafruit Industries
#
# SPDX-License-Identifier: MIT
""" """
Code for ItsyBitsy nRF52840 Infinity Cube. Code for ItsyBitsy nRF52840 Infinity Cube.
""" """

View file

@ -1,3 +1,7 @@
# SPDX-FileCopyrightText: 2019 Mikey Sklar for Adafruit Industries
#
# SPDX-License-Identifier: MIT
import glob import glob
import time import time
import datetime import datetime

View file

@ -1,3 +1,7 @@
# SPDX-FileCopyrightText: 2020 Phillip Burgess for Adafruit Industries
#
# SPDX-License-Identifier: MIT
""" """
RASTER EYES for Adafruit Matrix Portal: animated spooky eyes. RASTER EYES for Adafruit Matrix Portal: animated spooky eyes.
""" """

View file

@ -1,3 +1,7 @@
# SPDX-FileCopyrightText: 2020 Phillip Burgess for Adafruit Industries
#
# SPDX-License-Identifier: MIT
""" Configuration data for the Adabot eyes """ """ Configuration data for the Adabot eyes """
EYE_PATH = __file__[:__file__.rfind('/') + 1] EYE_PATH = __file__[:__file__.rfind('/') + 1]
EYE_DATA = { EYE_DATA = {

View file

@ -1,3 +1,7 @@
# SPDX-FileCopyrightText: 2020 Phillip Burgess for Adafruit Industries
#
# SPDX-License-Identifier: MIT
""" Configuration data for the cyclops eye """ """ Configuration data for the cyclops eye """
EYE_PATH = __file__[:__file__.rfind('/') + 1] EYE_PATH = __file__[:__file__.rfind('/') + 1]
EYE_DATA = { EYE_DATA = {

View file

@ -1,3 +1,7 @@
# SPDX-FileCopyrightText: 2020 Phillip Burgess for Adafruit Industries
#
# SPDX-License-Identifier: MIT
""" Configuration data for the kobold eyes """ """ Configuration data for the kobold eyes """
EYE_PATH = __file__[:__file__.rfind('/') + 1] EYE_PATH = __file__[:__file__.rfind('/') + 1]
EYE_DATA = { EYE_DATA = {

View file

@ -1,3 +1,7 @@
# SPDX-FileCopyrightText: 2020 Phillip Burgess for Adafruit Industries
#
# SPDX-License-Identifier: MIT
""" Configuration data for the skull eyes """ """ Configuration data for the skull eyes """
# Photo by Lina White on Unsplash: https://unsplash.com/photos/K9nxgkYf-RI # Photo by Lina White on Unsplash: https://unsplash.com/photos/K9nxgkYf-RI
EYE_PATH = __file__[:__file__.rfind('/') + 1] EYE_PATH = __file__[:__file__.rfind('/') + 1]

View file

@ -1,3 +1,7 @@
# SPDX-FileCopyrightText: 2020 Phillip Burgess for Adafruit Industries
#
# SPDX-License-Identifier: MIT
""" Configuration data for the werewolf eyes """ """ Configuration data for the werewolf eyes """
EYE_PATH = __file__[:__file__.rfind('/') + 1] EYE_PATH = __file__[:__file__.rfind('/') + 1]
EYE_DATA = { EYE_DATA = {

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 countdown clock until an event occurs! then draw out a countdown clock until an event occurs!

View file

@ -1,3 +1,7 @@
# SPDX-FileCopyrightText: 2019 Limor Fried for Adafruit Industries
#
# SPDX-License-Identifier: MIT
""" """
This example will access the lastFM API, grab a number like subreddit followers This example will access the lastFM API, grab a number like subreddit followers
and display it on a screen and display it on a screen

View file

@ -1,3 +1,7 @@
# SPDX-FileCopyrightText: 2019 Limor Fried for Adafruit Industries
#
# SPDX-License-Identifier: MIT
import time import time
import board import board
from adafruit_pyportal import PyPortal from adafruit_pyportal import PyPortal

View file

@ -1,3 +1,7 @@
# SPDX-FileCopyrightText: 2019 Limor Fried for Adafruit Industries
#
# SPDX-License-Identifier: MIT
import time import time
import storage import storage

View file

@ -1,3 +1,7 @@
# SPDX-FileCopyrightText: 2018 Dave Astels for Adafruit Industries
#
# SPDX-License-Identifier: MIT
""" """
PyPortal UV Index display PyPortal UV Index display

View file

@ -1,3 +1,7 @@
# SPDX-FileCopyrightText: 2019 Kattni Rembor for Adafruit Industries
#
# SPDX-License-Identifier: MIT
# This file is where you keep secret settings, passwords, and tokens! # 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 # If you put them in the code you risk committing that info or sharing it