From dd3d63e914a90f0669601b8c867f258895c2ae1a Mon Sep 17 00:00:00 2001 From: Mark van Renswoude Date: Wed, 23 Sep 2020 20:10:05 +0200 Subject: [PATCH] Lowered bitrate to see if that solves communication issues --- src/strip.cpp | 2 +- src/strip.h | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/src/strip.cpp b/src/strip.cpp index d8f1f98..ab34eec 100644 --- a/src/strip.cpp +++ b/src/strip.cpp @@ -18,7 +18,7 @@ RgbwColor clearColor(0); void Strip::init(uint16_t ledCount) { - mBus = new NeoPixelBus(ledCount); + mBus = new NeoPixelBus(ledCount); mBus->Begin(); setStatic(clearColor); diff --git a/src/strip.h b/src/strip.h index 4c073b4..8eb741c 100644 --- a/src/strip.h +++ b/src/strip.h @@ -13,7 +13,7 @@ class Strip { private: - NeoPixelBus* mBus; + NeoPixelBus* mBus; public: void init(uint16_t ledCount);