Skip to content

Commit f948c68

Browse files
authored
Merge pull request #2082 from adafruit/spdx-47
Added SPDX to 30 more files - spdx-47
2 parents 7e589a5 + a2ad36a commit f948c68

File tree

30 files changed

+122
-0
lines changed
  • BLE_Crickit_Light_Switch
  • CLUE_Hand_Wash_Timer
  • Guardian_Robot_Zelda_BOTW/Trinket_Guardian_Sketch
  • Introducing_CircuitPlaygroundExpress
    • CircuitPlaygroundExpress_808_Drum_Machine
    • CircuitPlaygroundExpress_AnalogIn
    • CircuitPlaygroundExpress_AudioFiles_cpx
    • CircuitPlaygroundExpress_AudioFiles
    • CircuitPlaygroundExpress_AudioSine_cpx
    • CircuitPlaygroundExpress_AudioSine
    • CircuitPlaygroundExpress_Blinky_cpx
    • CircuitPlaygroundExpress_Blinky
    • CircuitPlaygroundExpress_CapTouch_cpx
    • CircuitPlaygroundExpress_CapTouch
    • CircuitPlaygroundExpress_DigitalIO_cpx
    • CircuitPlaygroundExpress_DigitalIO_example1_cpx
    • CircuitPlaygroundExpress_DigitalIO_example2_cpx
    • CircuitPlaygroundExpress_DigitalIO
    • CircuitPlaygroundExpress_HIDKeyboard
    • CircuitPlaygroundExpress_LightSensor_cpx
    • CircuitPlaygroundExpress_LightSensor
    • CircuitPlaygroundExpress_NeoPixel
    • CircuitPlaygroundExpress_Neopixel_cpx
    • CircuitPlaygroundExpress_SoundMeter
    • CircuitPlaygroundExpress_Temperature_cpx
    • CircuitPlaygroundExpress_Temperature
    • digitalio_lib
    • digitalio
  • MacroPad_Braille_Keycaps
  • Macropad_Dragon_Drop
  • PMS5003_Air_Quality_Sensor/PMS5003_CircuitPython

30 files changed

+122
-0
lines changed

BLE_Crickit_Light_Switch/code.py

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
# SPDX-FileCopyrightText: 2019 John Edgar Park for Adafruit Industries
2+
#
3+
# SPDX-License-Identifier: MIT
4+
15
# BLE Crickit Light Switch
26
# Use with the Adafruit BlueFruit LE Connect app
37
# Works with CircuitPython 5.0.0-beta.0 and later

CLUE_Hand_Wash_Timer/code.py

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
# SPDX-FileCopyrightText: 2020 John Park for Adafruit Industries
2+
#
3+
# SPDX-License-Identifier: MIT
4+
15
"""
26
Start a 20 second hand washing timer via proximity sensor.
37
Countdown the seconds with text and beeps.

Guardian_Robot_Zelda_BOTW/Trinket_Guardian_Sketch/Trinket_Guardian_Sketch.ino

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
// SPDX-FileCopyrightText: 2018 Limor Fried for Adafruit Industries
2+
//
3+
// SPDX-License-Identifier: MIT
4+
15
// Trinket Servo Monster sketch
26
// Hardware: Adafruit Trinket (3V or 5V), micro servo, LED + resistor
37
// Libraries: uses Adafruit_TiCoServo library to manage servo pulses,

Introducing_CircuitPlaygroundExpress/CircuitPlaygroundExpress_808_Drum_Machine/code.py

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
# SPDX-FileCopyrightText: 2019 Kattni Rembor for Adafruit Industries
2+
#
3+
# SPDX-License-Identifier: MIT
4+
15
# Circuit Playground 808 Drum machine
26
import time
37
import board

Introducing_CircuitPlaygroundExpress/CircuitPlaygroundExpress_AnalogIn/code.py

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
# SPDX-FileCopyrightText: 2017 John Edgar Park for Adafruit Industries
2+
#
3+
# SPDX-License-Identifier: MIT
4+
15
# Circuit Playground AnalogIn
26
# Reads the analog voltage level from a 10k potentiometer connected to GND, 3.3V, and pin A1
37
# and prints the results to the serial console.

Introducing_CircuitPlaygroundExpress/CircuitPlaygroundExpress_AudioFiles/code.py

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
# SPDX-FileCopyrightText: 2017 Limor Fried for Adafruit Industries
2+
#
3+
# SPDX-License-Identifier: MIT
4+
15
import board
26
import digitalio
37

Introducing_CircuitPlaygroundExpress/CircuitPlaygroundExpress_AudioFiles_cpx/code.py

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
# SPDX-FileCopyrightText: 2017 Kattni Rembor for Adafruit Industries
2+
#
3+
# SPDX-License-Identifier: MIT
4+
15
from adafruit_circuitplayground.express import cpx
26

37
while True:

Introducing_CircuitPlaygroundExpress/CircuitPlaygroundExpress_AudioSine/code.py

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
# SPDX-FileCopyrightText: 2017 Limor Fried for Adafruit Industries
2+
#
3+
# SPDX-License-Identifier: MIT
4+
15
import time
26
import array
37
import math
Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
# SPDX-FileCopyrightText: 2017 Kattni Rembor for Adafruit Industries
2+
#
3+
# SPDX-License-Identifier: MIT
4+
15
from adafruit_circuitplayground.express import cpx
26

37
cpx.play_tone(440, 1)

Introducing_CircuitPlaygroundExpress/CircuitPlaygroundExpress_Blinky/code.py

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
# SPDX-FileCopyrightText: 2017 John Edgar Park for Adafruit Industries
2+
#
3+
# SPDX-License-Identifier: MIT
4+
15
# CircuitPlaygroundExpress_Blinky
26

37
import time

0 commit comments

Comments
 (0)