I recently received from Aliexpress 10 board Wemos D1 Mini Pro 16Mb.
The first weird thing I noticed was the high COM port detected when I connected the boards trough the USB cable. COM7 or higher.
I followed the usual procedure to upload a simple test sketch I used to program another Wemos (same version) with Arduino IDE.
When I upload the sketch, all seems ok. Led blynks, and Arduino IDE shows a normal upload process to 100%.
But the test code doesn't run.
This is the test code
void setup() {
Serial.begin(9600);
}
void loop() {
Serial.println("Hello");
delay(1000);
}
This is how the program runs in my old Wemos
This pic shows the new Wemos received not working
My old wemos is detected in COM4
The new Wemos are detected at high COM ports
At first I tough it was a computer problem. The I installed Arduino IDE on another computer, configured for ESP8266, and tried to upload and run the same test skecth, but now, the COM port detected was COM4, but still the program doesn't run on the new Wemos boards.
Any ideas? I'm very frustrated, how it's possible to receive 10 boards with the same problem?