From 93071130990665441fd519e71d28c3d1c6f1cebf Mon Sep 17 00:00:00 2001 From: Andrey M Date: Sat, 16 May 2020 16:11:36 +0300 Subject: [PATCH] Queue library fully renamed to ArduinoQueue --- linp-doorbell.h | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/linp-doorbell.h b/linp-doorbell.h index 258813a..c200d76 100644 --- a/linp-doorbell.h +++ b/linp-doorbell.h @@ -1,15 +1,15 @@ #include "esphome.h" -#include "Queue.h" +#include "ArduinoQueue.h" #define get_linp_doorbell(constructor) static_cast \ (const_cast(&constructor)->get_component(0)) class LinpDoorbell : public Component, CustomAPIDevice { - DataQueue commandQueue; - DataQueue requests; + ArduinoQueue commandQueue; + ArduinoQueue requests; #ifdef LOG_BINARY_SENSOR - DataQueue buttonPresses; + ArduinoQueue buttonPresses; #endif #ifdef LOG_SENSOR bool isChiming = false;