From a6bf641700adafe67b6b23a27bc21ed1fdad6432 Mon Sep 17 00:00:00 2001 From: Debashish Sahu Date: Thu, 24 Jan 2019 14:39:13 -0500 Subject: [PATCH] Update McLighting.ino USE_WS2812FX_UART are pointers! --- Arduino/McLighting/McLighting.ino | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Arduino/McLighting/McLighting.ino b/Arduino/McLighting/McLighting.ino index e677ded..b356fc3 100644 --- a/Arduino/McLighting/McLighting.ino +++ b/Arduino/McLighting/McLighting.ino @@ -94,10 +94,10 @@ WS2812FX* strip; NeoEsp8266Dma800KbpsMethod* dma; #endif #ifdef USE_WS2812FX_UART1 // Uses UART1: GPIO1/TXD0/TX, more info: https://github.com/Makuna/NeoPixelBus/wiki/ESP8266-NeoMethods - NeoEsp8266Uart0800KbpsMethod dma; + NeoEsp8266Uart0800KbpsMethod* dma; #endif #ifdef USE_WS2812FX_UART2 // Uses UART2: GPIO2/TXD1/D4, more info: https://github.com/Makuna/NeoPixelBus/wiki/ESP8266-NeoMethods - NeoEsp8266Uart1800KbpsMethod dma; + NeoEsp8266Uart1800KbpsMethod* dma; #endif void initDMA(uint16_t stripSize = NUMLEDS){