Skip to content

Commit

Permalink
added some missing #include <stdint.h> for simulator in Windows
Browse files Browse the repository at this point in the history
  • Loading branch information
KlausMu committed Mar 10, 2024
1 parent beeac78 commit 991a0db
Show file tree
Hide file tree
Showing 8 changed files with 10 additions and 0 deletions.
1 change: 1 addition & 0 deletions Platformio/src/applicationInternal/scenes/sceneRegistry.h
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
#pragma once

#include <string>
#include <stdint.h>
#include <map>
#include "applicationInternal/keys.h"

Expand Down
Original file line number Diff line number Diff line change
@@ -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"
Expand Down
2 changes: 2 additions & 0 deletions Platformio/src/devices/misc/device_specialCommands.h
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
#pragma once

#include <stdint.h>

extern uint16_t COMMAND_UNKNOWN;
extern uint16_t MY_SPECIAL_COMMAND;

Expand Down
1 change: 1 addition & 0 deletions Platformio/src/scenes/scene_TV.h
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
#pragma once

#include <string>
#include <stdint.h>

extern uint16_t SCENE_TV;

Expand Down
1 change: 1 addition & 0 deletions Platformio/src/scenes/scene__defaultKeys.h
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
#pragma once

#include <string>
#include <stdint.h>
#include <map>
#include "applicationInternal/keys.h"

Expand Down
1 change: 1 addition & 0 deletions Platformio/src/scenes/scene_allOff.h
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
#pragma once

#include <string>
#include <stdint.h>

extern uint16_t SCENE_ALLOFF;

Expand Down
1 change: 1 addition & 0 deletions Platformio/src/scenes/scene_chromecast.h
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
#pragma once

#include <string>
#include <stdint.h>

extern uint16_t SCENE_CHROMECAST;

Expand Down
1 change: 1 addition & 0 deletions Platformio/src/scenes/scene_fireTV.h
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
#pragma once

#include <string>
#include <stdint.h>

extern uint16_t SCENE_FIRETV;

Expand Down

0 comments on commit 991a0db

Please sign in to comment.