Skip to content

Commit f4bfab5

Browse files
authored
Merge pull request #1878 from dherrada/spdx_-4
PR -4 - Added copyright info to 10 more projects
2 parents 8d8edc8 + e6c16bd commit f4bfab5

File tree

15 files changed

+60
-0
lines changed

15 files changed

+60
-0
lines changed

Turtle_BLE_CPB_Crickit_Rover/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 Park for Adafruit Industries
2+
#
3+
# SPDX-License-Identifier: MIT
4+
15
# Circuit Playground Bluefruit Rover
26
# Use with the Adafruit BlueFruit LE Connect app
37
# Works with CircuitPython 5.0.0-beta.0 and later

Twitch_On_Air_Sign/ESP8266_OnAirSign/ESP8266_OnAirSign.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
/*
26
* Simple HTTP get webclient test
37
*/

Twitch_On_Air_Sign/WINC1500_OnAirSign/WINC1500_OnAirSign.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
#include <SPI.h>
26
#include <WiFi101.h>
37
#include <Adafruit_NeoPixel.h>

Twitter_API/code.py

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
# SPDX-FileCopyrightText: 2019 Dave Astels for Adafruit Industries
2+
#
3+
# SPDX-License-Identifier: MIT
4+
15
"""
26
Twitter API for PyPortal.
37

USB_NeXT_Keyboard/USB_NeXT_Keyboard/USB_NeXT_Keyboard.ino

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
// SPDX-FileCopyrightText: 2019 Limor Fried/ladyada for Adafruit Industries
2+
//
3+
// SPDX-License-Identifier: BSD
4+
15
// NeXT non-ADB Keyboard to USB converter
26
// This will take an older NeXT keyboard, talk to it, and turn the keycodes into a USB keyboard
37
// Requires an Arduino Micro for the USB portion - but could be ported to another micro fairly easily

USB_NeXT_Keyboard/USB_NeXT_Keyboard/nextkeyboard.h

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
// SPDX-FileCopyrightText: 1997 Juergen Hannken-Illjes for The NetBSD Foundation
2+
//
3+
// SPDX-License-Identifier: Berkeley
4+
15
#include "wsksymdef.h"
26

37
/* $NetBSD: wskbdmap_next.c,v 1.5 2008/04/28 20:23:30 martin Exp $ */

USB_NeXT_Keyboard/USB_NeXT_Keyboard/wsksymdef.h

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
// SPDX-FileCopyrightText: 1997 Juergen Hannken-Illjes for The NetBSD Foundation
2+
//
3+
// SPDX-License-Identifier: Berkeley
4+
15
/* $OpenBSD: wsksymdef.h,v 1.32 2008/06/26 05:42:19 ray Exp $ */
26
/* $NetBSD: wsksymdef.h,v 1.34.4.1 2000/07/07 09:49:54 hannken Exp $ */
37

USB_SNES_Gamepad/teensySNES_Portal/teensySNES_Portal.ino

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
// SPDX-FileCopyrightText: 2019 Anne Barela for Adafruit Industries
2+
//
3+
// SPDX-License-Identifier: MIT
4+
15
const int pinAnalogXInput = 3;
26
const int pinAnalogYInput = 1;
37
const int pinAnalogZInput = 2;

USB_SNES_Gamepad/teensySNES_onebutton/teensySNES_onebutton.ino

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
// SPDX-FileCopyrightText: 2019 Limor Fried/ladyada for Adafruit Industries
2+
//
3+
// SPDX-License-Identifier: MIT
4+
15
const int pinBtnUp = 0;
26

37
const int pinLEDOutput = 11;

USB_SNES_Gamepad/teensySNES_stellakey/teensySNES_stellakey.ino

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
// SPDX-FileCopyrightText: 2019 Limor Fried/ladyada for Adafruit Industries
2+
//
3+
// SPDX-License-Identifier: MIT
4+
15
#define KEYREPEAT 85 // delay when repeating characters
26
#define KEYDELAY 200 // delay from first to second character
37
const int pinAnalogXInput = 3;

USB_SNES_Gamepad/teensySNES_test1/teensySNES_test1.ino

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
// SPDX-FileCopyrightText: 2019 Limor Fried/ladyada for Adafruit Industries
2+
//
3+
// SPDX-License-Identifier: MIT
4+
15
#define REPEATRATE 100 // milliseconds
26

37
const int pinBtnUp = 0;

USB_SNES_Gamepad/teensySNES_test2/teensySNES_test2.ino

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
// SPDX-FileCopyrightText: 2019 Anne Barela for Adafruit Industries
2+
//
3+
// SPDX-License-Identifier: MIT
4+
15
const int pinAnalogXInput = 3;
26
const int pinAnalogYInput = 1;
37
const int pinAnalogZInput = 2;

Ukulele/code.py

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
# SPDX-FileCopyrightText: 2020 Erin St. Blaine for Adafruit Industries
2+
#
3+
# SPDX-License-Identifier: MIT
4+
15
"""
26
LED Ukulele with Feather Sense and PropMaker Wing
37
Adafruit invests time and resources providing this open source code.

UnicornHorn_CapacitiveTouch/UnicornHorn_CapacitiveTouch.ino

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
// SPDX-FileCopyrightText: 2018 Erin St. Blaine for Adafruit Industries
2+
//
3+
// SPDX-License-Identifier: MIT
4+
15
#include "Adafruit_FreeTouch.h"
26
#include "FastLED.h"
37

VOTE_Keyboard/code.py

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
# SPDX-FileCopyrightText: 2020 Collin Cunningham for Adafruit Industries
2+
#
3+
# SPDX-License-Identifier: MIT
4+
15
import board
26
from digitalio import DigitalInOut, Direction, Pull
37
import usb_hid

0 commit comments

Comments
 (0)