Search found 2 matches

by securet
Wed Jan 20, 2021 1:07 am
Forum: IDEs for ESP-IDF
Topic: how to create and include a class with eclipse?
Replies: 0
Views: 1730

how to create and include a class with eclipse?

Hi I'm quite new to c++ programming and I want to create and include a custom class to a esp32 project with eclipse?

But I just don't know how, I can't even create a class in the same file :(
by securet
Wed May 01, 2019 4:10 pm
Forum: ESP32 Arduino
Topic: performance power consumption in loop thread
Replies: 2
Views: 4885

performance power consumption in loop thread

hi, when I wait for something in the main loop like: void loop() { if(boolValue){ //boolvalue normall is false //do something } } would it spare a lot of power if I add some delay in the loop like: void loop() { if(boolValue){ //boolvalue normall is false //do something } //added delay delay(10); } ...