Skip to content

Instantly share code, notes, and snippets.

View triphoppingman's full-sized avatar

bruce mcdonald triphoppingman

  • Tusked Crescent
  • United States
View GitHub Profile
@madjam002
madjam002 / frankeverCustomLight.h
Created November 2, 2019 10:49
ESPHome Custom RGBW Light with emulated warm/cool white
#include "esphome.h"
class FrankeverCustomLight : public Component, public LightOutput {
public:
FrankeverCustomLight(FloatOutput *red, FloatOutput *green, FloatOutput *blue, FloatOutput *white)
{
red_ = red;
green_ = green;
blue_ = blue;
white_ = white;