I am working with Arduino IDE 1.8.19 and BPi-Leaf-S3 v1.1 and have a problem.
Board is added with:
Additional Boards Manager URLs: https://raw.githubusercontent.com/espressif/arduino-esp32/gh-pages/package_esp32_dev_index.json
and Boards Manager (esp32 v2.0.9)
Tools setting are set according to
simple sketch
void setup() { Serial.begin(115200); }
void loop() { static unsigned long i = 0; int var = 0; while (var < 5) { Serial.print(i++); delay(1000); Serial.print(" “); var++; } Serial.println(” "); }
compile and upload correctly (see attached compile_upload_log.txt) but noting is written on Serial monitor.
Same sketch works as expected on other boards.
What did I do wrong and how to correct it?