PR -6 - Did 10 more projects

This commit is contained in:
dherrada 2021-11-02 15:13:40 -04:00
parent 9fe08850ad
commit 3899d615ad
20 changed files with 92 additions and 0 deletions

View file

@ -1,3 +1,7 @@
// SPDX-FileCopyrightText: 2020 Limor Fried/ladyada for Adafruit Industries
//
// SPDX-License-Identifier: MIT
/* This sketch demonstrates WebUSB as web serial with browser with WebUSB support (e.g Chrome). /* This sketch demonstrates WebUSB as web serial with browser with WebUSB support (e.g Chrome).
* For use with the Teachable Machine Tiny Sorter (and others!) project * For use with the Teachable Machine Tiny Sorter (and others!) project
* See https://learn.adafruit.com/using-webusb-with-arduino-and-tinyusb for * See https://learn.adafruit.com/using-webusb-with-arduino-and-tinyusb for

View file

@ -1,3 +1,7 @@
// SPDX-FileCopyrightText: 2019 Phillip Burgess for Adafruit Industries
//
// SPDX-License-Identifier: MIT
// Speak & Spell sound board for the Adafruit NeoTrellis M4. // Speak & Spell sound board for the Adafruit NeoTrellis M4.
// Requires the following libraries, install with Arduino Library Manager: // Requires the following libraries, install with Arduino Library Manager:
// - Adafruit_NeoTrellisM4 // - Adafruit_NeoTrellisM4

View file

@ -1,3 +1,7 @@
// SPDX-FileCopyrightText: 2019 Phillip Burgess for Adafruit Industries
//
// SPDX-License-Identifier: MIT
// Letters A through Z. // Letters A through Z.
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}; 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};
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}; 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};

View file

@ -1,3 +1,7 @@
// SPDX-FileCopyrightText: 2018 Tony DiCola for Adafruit Industries
//
// SPDX-License-Identifier: MIT
// Techno-Tiki RGB LED Torch with IR Remote Control for Circuit Playground Express // Techno-Tiki RGB LED Torch with IR Remote Control for Circuit Playground Express
// This version ONLY works with Circuit Playground Express boards: // This version ONLY works with Circuit Playground Express boards:
// https://www.adafruit.com/product/3333 // https://www.adafruit.com/product/3333

View file

@ -1,3 +1,8 @@
# SPDX-FileCopyrightText: 2018 Tony DiCola for Adafruit Industries
# SPDX-FileCopyrightText: 2018 Mikey Sklar for Adafruit Industries
#
# SPDX-License-Identifier: MIT
# Techno-Tiki RGB LED Torch with IR Remote Control # Techno-Tiki RGB LED Torch with IR Remote Control
# Created by Tony DiCola for Arduino # Created by Tony DiCola for Arduino
# Ported to CircuitPython by Mikey Sklar # Ported to CircuitPython by Mikey Sklar

View file

@ -1,3 +1,8 @@
// SPDX-FileCopyrightText: 2018 Tony DiCola for Adafruit Industries
// SPDX-FileCopyrightText: 2020 Erin St. Blaine for Adafruit Industries
//
// SPDX-License-Identifier: MIT
// Techno-Tiki RGB LED Torch (without IR Remote Control) // Techno-Tiki RGB LED Torch (without IR Remote Control)
// Created by Tony DiCola // Created by Tony DiCola
// //

View file

@ -1,3 +1,8 @@
# SPDX-FileCopyrightText: 2018 Mikey Sklar for Adafruit Industries
# SPDX-FileCopyrightText: 2020 Erin St. Blaine for Adafruit Industries
#
# SPDX-License-Identifier: MIT
import time import time
import board import board
import neopixel import neopixel

View file

@ -1,3 +1,8 @@
// SPDX-FileCopyrightText: 2018 Tony DiCola for Adafruit Industries
// SPDX-FileCopyrightText: 2020 Erin St. Blaine for Adafruit Industries
//
// SPDX-License-Identifier: MIT
// Techno-Tiki RGB LED Torch with IR Remote Control // Techno-Tiki RGB LED Torch with IR Remote Control
// Created by Tony DiCola // Created by Tony DiCola
// //

View file

@ -1,3 +1,9 @@
# SPDX-FileCopyrightText: 2018 Tony DiCola for Adafruit Industries
# SPDX-FileCopyrightText: 2018 Mikey Sklar for Adafruit Industries
# SPDX-FileCopyrightText: 2020 Erin St. Blaine for Adafruit Industries
#
# SPDX-License-Identifier: MIT
# Techno-Tiki RGB LED Torch with IR Remote Control # Techno-Tiki RGB LED Torch with IR Remote Control
# Created by Tony DiCola for Arduino # Created by Tony DiCola for Arduino
# Ported to CircuitPython by Mikey Sklar # Ported to CircuitPython by Mikey Sklar

View file

@ -1,3 +1,7 @@
// SPDX-FileCopyrightText: 2020 Limor Fried/ladyada for Adafruit Industries
//
// SPDX-License-Identifier: MIT
// please read credits at the bottom of file // please read credits at the bottom of file
#include <Adafruit_Arcada.h> #include <Adafruit_Arcada.h>

View file

@ -1,3 +1,7 @@
# SPDX-FileCopyrightText: 2021 Noe Ruiz for Adafruit Industries
#
# SPDX-License-Identifier: MIT
""" """
Guardian Egg Shoulder Robot with servo and NeoPixel ring Guardian Egg Shoulder Robot with servo and NeoPixel ring
""" """

View file

@ -1,3 +1,7 @@
// SPDX-FileCopyrightText: 2017 Mikey Sklar for Adafruit Industries
//
// SPDX-License-Identifier: MIT
#include <Adafruit_NeoPixel.h> #include <Adafruit_NeoPixel.h>
#define PIN 1 #define PIN 1

View file

@ -1,3 +1,7 @@
# SPDX-FileCopyrightText: 2018 Mikey Sklar for Adafruit Industries
#
# SPDX-License-Identifier: MIT
import analogio import analogio
import board import board
from rainbowio import colorwheel from rainbowio import colorwheel

View file

@ -1,3 +1,7 @@
# SPDX-FileCopyrightText: 2018 Brent Rubell for Adafruit Industries
#
# SPDX-License-Identifier: MIT
"""Using TinyLoRa with a Si7021 Sensor. """Using TinyLoRa with a Si7021 Sensor.
""" """
import time import time

View file

@ -1,3 +1,10 @@
// SPDX-FileCopyrightText: 2015 Thomas Telkamp
// SPDX-FileCopyrightText: 2015 Matthijs Kooijman
// SPDX-FileCopyrightText: 2018 Terry Moore for MCCI
// SPDX-FileCopyrightText: 2018 Brent Rubell for Adafruit Industries
//
// SPDX-License-Identifier: MIT
/******************************************************************************* /*******************************************************************************
* The Things Network - Sensor Data Example * The Things Network - Sensor Data Example
* *

View file

@ -1,3 +1,10 @@
// SPDX-FileCopyrightText: 2015 Thomas Telkamp
// SPDX-FileCopyrightText: 2015 Matthijs Kooijman
// SPDX-FileCopyrightText: 2018 Terry Moore for MCCI
// SPDX-FileCopyrightText: 2018 Brent Rubell for Adafruit Industries
//
// SPDX-License-Identifier: MIT
/******************************************************************************* /*******************************************************************************
* The Things Network - Sensor Data Example with OLED * The Things Network - Sensor Data Example with OLED
* *

View file

@ -1,3 +1,7 @@
// SPDX-FileCopyrightText: 2011 Limor Fried/ladyada for Adafruit Industries
//
// SPDX-License-Identifier: MIT
// thermistor-1.ino Simple test program for a thermistor for Adafruit Learning System // thermistor-1.ino Simple test program for a thermistor for Adafruit Learning System
// https://learn.adafruit.com/thermistor/using-a-thermistor by Limor Fried, Adafruit Industries // https://learn.adafruit.com/thermistor/using-a-thermistor by Limor Fried, Adafruit Industries
// MIT License - please keep attribution and consider buying parts from Adafruit // MIT License - please keep attribution and consider buying parts from Adafruit

View file

@ -1,3 +1,7 @@
// SPDX-FileCopyrightText: 2011 Limor Fried/ladyada for Adafruit Industries
//
// SPDX-License-Identifier: MIT
// thermistor-2.ino Intermediate test program for a thermistor. Adafruit Learning System Tutorial // thermistor-2.ino Intermediate test program for a thermistor. Adafruit Learning System Tutorial
// https://learn.adafruit.com/thermistor/using-a-thermistor by Limor Fried, Adafruit Industries // https://learn.adafruit.com/thermistor/using-a-thermistor by Limor Fried, Adafruit Industries
// MIT License - please keep attribution and please consider buying parts from Adafruit // MIT License - please keep attribution and please consider buying parts from Adafruit

View file

@ -1,3 +1,7 @@
// SPDX-FileCopyrightText: 2011 Limor Fried/ladyada for Adafruit Industries
//
// SPDX-License-Identifier: MIT
// Thermistor Example #3 from the Adafruit Learning System guide on Thermistors // Thermistor Example #3 from the Adafruit Learning System guide on Thermistors
// https://learn.adafruit.com/thermistor/overview by Limor Fried, Adafruit Industries // https://learn.adafruit.com/thermistor/overview by Limor Fried, Adafruit Industries
// MIT License - please keep attribution and consider buying parts from Adafruit // MIT License - please keep attribution and consider buying parts from Adafruit

View file

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