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
/* | |
ESPixelStick_mod_ssd1306.ino | |
Original Project: ESPixelStick.ino | |
Project: ESPixelStick - An ESP8266 and E1.31 based pixel driver | |
Copyright (c) 2016 Shelby Merrick | |
http://www.forkineye.com | |
This program is provided free for you to use in any way that you wish, | |
subject to the laws and regulations where you are using it. Due diligence |
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
/* | |
Name: inoise8_pal_demo_fastLed_sPillar_post.ino | |
Created: 11/7/2019 2:46:46 PM | |
Author: APOGALACTICON2\perigalacticon | |
*/ | |
// inoise8_pal_demo_fastLed_sPillar.ino | |
// https://pastebin.com/r70Qk6Bn |
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
// Receive_UDP_Right_Eye.ino | |
// ESP8266 | |
#include <FastLED.h> | |
#include <ESP8266WiFi.h> | |
#include <ESP8266mDNS.h> | |
#include <WiFiUdp.h> | |
#include <NeoPixelBus.h> | |
#include <ESP8266WebServer.h> |
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
// twinkle_fox_Easter_spillar.ino | |
// TwinkleFox + NeoPixelBus + WebUpdate | |
// Perigalacticon 3/30/18 | |
// needs 80MHz will not run on 160MHz | |
#include "FastLED.h" | |
#include <ESP8266WiFi.h> | |
#include <ESP8266mDNS.h> | |
#include <WiFiClient.h> | |
#include <ESP8266WebServer.h> |
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
// TwinkleFox + NeoPixelBus + OTA | |
// Perigalacticon 12/4/17 | |
#include "FastLED.h" | |
#include <ESP8266WiFi.h> | |
#include <ESP8266mDNS.h> | |
#include <WiFiUdp.h> | |
#include <ArduinoOTA.h> | |
#include <NeoPixelBus.h> |
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
// Based On: https://www.tweaking4all.com/hardware/arduino/adruino-led-strip-effects/#halloween_eyes | |
// Modified by: Perigalacticon 11/5/2017. | |
// Includes a button input that triggers a simple explosion effect. | |
// Colors values are hand tuned for my LED Strip which is significantly more red than it should be. | |
//#include <Adafruit_NeoPixel.h> | |
#include "FastLED.h" | |
#define NUM_LEDS 50 | |
CRGB leds[NUM_LEDS]; | |
#define LED_PIN 9 |
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 <ESP8266WiFi.h> | |
#include <ESP8266mDNS.h> | |
#include <WiFiUdp.h> | |
#include <ArduinoOTA.h> | |
const char* ssid = ""; | |
const char* password = ""; | |
#include <NeoPixelBus.h> | |
#include <FastLED.h> |
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
// https://pastebin.com/r70Qk6Bn | |
/* Title: inoise8_pal_demo.ino | |
* | |
* By: Andrew Tuline | |
* | |
* Added custom color palettes arbitrarily selectable. | |
*/ | |