added some missing #include <stdint.h> for simulator in Windows

This commit is contained in:
KlausMu 2024-03-10 20:25:53 +01:00
parent beeac789c1
commit 991a0db146
8 changed files with 10 additions and 0 deletions

View File

@ -1,6 +1,7 @@
#pragma once
#include <string>
#include <stdint.h>
#include <map>
#include "applicationInternal/keys.h"

View File

@ -1,5 +1,7 @@
#pragma once
#include <stdint.h>
// 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"

View File

@ -1,5 +1,7 @@
#pragma once
#include <stdint.h>
extern uint16_t COMMAND_UNKNOWN;
extern uint16_t MY_SPECIAL_COMMAND;

View File

@ -1,6 +1,7 @@
#pragma once
#include <string>
#include <stdint.h>
extern uint16_t SCENE_TV;

View File

@ -1,6 +1,7 @@
#pragma once
#include <string>
#include <stdint.h>
#include <map>
#include "applicationInternal/keys.h"

View File

@ -1,6 +1,7 @@
#pragma once
#include <string>
#include <stdint.h>
extern uint16_t SCENE_ALLOFF;

View File

@ -1,6 +1,7 @@
#pragma once
#include <string>
#include <stdint.h>
extern uint16_t SCENE_CHROMECAST;

View File

@ -1,6 +1,7 @@
#pragma once
#include <string>
#include <stdint.h>
extern uint16_t SCENE_FIRETV;