Skip to content

Commit d474ea4

Browse files
authored
Fix: compilation of "ESP32_Test.ino" fails due to non-existent function "begin". (#205)
I guess the function was needed earlier in the development process but that no longer seems to be the case. Also doing some small other changes in order to get the sketch to compile.
1 parent a9fc7ea commit d474ea4

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

Diff for: libraries/ESPhost/examples/ESP32_TEST/ESP32_TEST.ino

+3-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,9 @@
11
#include "CEspControl.h"
22
#include "CNetIf.h"
33
#include <string>
4+
#include <vector>
5+
6+
using namespace std;
47

58
/* GPIO_LOCAL C33
69
- 0. P010
@@ -79,7 +82,6 @@ void setup() {
7982
CEspControl::getInstance().listenForStationDisconnectEvent(stationDisconnectionEvent);
8083
CEspControl::getInstance().listenForDisconnectionFromSoftApEvent(disconnectionFromSofApEvent);
8184

82-
CEspControl::getInstance().begin();
8385

8486

8587

0 commit comments

Comments
 (0)