diff --git a/Platformio/src/applicationInternal/scenes/sceneRegistry.h b/Platformio/src/applicationInternal/scenes/sceneRegistry.h index 89434df..c49c3f9 100644 --- a/Platformio/src/applicationInternal/scenes/sceneRegistry.h +++ b/Platformio/src/applicationInternal/scenes/sceneRegistry.h @@ -1,6 +1,7 @@ #pragma once #include +#include #include #include "applicationInternal/keys.h" diff --git a/Platformio/src/devices/keyboard/device_keyboard_mqtt/device_keyboard_mqtt.h b/Platformio/src/devices/keyboard/device_keyboard_mqtt/device_keyboard_mqtt.h index ad9a566..70c6a1a 100644 --- a/Platformio/src/devices/keyboard/device_keyboard_mqtt/device_keyboard_mqtt.h +++ b/Platformio/src/devices/keyboard/device_keyboard_mqtt/device_keyboard_mqtt.h @@ -1,5 +1,7 @@ #pragma once +#include + // The "MQTT keyboard" simply sends MQTT commands to a remote keyboard, which is connected via USB to a device // https://github.com/KlausMu/esp32-mqtt-keyboard // if you activate the MQTT keyboard, consider changing the mapping of the keyboard commands to the MQTT keyboard in file "commandHandler.h" diff --git a/Platformio/src/devices/misc/device_specialCommands.h b/Platformio/src/devices/misc/device_specialCommands.h index 7a3fedb..86afc33 100644 --- a/Platformio/src/devices/misc/device_specialCommands.h +++ b/Platformio/src/devices/misc/device_specialCommands.h @@ -1,5 +1,7 @@ #pragma once +#include + extern uint16_t COMMAND_UNKNOWN; extern uint16_t MY_SPECIAL_COMMAND; diff --git a/Platformio/src/scenes/scene_TV.h b/Platformio/src/scenes/scene_TV.h index 581b4f9..f24cab5 100644 --- a/Platformio/src/scenes/scene_TV.h +++ b/Platformio/src/scenes/scene_TV.h @@ -1,6 +1,7 @@ #pragma once #include +#include extern uint16_t SCENE_TV; diff --git a/Platformio/src/scenes/scene__defaultKeys.h b/Platformio/src/scenes/scene__defaultKeys.h index 0c5831b..4e513d9 100644 --- a/Platformio/src/scenes/scene__defaultKeys.h +++ b/Platformio/src/scenes/scene__defaultKeys.h @@ -1,6 +1,7 @@ #pragma once #include +#include #include #include "applicationInternal/keys.h" diff --git a/Platformio/src/scenes/scene_allOff.h b/Platformio/src/scenes/scene_allOff.h index bcccff7..e373e5a 100644 --- a/Platformio/src/scenes/scene_allOff.h +++ b/Platformio/src/scenes/scene_allOff.h @@ -1,6 +1,7 @@ #pragma once #include +#include extern uint16_t SCENE_ALLOFF; diff --git a/Platformio/src/scenes/scene_chromecast.h b/Platformio/src/scenes/scene_chromecast.h index 81173fd..3271a68 100644 --- a/Platformio/src/scenes/scene_chromecast.h +++ b/Platformio/src/scenes/scene_chromecast.h @@ -1,6 +1,7 @@ #pragma once #include +#include extern uint16_t SCENE_CHROMECAST; diff --git a/Platformio/src/scenes/scene_fireTV.h b/Platformio/src/scenes/scene_fireTV.h index adf5185..2e8efc9 100644 --- a/Platformio/src/scenes/scene_fireTV.h +++ b/Platformio/src/scenes/scene_fireTV.h @@ -1,6 +1,7 @@ #pragma once #include +#include extern uint16_t SCENE_FIRETV;