From 5e7b58ed4977a0943dba6567fa8877357c883674 Mon Sep 17 00:00:00 2001 From: Michael Miller Date: Mon, 25 Jan 2021 15:13:56 -0800 Subject: [PATCH] unitialized end time (#413) --- src/internal/Ws2801GenericMethod.h | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/internal/Ws2801GenericMethod.h b/src/internal/Ws2801GenericMethod.h index 0127108..e2293ae 100644 --- a/src/internal/Ws2801GenericMethod.h +++ b/src/internal/Ws2801GenericMethod.h @@ -68,6 +68,8 @@ public: void Initialize(int8_t sck, int8_t miso, int8_t mosi, int8_t ss) { _wire.begin(sck, miso, mosi, ss); + + _endTime = micros(); } #endif