From 6c41518f98936f281cd4ea0427d0189be651f5ec Mon Sep 17 00:00:00 2001 From: Arano Date: Mon, 25 Jun 2018 14:36:44 +0200 Subject: [PATCH] change --- OctoWS2811.cpp | 4 ++++ OctoWS2811.h | 1 + 2 files changed, 5 insertions(+) diff --git a/OctoWS2811.cpp b/OctoWS2811.cpp index 5bf4be9..af8ef29 100644 --- a/OctoWS2811.cpp +++ b/OctoWS2811.cpp @@ -47,6 +47,10 @@ OctoWS2811::OctoWS2811(uint32_t numPerStrip, void *frameBuf, void *drawBuf, uint params = config; } +OctoWS2811::OctoWS2811() +{ +} + // Waveform timing: these set the high time for a 0 and 1 bit, as a fraction of // the total 800 kHz or 400 kHz clock cycle. The scale is 0 to 255. The Worldsemi // datasheet seems T1H should be 600 ns of a 1250 ns cycle, or 48%. That may diff --git a/OctoWS2811.h b/OctoWS2811.h index ec2a42b..ca95b04 100644 --- a/OctoWS2811.h +++ b/OctoWS2811.h @@ -53,6 +53,7 @@ class OctoWS2811 { public: OctoWS2811(uint32_t numPerStrip, void *frameBuf, void *drawBuf, uint8_t config = WS2811_GRB); + OctoWS2811(); void begin(void); void begin(uint32_t numPerStrip, void *frameBuf, void *drawBuf, uint8_t config = WS2811_GRB);