Skip to content

Commit 3899d61

Browse files
committed
PR -6 - Did 10 more projects
1 parent 9fe0885 commit 3899d61

File tree

20 files changed

+92
-0
lines changed

20 files changed

+92
-0
lines changed

TM_WebUSB_Sorter/TM_WebUSB_Sorter.ino

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
// SPDX-FileCopyrightText: 2020 Limor Fried/ladyada for Adafruit Industries
2+
//
3+
// SPDX-License-Identifier: MIT
4+
15
/* This sketch demonstrates WebUSB as web serial with browser with WebUSB support (e.g Chrome).
26
* For use with the Teachable Machine Tiny Sorter (and others!) project
37
* See https://learn.adafruit.com/using-webusb-with-arduino-and-tinyusb for

TalkieTrellis/TalkieTrellis.ino

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
// SPDX-FileCopyrightText: 2019 Phillip Burgess for Adafruit Industries
2+
//
3+
// SPDX-License-Identifier: MIT
4+
15
// Speak & Spell sound board for the Adafruit NeoTrellis M4.
26
// Requires the following libraries, install with Arduino Library Manager:
37
// - Adafruit_NeoTrellisM4

TalkieTrellis/words.h

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
// SPDX-FileCopyrightText: 2019 Phillip Burgess for Adafruit Industries
2+
//
3+
// SPDX-License-Identifier: MIT
4+
15
// Letters A through Z.
26
const uint8_t spA[] PROGMEM = {0x2B, 0xE5, 0x64, 0xA6, 0xDD, 0x73, 0x6F, 0xBA, 0xE9, 0xE6, 0x53, 0xB2, 0x53, 0xF5, 0x9E, 0x3A, 0xB7, 0xDC, 0x72, 0xCB, 0x29, 0xD5, 0x09, 0x5B, 0x6F, 0xED, 0x5B, 0x6E, 0xB9, 0xF9, 0x86, 0xED, 0xA6, 0xEB, 0xB6, 0xDA, 0x6C, 0xAD, 0x79};
37
const uint8_t spB[] PROGMEM = {0xA2, 0xC0, 0x58, 0xEE, 0x55, 0x91, 0x64, 0xE1, 0x85, 0x17, 0x9E, 0x8E, 0xF1, 0x5C, 0xDC, 0x27, 0x6B, 0x1E, 0x13, 0x18, 0x7B, 0x6E, 0x87, 0x3E, 0x26, 0x1A, 0x12, 0xBF, 0x8D, 0x72, 0x6C, 0x35, 0x42, 0x3A, 0x5B, 0xE5, 0xD8, 0x1A, 0x84, 0x64, 0x2F, 0xF6, 0x75, 0xD7, 0xDF, 0x70, 0xC3, 0x8D, 0x37, 0xDE, 0x78, 0xC3, 0x70, 0x89, 0x93, 0xDD, 0x26, 0xB5, 0x69, 0xA6, 0xF1, 0xE6, 0x01};

Techno_Tiki_RGB_LED_Torch/Techno_Tiki_Circuit_Playground_Express/Techno_Tiki_Circuit_Playground_Express.ino

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
// SPDX-FileCopyrightText: 2018 Tony DiCola for Adafruit Industries
2+
//
3+
// SPDX-License-Identifier: MIT
4+
15
// Techno-Tiki RGB LED Torch with IR Remote Control for Circuit Playground Express
26
// This version ONLY works with Circuit Playground Express boards:
37
// https://www.adafruit.com/product/3333

Techno_Tiki_RGB_LED_Torch/Techno_Tiki_Circuit_Playground_Express/code.py

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,8 @@
1+
# SPDX-FileCopyrightText: 2018 Tony DiCola for Adafruit Industries
2+
# SPDX-FileCopyrightText: 2018 Mikey Sklar for Adafruit Industries
3+
#
4+
# SPDX-License-Identifier: MIT
5+
16
# Techno-Tiki RGB LED Torch with IR Remote Control
27
# Created by Tony DiCola for Arduino
38
# Ported to CircuitPython by Mikey Sklar

Techno_Tiki_RGB_LED_Torch/Techno_Tiki_No_Remote_Control/Techno_Tiki_No_Remote_Control.ino

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,8 @@
1+
// SPDX-FileCopyrightText: 2018 Tony DiCola for Adafruit Industries
2+
// SPDX-FileCopyrightText: 2020 Erin St. Blaine for Adafruit Industries
3+
//
4+
// SPDX-License-Identifier: MIT
5+
16
// Techno-Tiki RGB LED Torch (without IR Remote Control)
27
// Created by Tony DiCola
38
//

Techno_Tiki_RGB_LED_Torch/Techno_Tiki_No_Remote_Control/code.py

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,8 @@
1+
# SPDX-FileCopyrightText: 2018 Mikey Sklar for Adafruit Industries
2+
# SPDX-FileCopyrightText: 2020 Erin St. Blaine for Adafruit Industries
3+
#
4+
# SPDX-License-Identifier: MIT
5+
16
import time
27
import board
38
import neopixel

Techno_Tiki_RGB_LED_Torch/Techno_Tiki_With_Remote_Control/Techno_Tiki_With_Remote_Control.ino

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,8 @@
1+
// SPDX-FileCopyrightText: 2018 Tony DiCola for Adafruit Industries
2+
// SPDX-FileCopyrightText: 2020 Erin St. Blaine for Adafruit Industries
3+
//
4+
// SPDX-License-Identifier: MIT
5+
16
// Techno-Tiki RGB LED Torch with IR Remote Control
27
// Created by Tony DiCola
38
//

Techno_Tiki_RGB_LED_Torch/Techno_Tiki_With_Remote_Control/code.py

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,9 @@
1+
# SPDX-FileCopyrightText: 2018 Tony DiCola for Adafruit Industries
2+
# SPDX-FileCopyrightText: 2018 Mikey Sklar for Adafruit Industries
3+
# SPDX-FileCopyrightText: 2020 Erin St. Blaine for Adafruit Industries
4+
#
5+
# SPDX-License-Identifier: MIT
6+
17
# Techno-Tiki RGB LED Torch with IR Remote Control
28
# Created by Tony DiCola for Arduino
39
# Ported to CircuitPython by Mikey Sklar

Temperature_GIF_Player/Temperature_GIF_Player.ino

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
// SPDX-FileCopyrightText: 2020 Limor Fried/ladyada for Adafruit Industries
2+
//
3+
// SPDX-License-Identifier: MIT
4+
15
// please read credits at the bottom of file
26

37
#include <Adafruit_Arcada.h>

Terrako_Robot/code.py

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
# SPDX-FileCopyrightText: 2021 Noe Ruiz for Adafruit Industries
2+
#
3+
# SPDX-License-Identifier: MIT
4+
15
"""
26
Guardian Egg Shoulder Robot with servo and NeoPixel ring
37
"""

Textile_Potentiometer_Hoodie/Textile_Potentiometer_Hoodie.ino

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
// SPDX-FileCopyrightText: 2017 Mikey Sklar for Adafruit Industries
2+
//
3+
// SPDX-License-Identifier: MIT
4+
15
#include <Adafruit_NeoPixel.h>
26

37
#define PIN 1

Textile_Potentiometer_Hoodie/code.py

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
# SPDX-FileCopyrightText: 2018 Mikey Sklar for Adafruit Industries
2+
#
3+
# SPDX-License-Identifier: MIT
4+
15
import analogio
26
import board
37
from rainbowio import colorwheel

TheThingsNetwork_Feather/code.py

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
# SPDX-FileCopyrightText: 2018 Brent Rubell for Adafruit Industries
2+
#
3+
# SPDX-License-Identifier: MIT
4+
15
"""Using TinyLoRa with a Si7021 Sensor.
26
"""
37
import time

TheThingsNetwork_Feather/ttn-featherm0-dht/ttn-featherm0-dht.ino

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,10 @@
1+
// SPDX-FileCopyrightText: 2015 Thomas Telkamp
2+
// SPDX-FileCopyrightText: 2015 Matthijs Kooijman
3+
// SPDX-FileCopyrightText: 2018 Terry Moore for MCCI
4+
// SPDX-FileCopyrightText: 2018 Brent Rubell for Adafruit Industries
5+
//
6+
// SPDX-License-Identifier: MIT
7+
18
/*******************************************************************************
29
* The Things Network - Sensor Data Example
310
*

TheThingsNetwork_Feather/ttn-otaa-feather-us915-dht22-OLED/ttn-otaa-feather-us915-dht22-OLED.ino

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,10 @@
1+
// SPDX-FileCopyrightText: 2015 Thomas Telkamp
2+
// SPDX-FileCopyrightText: 2015 Matthijs Kooijman
3+
// SPDX-FileCopyrightText: 2018 Terry Moore for MCCI
4+
// SPDX-FileCopyrightText: 2018 Brent Rubell for Adafruit Industries
5+
//
6+
// SPDX-License-Identifier: MIT
7+
18
/*******************************************************************************
29
* The Things Network - Sensor Data Example with OLED
310
*

Themistor/Example1/Example1.ino

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
// SPDX-FileCopyrightText: 2011 Limor Fried/ladyada for Adafruit Industries
2+
//
3+
// SPDX-License-Identifier: MIT
4+
15
// thermistor-1.ino Simple test program for a thermistor for Adafruit Learning System
26
// https://learn.adafruit.com/thermistor/using-a-thermistor by Limor Fried, Adafruit Industries
37
// MIT License - please keep attribution and consider buying parts from Adafruit

Themistor/Example2/Example2.ino

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
// SPDX-FileCopyrightText: 2011 Limor Fried/ladyada for Adafruit Industries
2+
//
3+
// SPDX-License-Identifier: MIT
4+
15
// thermistor-2.ino Intermediate test program for a thermistor. Adafruit Learning System Tutorial
26
// https://learn.adafruit.com/thermistor/using-a-thermistor by Limor Fried, Adafruit Industries
37
// MIT License - please keep attribution and please consider buying parts from Adafruit

Themistor/Example3/Example3.ino

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
// SPDX-FileCopyrightText: 2011 Limor Fried/ladyada for Adafruit Industries
2+
//
3+
// SPDX-License-Identifier: MIT
4+
15
// Thermistor Example #3 from the Adafruit Learning System guide on Thermistors
26
// https://learn.adafruit.com/thermistor/overview by Limor Fried, Adafruit Industries
37
// MIT License - please keep attribution and consider buying parts from Adafruit

Tightrope_Unicycle_Bot/code.py

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
# SPDX-FileCopyrightText: 2018 John Park for Adafruit Industries
2+
#
3+
# SPDX-License-Identifier: MIT
4+
15
import time
26
import board
37
import neopixel

0 commit comments

Comments
 (0)