added some missing #include <stdint.h> for simulator in Windows
This commit is contained in:
parent
beeac789c1
commit
991a0db146
8 changed files with 10 additions and 0 deletions
|
@ -1,6 +1,7 @@
|
||||||
#pragma once
|
#pragma once
|
||||||
|
|
||||||
#include <string>
|
#include <string>
|
||||||
|
#include <stdint.h>
|
||||||
#include <map>
|
#include <map>
|
||||||
#include "applicationInternal/keys.h"
|
#include "applicationInternal/keys.h"
|
||||||
|
|
||||||
|
|
|
@ -1,5 +1,7 @@
|
||||||
#pragma once
|
#pragma once
|
||||||
|
|
||||||
|
#include <stdint.h>
|
||||||
|
|
||||||
// The "MQTT keyboard" simply sends MQTT commands to a remote keyboard, which is connected via USB to a device
|
// 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
|
// 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"
|
// if you activate the MQTT keyboard, consider changing the mapping of the keyboard commands to the MQTT keyboard in file "commandHandler.h"
|
||||||
|
|
|
@ -1,5 +1,7 @@
|
||||||
#pragma once
|
#pragma once
|
||||||
|
|
||||||
|
#include <stdint.h>
|
||||||
|
|
||||||
extern uint16_t COMMAND_UNKNOWN;
|
extern uint16_t COMMAND_UNKNOWN;
|
||||||
extern uint16_t MY_SPECIAL_COMMAND;
|
extern uint16_t MY_SPECIAL_COMMAND;
|
||||||
|
|
||||||
|
|
|
@ -1,6 +1,7 @@
|
||||||
#pragma once
|
#pragma once
|
||||||
|
|
||||||
#include <string>
|
#include <string>
|
||||||
|
#include <stdint.h>
|
||||||
|
|
||||||
extern uint16_t SCENE_TV;
|
extern uint16_t SCENE_TV;
|
||||||
|
|
||||||
|
|
|
@ -1,6 +1,7 @@
|
||||||
#pragma once
|
#pragma once
|
||||||
|
|
||||||
#include <string>
|
#include <string>
|
||||||
|
#include <stdint.h>
|
||||||
#include <map>
|
#include <map>
|
||||||
#include "applicationInternal/keys.h"
|
#include "applicationInternal/keys.h"
|
||||||
|
|
||||||
|
|
|
@ -1,6 +1,7 @@
|
||||||
#pragma once
|
#pragma once
|
||||||
|
|
||||||
#include <string>
|
#include <string>
|
||||||
|
#include <stdint.h>
|
||||||
|
|
||||||
extern uint16_t SCENE_ALLOFF;
|
extern uint16_t SCENE_ALLOFF;
|
||||||
|
|
||||||
|
|
|
@ -1,6 +1,7 @@
|
||||||
#pragma once
|
#pragma once
|
||||||
|
|
||||||
#include <string>
|
#include <string>
|
||||||
|
#include <stdint.h>
|
||||||
|
|
||||||
extern uint16_t SCENE_CHROMECAST;
|
extern uint16_t SCENE_CHROMECAST;
|
||||||
|
|
||||||
|
|
|
@ -1,6 +1,7 @@
|
||||||
#pragma once
|
#pragma once
|
||||||
|
|
||||||
#include <string>
|
#include <string>
|
||||||
|
#include <stdint.h>
|
||||||
|
|
||||||
extern uint16_t SCENE_FIRETV;
|
extern uint16_t SCENE_FIRETV;
|
||||||
|
|
||||||
|
|
Loading…
Add table
Reference in a new issue