Не прошивается ESP-32CAM из IOT набора, программатор ESP-32CAM-MB на чипе CH340C. Com порт определяется, в arduino ide добавил плату через board manager как AI Thinker ESP32-CAM.
При попытке помигать светодиодом получаю ошибку:
Скетч:
Кто-нибудь сталкивался? Возможно нужны правильные драйвера к CH340C.
GitHub - espressif/arduino-esp32: Arduino core for the ESP32
Arduino core for the ESP32. Contribute to espressif/arduino-esp32 development by creating an account on GitHub.
github.com
При попытке помигать светодиодом получаю ошибку:
YAML:
Sketch uses 256837 bytes (8%) of program storage space. Maximum is 3145728 bytes.
Global variables use 21228 bytes (6%) of dynamic memory, leaving 306452 bytes for local variables. Maximum is 327680 bytes.
esptool.py v4.5.1
Serial port COM6
Connecting......................................
A fatal error occurred: Failed to connect to ESP32: No serial data received.
For troubleshooting steps visit: https://docs.espressif.com/projects/esptool/en/latest/troubleshooting.html
Failed uploading: uploading error: exit status 2
C++:
#define LED_BUILTIN 33
void setup() {
pinMode(LED_BUILTIN, OUTPUT);
}
void loop() {
digitalWrite(LED_BUILTIN, HIGH);
delay(1000);
digitalWrite(LED_BUILTIN, LOW);
delay(1000);
}
Кто-нибудь сталкивался? Возможно нужны правильные драйвера к CH340C.