Microwave Radar Motion Sensor and WeMos D1 Mini on ESPHome

Connect Microwave Radar Motion Sensor (RCWL-0516) to WeMos D1 Mini. The WeMos D1 Mini is a mini wifi

board based on ESP-8266

ESP8266 WeMos D1 Mini RCWL-0516

Configure ESPHome Add-on on Home Assistant Core.

esphome:
  name: esp8266_wemos_d1_mini
  platform: ESP8266
  board: d1_mini

wifi:
  ssid: "your_ssid"
  password: "your_password"
  fast_connect: true
  manual_ip:
    static_ip: 192.168.1.32
    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: D3
    name: "WeMos D1 Mini Motion Sensor"
    device_class: motion