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;