This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/sh | |
# WUUK Y0510 https://amzn.to/4dFlKv1 | |
# | |
# Instructions | |
# | |
# Note: If we increase uboot beyond 256k this needs to be adjusted. | |
# Build thingino firmware, up to make pack_full, or grab full firmware file from github releases | |
# -- UPDATE -- | |
# There are now 2 versions of this camera. Most use the sc4336p sensor, a few have the sc401ai sensor. |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/sh | |
# ***** warning ***** warning ***** warning ***** warning ***** warning ***** warning ***** | |
# THIS IS NOT LONGER A GOOD APPROACH TO USE. SCROLL DOWN TO THE COMMENTS TO SEE HOW YOU CAN USE WIREGUARD WITH A DDNS FQDN INSTEAD | |
# ***** warning ***** warning ***** warning ***** warning ***** warning ***** warning ***** | |
# ___ ____ _ _ _ _ | |
# |_ _| _ \ ___ ___ ___ | | | |_ __ __| | __ _| |_ ___ _ __ |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#include "FastLED.h" | |
// Lights that chase around the outside of a sign, as found | |
// at carnivals, circuses, and theatres. | |
#define NUM_LEDS 35 | |
#define LED_TYPE WS2811 | |
#define COLOR_ORDER RGB | |
#define DATA_PIN 3 |