ESP8266 NodeMCU V3 and Motion Sensor RCWL-0516 on Home Assistant (ESPHome)

Home Assistant Using ESPHome Add-on and NodeMCU V3 (ESP8266) and RCWL-0516 Microwave Radar Motion

Sensor

ESP8266 NodeMCU V3 RCWL-0516

Configure Home Assistant using ESPHome Add-on

esphome:
  name: esp8266_nodemcu_v3
  platform: ESP8266
  board: nodemcuv2

# Wifi
wifi:
  ssid: "your_ssid"
  password: "your_password"
  fast_connect: true
  manual_ip:
    static_ip: 192.168.1.33
    gateway: 192.168.1.1
    subnet: 255.255.255.0
    dns1: 192.168.1.1

# Enable logging
logger:

# Enable Home Assistant API
api:

ota:

# RCWL-0516 Microwave Radar Motion Sensor
binary_sensor:
  - platform: gpio
    pin: D6
    name: "ESP8266 NodeMCU V3 Motion Sensor"
    device_class: motion