ESP8266 + HCSR501 PIR - Not booting

Hi there,
im an absolute newbie here and im trying to get my

  • Board: ESP8266
  • Sensor: HCSR501 (PIR)

running, to detect movements via IR

Im running Linux and downloaded:

  • boot_app0.bin
  • bootloader_dio_80m.bin
  • nodemcuv2-ir-firmware.bin

Connected my ESP via usb and executed

sudo esptool.py --port /dev/ttyUSB0 --chip esp8266 --baud 921600 --before default_reset --after hard_reset write_flash -z --flash_mode dout --flash_size detect 0xe000 boot_app0.bin 0x1000 bootloader_dio_80m.bin 0x10000 nodemcuv2-ir-firmware.bin

Got back:

esptool.py v4.5.1
Serial port /dev/ttyUSB0
Connecting....
Chip is ESP8266EX
Features: WiFi
Crystal is 26MHz
MAC: 48:55:19:e0:6d:4d
Uploading stub...
Running stub...
Stub running...
Changing baud rate to 921600
Changed.
Configuring flash size...
Auto-detected Flash size: 4MB
Flash will be erased from 0x0000e000 to 0x0000ffff...
Flash will be erased from 0x00001000 to 0x00005fff...
Flash will be erased from 0x00010000 to 0x000aefff...
Compressed 8192 bytes to 47...
Wrote 8192 bytes (47 compressed) at 0x0000e000 in 0.1 seconds (effective 451.0 kbit/s)...
Hash of data verified.
Compressed 17440 bytes to 12090...
Wrote 17440 bytes (12090 compressed) at 0x00001000 in 0.5 seconds (effective 256.1 kbit/s)...
Hash of data verified.
Compressed 650064 bytes to 456652...
Wrote 650064 bytes (456652 compressed) at 0x00010000 in 6.9 seconds (effective 753.6 kbit/s)...
Hash of data verified.

Leaving...
Hard resetting via RTS pin..

I don’t see any errors but the chance is high that i did miss or chose the wrong binaries.

The ESP board does only blink once, after flashing and re-connecting it to a power source

I can not find the WiFi for setting up the board

Can anyone try to show me what i did to wrong?

OK sorry i finally got it fixed i think

I mixed the ESP32 stuff into the ESP8266 commands

This simple command seemed to work for me

sudo esptool.py --port /dev/ttyUSB0 --chip esp8266 write_flash --flash_mode qio 0x00000 nodemc
uv2-ir-firmware.bin