From 9156cd4784d37efb56e0ddb860cb6b01f43464d5 Mon Sep 17 00:00:00 2001 From: Eugene Schava Date: Wed, 14 Nov 2018 00:30:00 +0200 Subject: [PATCH] Added missing ifndef fix 30285b3 --- code/espurna/config/general.h | 3 +++ 1 file changed, 3 insertions(+) diff --git a/code/espurna/config/general.h b/code/espurna/config/general.h index 2ab3040c..91873ceb 100644 --- a/code/espurna/config/general.h +++ b/code/espurna/config/general.h @@ -237,6 +237,9 @@ #ifndef BUTTON_LNGLNGCLICK_DELAY #define BUTTON_LNGLNGCLICK_DELAY 10000 // Time in ms holding the button down to get a long-long click +#endif + +#ifndef BUTTON_MQTT_SEND_ALL_EVENTS #define BUTTON_MQTT_SEND_ALL_EVENTS 0 // 0 - to send only events the are bound to actions // 1 - to send all button events to MQTT #endif