This is just a copy of config from https://github.com/emporia-vue-local/esphome, just edited for use with 3 phase systems. All instructions can be found there.
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
/* | |
THIS SKETCH TRANSPORMS 4-COLOR RGBW LEDS INTO 2 3-COLOR RGB LEDS, | |
SO YOU CAN USE FASTLED (WHICH AS OF NOW, HAS NO RGBW SUPPORT), TO | |
CONTROL RGBW LEDS | |
*/ | |
#include <FastLED.h> | |
#define NUM_LEDS 16 |
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/bash | |
DIR=$1 | |
RED='\033[0;31m' | |
GREEN='\033[0;32m' | |
BLUE='\033[1;34m' | |
ORANGE='\033[1;33m' | |
NC='\033[0m' # No Color |