Search found 7 matches

by Kasperdelasopa
Mon Jan 24, 2022 6:28 pm
Forum: ESP32 Arduino
Topic: Build with arduino-esp32 for ESP32-S2
Replies: 2
Views: 3747

Re: Build with arduino-esp32 for ESP32-S2

Noone? :|
by Kasperdelasopa
Sun Jan 23, 2022 3:12 pm
Forum: ESP32 Arduino
Topic: Build with arduino-esp32 for ESP32-S2
Replies: 2
Views: 3747

Build with arduino-esp32 for ESP32-S2

Hey, i have seen that the description of the arduino-esp32 framework, that is can be used for the ESP32-S2. Can someone tell me how i can compile my code for a ESP32-S2 using Platformio? Im not able to select a ESP-S2 board to compile it. it always says Error: This board doesn't support arduino fram...
by Kasperdelasopa
Mon Dec 20, 2021 8:32 am
Forum: ESP32 Arduino
Topic: Wifi ony working with serial monitor connected
Replies: 2
Views: 3728

Re: Wifi ony working with serial monitor connected

Hey, I'm sure it does not reset. I tested also a more simple sketch, where it setup wifi and loop over a led blink procedure... setup passes and the device blinks in the defined behavior. That's for serial monitor and for power supply. With the serial monitor the wifi connects and i see it in the ro...
by Kasperdelasopa
Sun Dec 19, 2021 8:50 pm
Forum: ESP32 Arduino
Topic: Wifi ony working with serial monitor connected
Replies: 2
Views: 3728

Wifi ony working with serial monitor connected

Hello, i have designed a custom board, which doesn't have much. The key "features" are CH340C to upload a sketch and 4 connections to connect a temperature sensor with I2C. I'm able to upload the program and i'm able to execute it WITH a serial monitor connected to monitor debug output. But once i c...
by Kasperdelasopa
Sun Mar 31, 2019 9:00 am
Forum: ESP32 Arduino
Topic: Access global object in call of function pointer
Replies: 2
Views: 4136

Re: Access global object in call of function pointer

Actually i could solve it by just using std::string instead of const char* all over the place

But Thanks
by Kasperdelasopa
Fri Mar 29, 2019 10:20 am
Forum: ESP32 Arduino
Topic: Access global object in call of function pointer
Replies: 2
Views: 4136

Access global object in call of function pointer

Hello, i'm using function pointers to dynamically call functions. I have created a global object to store some settings in it. class Settings{ public: Settings(); std::string getID(); private: std::string ID; }; I define a object like this globally : Settings *_settings; .... setup(){ _settings = ne...