Skip to content

Instantly share code, notes, and snippets.

View perigalacticon's full-sized avatar

perigalacticon perigalacticon

View GitHub Profile
@perigalacticon
perigalacticon / ESPixelStick_mod_ssd1306.ino
Last active August 11, 2022 22:38
ESPixelStick_mod_ssd1306.ino
/*
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
@perigalacticon
perigalacticon / inoise8_pal_demo_fastLed_sPillar_post.ino
Created November 7, 2019 19:51
inoise8_pal_demo_fastLed_sPillar_post
/*
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
@perigalacticon
perigalacticon / Receive_UDP_Right_Eye.ino
Created October 29, 2019 17:14
Receive_UDP_Right_Eye.ino
// Receive_UDP_Right_Eye.ino
// ESP8266
#include <FastLED.h>
#include <ESP8266WiFi.h>
#include <ESP8266mDNS.h>
#include <WiFiUdp.h>
#include <NeoPixelBus.h>
#include <ESP8266WebServer.h>
@perigalacticon
perigalacticon / twinkle_fox_Easter_spillar.ino
Created March 31, 2018 14:57
TwinkleFox custom color palette, starts line 446
// 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>
@perigalacticon
perigalacticon / twinkle_fox_xmas_esp01-2_spillar.ino
Last active December 5, 2017 01:50
TwinkleFox + NeoPixelBus + OTA
// 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>
@perigalacticon
perigalacticon / tweaking4All_creepy_halloween_eyes.ino
Last active November 5, 2017 05:49
tweaking4All_creepy_halloween_eyes WS2812B Led Strip Effect
// 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
@perigalacticon
perigalacticon / ColorWavesWithPalettes_fastLed_neopixelBus.ino
Created November 3, 2017 22:31
ColorWavesWithPalettes_fastLed_neopixelBus.ino
#include <ESP8266WiFi.h>
#include <ESP8266mDNS.h>
#include <WiFiUdp.h>
#include <ArduinoOTA.h>
const char* ssid = "";
const char* password = "";
#include <NeoPixelBus.h>
#include <FastLED.h>
@perigalacticon
perigalacticon / inoise8_pal_demo_fastLed_mod1.ino
Last active April 7, 2022 08:25
modify inoise8_pal_demo_fastLed.ino to use custom palettes arbitrarily.
// https://pastebin.com/r70Qk6Bn
/* Title: inoise8_pal_demo.ino
*
* By: Andrew Tuline
*
* Added custom color palettes arbitrarily selectable.
*/