Skip to content

Commit 3899d61

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

20 files changed

Lines changed: 92 additions & 0 deletions

File tree

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>

0 commit comments

Comments
 (0)