Skip to content

Commit

Permalink
Fix: compilation of "ESP32_Test.ino" fails due to non-existent functi…
Browse files Browse the repository at this point in the history
…on "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.
  • Loading branch information
aentinger authored Dec 14, 2023
1 parent a9fc7ea commit d474ea4
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion libraries/ESPhost/examples/ESP32_TEST/ESP32_TEST.ino
Original file line number Diff line number Diff line change
@@ -1,6 +1,9 @@
#include "CEspControl.h"
#include "CNetIf.h"
#include <string>
#include <vector>

using namespace std;

/* GPIO_LOCAL C33
- 0. P010
Expand Down Expand Up @@ -79,7 +82,6 @@ void setup() {
CEspControl::getInstance().listenForStationDisconnectEvent(stationDisconnectionEvent);
CEspControl::getInstance().listenForDisconnectionFromSoftApEvent(disconnectionFromSofApEvent);

CEspControl::getInstance().begin();



Expand Down

0 comments on commit d474ea4

Please sign in to comment.