(SOLVED)Brand New NODEMCU AMICA (ESP8266MOD) not responding?

The esp8266 by esp8266 community version 2.4.2 is INSTALLED.

The AMICA Module has been found by the PC at Virtual COM11 Port

There are two LEDs on the Module; none of them is ON.

A simple "hello world!" sketch is compiled, but it is not uploaded. In the middle of uploading, the following error appears and the uploading is aborted.

//---------------------------------------------------------------------------------------------
Arduino: 1.8.5 (Windows 8.1), Board: "NodeMCU 1.0 (ESP-12E Module), 80 MHz, Flash, 4M (1M SPIFFS), v2 Lower Memory, Disabled, None, Only Sketch, 115200"

Archiving built core (caching) in: C:\Users\GM\AppData\Local\Temp\arduino_cache_386267\core\core_esp8266_esp8266_nodemcuv2_CpuFrequency_80,VTable_flash,FlashSize_4M1M,LwIPVariant_v2mss536,Debug_Disabled,DebugLevel_None____,FlashErase_none,UploadSpeed_115200_6c2abf372f2bc219771812fd65619834.a
Sketch uses 246076 bytes (23%) of program storage space. Maximum is 1044464 bytes.
Global variables use 27568 bytes (33%) of dynamic memory, leaving 54352 bytes for local variables. Maximum is 81920 bytes.
warning: espcomm_sync failed
error: espcomm_open failed
error: espcomm_upload_mem failed
error: espcomm_upload_mem failed

This report would have more information with
"Show verbose output during compilation"
option enabled in File -> Preferences.
//------------------------------------------------------

Is my Module bad or there any means to make it work?

GolamMostafa:
The esp8266 by esp8266 community version 2.4.2 is INSTALLED.

You were able to upload ESP8266 Arduino Core?

You could always upload the original AT firmware.

I have followed the guidelines of the following web page to install the ESP Module:

What are you using as your 3.3V power supply ?

The ESP8266 Arduino Core firmware overrides the AT firmware.
Are you able to use AT commands to communicate with the module?
This is the simplest way to verify that the module is operational.

ieee488:
What are you using as your 3.3V power supply ?

Do I need to connect external 3.3V at the 3.3V-pin of the NODEMCU? Is it not like UNO, NANO, MEGA, DUE which work on USB's 5V? On the Module, I can clearly see a 5/3.3V regulator?

Which NodeMCU are you using? V2 or V3?

Sometimes the fuse on USB gets blown up. To give 5V to VIN might help in that case.

There is no mark for V2 or V3. This is the pictorial view of the board.

esp1.jpg

esp1.jpg

GolamMostafa:
There is no mark for V2 or V3. This is the pictorial view of the board.

Cannot see much detail in the photo.

The ESP8266 itself is a 3.3V IC .

see if this is helpful:

1. I replaced the board with a new one; but, the same uploading problem.

2. So, this is not the problem with the board.

3. I changed (without knowing anything) the Board type into "Adafruit Feather HUZZAH ESP8266 in the Tools, and now I can upload sketch in the board.

4. As a test case, I have uploaded the following sketch which blinks the built-in LED (connected at D2) at 5-sec interval. (The "Hello!" message did not appear on Serial Monitor?)

void setup() 
{
  Serial.begin(115200);
  Serial.print("Hello!"); 
  pinMode(2, OUTPUT);
  
}

void loop() 
{
  digitalWrite(2, !digitalRead(2));
  delay(5000);

}

Thanks to all who responded to this thread.