Passive Infrared Sensors or PIR sensors for short or just Motion Sensor are completely supported by Home Assistant and ESPHome. I have a question for you why to buy an expensive motion sensor when you can DIY for cheap. In this article I will show you what parts you will need, how to install ESPHome, how to add the motion sensor to Home Assistant and how to make automations.

Cheap DIY Motion Sensor that works with ESPHome & Home Assistant

Why cheap DIY Motion Sensor?

Using smart motion sensors on strategic places at your home is one of the quick wins when you are turning your home into a smart home. Of course you can use out of the box motion sensors like Shelly Motion or other similar, but they are not coming cheap, especially if you have to buy a lot of them (see my Shelly Motion or Shelly Motion with Home Assistant articles if you want more info about this topic). That is why we are going to create one motion sensor that will cost around $4 US dollars and it will take only few minutes of your time. I will show you everything step-by-step and at the end we will see a real demo with Home Assistant automation.

Automation that works every-time?

When we are talking about automations I can show you one right now that is ridiculously easy – when you click on the Subscribe button you will automatically receive a confirmation mail. When you confirm that you are not a robot you will automatically be subscribed to my Newsletter and you will automatically start to receive articles like this on a weekly basis.

Haa what do you say? And it works every time. Try it out and see by yourself 👉 LINK to my Newsletter page

Now let’s start this article by showing what is needed for our Cheap DIY Motion sensor that works Home Assistant & ESPHome

What is needed to DIY Motion sensor that works with Home Assistant?

You will need the following items to complete the DIY Motion sensor:

Wemos D1 Mini

Wemos D1 Mini is an ESP8266 chip based device that will allow your future smart DIY motion sensor to connect to your Wi-Fi and to communicate with the PIR sensor. It cost around $2-3 US dollars in AliExpress.

Wemos D1 Mini (AliExpress Affiliate Link) – https://s.click.aliexpress.com/e/_AFgAIp

To DIY your Motion Sensor you will need a board like this D1 Mini that can control a PIR Sensor and can connect to your Wi-Fi. D1 Mini is a ESP8266 based device, but you can use other similar board or ESP32 based devices.
To DIY your Motion Sensor you will need a board like this D1 Mini that can control a PIR Sensor and can connect to your Wi-Fi. D1 Mini is a ESP8266 based device, but you can use other similar board or ESP32 based devices.

PIR Sensor (HC-SR501)

The exact model of the PIR Sensor that we are going to use is HC-SR501. This sensor is used to detect movements and to send signals to D1 Mini. The model have two knobs to adjust sensitivity and delay. It cost around $1 – 1.5 US dollars and you can buy a pack of 5 which comes even cheaper.

5 Pack Hc-sr501 Pir Motion Ir Sensor Body Module Infrared (AliExpress Affiliate Link) – https://s.click.aliexpress.com/e/_Atijaj

To DIY your Motion Sensor you will need a PIR Sensor like this HC-SR501 model.
To DIY your Motion Sensor you will need a PIR Sensor like this HC-SR501 model.

Jumper (Dupont) wires

To connect the D1 Mini to the PIR sensor you will need three wires. The best will be to use dedicated for that wires called jumper or Dupont wires. They are coming in different length and endings, but you will need the 10cm female-to-female models.

3x Female-to-Female Jumper Dupont wires 10cm long are perfect for our DIY Motion Sensor.
3x Female-to-Female Jumper Dupont wires 10cm long are perfect for our DIY Motion Sensor.

40pcs 10cm jumper (Dupont) wires – https://s.click.aliexpress.com/e/_A3YiR3

USB cable

Finally, you will need one USB type-A (regular USB) to microUSB cable. If you have an old phone charger grab the cable from there and tell you spouse that she lost it somewhere 🤪

If you don’t have such cable and/or adapter you can use the links below:

Connecting D1 Mini and PIR sensor


Some PIR sensors have the GND and power supply pins swapped, so please open the plastic dome to see the pin mapping of your PIR sensor. Check that first and then you need to connect GND pin on the PIR Sensor to the GND pin on your D1 Mini board and VCC to a 5V on the D1 Mini. Next you need to connect the PIR Sensor signal pin (OUT) to GPIO13 or D7 as it is written on the D1 Mini.

Connecting D1 Mini and PIR sensor to make the DIY Motion Sensor. The USB connection to Home Assistant / ESPHome is only needed for installing the ESPHome as you will see later in the article.
A Diagram showing how to connect D1 Mini and PIR sensor to make the DIY Motion Sensor. The USB connection to Home Assistant / ESPHome is only needed during the installation of the ESPHome as you will see later in the article.

That was it. Now you need an USB cable and Home Assistant and few more minutes to finish everything (If you don’t have Home Assistant check my article about it 👉 LINK).

Install ESPHome as Home Assistant add-on

Time to install ESPHome as Home Assistant add-on which is pretty easy, but not as easy as subscribing to my YouTube channel and hitting the notification bell (link to my YouTube channel), nevertheless let’s see it.

  • Open your Home Assistant.
  • Go to Supervisor > Add-On Store > Search for ESPHome and click on the result> Click Install button.
  • After the installation has finished, click on the Start button and the Open Web UI button.
Starting ESPHome add-on in Home Assistant in order to install ESPHome firmware on the D1 Mini later and to make our DIY Motion Sensor accessible.
Starting ESPHome add-on in Home Assistant in order to install ESPHome firmware on the D1 Mini later and to make our DIY Motion Sensor accessible.

Editing the ESPHome configuration

We are almost ready with the ESPHome, we just have to edit the ESPHome configuration a little bit and to install the ESPhome firmware on the D1 Mini. Here is how.

Click on Add Node button inside ESPHome UI to Install ESPHome on the D1 Mini

Click on Add Node button inside the ESPHome UI

A new dialog will be shown where you can a type a name (like pir-sensor-1) and your Wi-Fi SSID and password.

Enter a name and your Wi-Fi credentials to continue here

Click Next button when you are ready!

On the next dialog you should select your ESP board. Click on Pick specific board and from the dropdown list select the Wemos D1 and Wemos D1 Mini option, then click Next button.

Cheap DIY Motion Sensor that works with ESPHome & Home Assistant 1

TIP!: If your board is not D1 Mini check the ESPHome website to see what exactly to select here.

Click on the Edit button under the newly created ESPHome node and paste the following code under the captive_portal section:

binary_sensor:
  - platform: gpio
    pin: 13
    name: "PIR Sensor"
    device_class: motion


These instructions are coming from the official ESPhome webpage and the only thing that you have to modify here is the pin section where you should type 13. This is because we connect the PIR Sensor to GPIO13 (D7) on the D1 Mini.

Editing the ESPHome node configuration and adding the binary motion sensor section.
Editing the ESPHome node configuration and adding the binary motion sensor section.

Save the changes and close this window. We are now ready to install ESPHome on the D1 Mini.

Install ESPHome on the D1 Mini

After we edited the ESPHome configuration it is time to install the ESPHome on the D1 mini. Here is how:

  • Connect your D1 Mini (our future DIY Motion Sensor) to one of the USB port of your device where Home Assistant and ESPHome are installed.
  • Click on Validate button to check if everything is fine with the configuration and then click on the Install button to install the ESPHome on the D1 mini.
  • From the next dialog select the option named – Plug into the computer where running ESPHome Dashboard then pick the port where D1 Mini is connected (usually there is only one option here).
Plug the microUSB to D1 mini and the other end of the cable in the device where Home Assistant / ESPHome is running
Plug the microUSB to D1 mini and the other end of the cable in the device where Home Assistant / ESPHome is running
  • Wait for the ESPHome installation to finish and if you are having similar screen like the one below – everything is great and you have working DIY Motion Sensor now.
The DIY Motion sensor is sending its state (ON and OFF) when you move in front of it. That is a very good sign.
The DIY Motion sensor is sending its state (ON and OFF) when you move in front of it. That is a very good sign.

TIP!: Alternatively you can try to use ESP Web Tools (More info can be found in my ESP Web Tools article), but this method require secure connection to your system via HTTPS protocol to work.

We are complete with the hardware part and the EPSHome part. The things that are left is to add our DIY Motion Sensor to Home Assistant and then to create some automations. Let’s do this.

Add the DIY Motion sensor to Home Assistant

When you do all of the steps from above it is very likely the Home Assistant will automatically detect your new device, our brand new DIY Motion Sensor. You can tell that if you see a little notification in the lower left corner of your screen.

Cheap DIY Motion Sensor that works with ESPHome & Home Assistant 2
If there is no new notification go to Configuration > Integrations menu in Home Assistant and search for your device there.

Then do the following:

  • Click on the notification, and then on Check it out link to see the newly found device.
  • Locate your new device that has been discovered within your Home Assistant integrations.
  • Click on the Configure button > Submit > Finish.
Configure the DIY Motion sensor to successfully add it to Home Assistant.
Configure the DIY Motion sensor to successfully add it to Home Assistant.

Now you can add the DIY Motion sensor to the Home Assistant Lovelace / Dashboard by click on 1 device link under the already configured device.

Click on 1 device button to add the DIY Motion Sensor to Home Assistant Lovelace
Click on 1 device button to add the DIY Motion Sensor to Home Assistant Lovelace

Then you just have to click on the Add to Lovelace button. And you will have the DIY Motion Sensor in Home Assistant. Ready to be used and abused 😉

Final step before adding the DIY Motion Sensor to Home Assistant Lovelace
Final step before adding the DIY Motion Sensor to Home Assistant Lovelace

How to make Home Assistant automation with the DIY Motion Sensor?

Time to make a simple yet effective automation which will be the following: when the motion sensor is activated turn a light on.

Before that I have a challenge for you. If you reach this point and your PIR DIY Motion sensor is working at the moment – let me know in the comments by just type: #PIRowned. That will make me as happy as you are.

Now let’s finish this Home Assistant automation.

You can follow the GUI instructions as seen in my video (from time 09:02) or you can edit your automations.yaml file and paste the following YAML inside:

# automations.yaml entry
alias: When PIR motion sensor is activated
description: ''
trigger:
  - platform: state
    entity_id: binary_sensor.pir_sensor
    to: 'on'
condition: []
action:
  - service: light.turn_on
    target:
      entity_id: light.shellybulbduo_8caab5616d5c
mode: single

Make sure that you change the entity_id: binary_sensor.pir_sensor with your sensor name and entity_id: light.shellybulbduo_8caab5616d5c with your light.

Reload your automations from Configuration > Server Controls and you are ready to test the automation. Just move your hand in front of the sensor and your light should automatically turn on 🥂

Outro

For around $4 US dollars and several minutes of our life we made a Smart Motion Sensor that can be used in Home Assistant automations to make our Home Smarter. The only thing that is missing is to subscribe to my YT channel if you haven’t done that already as well as 3D printed case for our DIY Motion Sensor.

Here is a link to some 3D printed cases that I found online. I didn’t try them, but you may like something from there. If you manage to make a 3D printed case by yourself let me know in the comments and I promise to add a link to it in the YouTube video description and here on my website.

Feel free to secure this website and channel existence by becoming one of my Patreons or by using any of the other methods listed in this section of my site.

Stay safe and don’t forget Home Smart, but not hard

Thank you for reading and I will see you next Wednesday!


9 Comments

Juergen · 01/07/2021 at 8:43 pm

Hello,
thanks for the very interesting contribution to the
DIY motion sensor.
What kind of housing did you use and how did you solve the power supply?
Many thanks and greetings
Juergen

    KIril Peyanski · 02/07/2021 at 11:22 pm

    Hi Juergen, I’m looking for a good 3d printed case (but not so hard). Meanwhile I’m using the plastic part of a big kinder surprise egg to power the sensor I’m using regular USB adapter 1A or 2A can’t remember exactly.

Thib · 04/11/2021 at 6:35 pm

How do you power the snsor? using ESPHome, it seems that a battery powered sensor would run out of battery very quickly (few hours, maybe a day)…

    Kiril · 14/11/2021 at 9:58 pm

    I’m powering it using an USB adapter, I don’t know how batteries can be added efficiently

Adrian · 17/06/2022 at 4:56 am

Much appreciated. I spent a good amount of time researching until I found your blog. Thank you! #PIRowned

    KIril Peyanski · 17/06/2022 at 8:21 am

    Welcome on board Adrian! Enjoy your Cheap DIY Motion sensor!

Tomas · 23/01/2023 at 3:11 am

Hi, do you know how to install this sensor on Home Assistant running as virtual machine on Synology NAS drive? Validation went fine, but Install is giving a message “No serial devices found. ” Is it not recognized by NAS? I used the same USB port to run bluetooth dongle and it was recognized by Home assistant, so I know USB is working.

mr · 20/03/2024 at 11:01 pm

#PIRowned
Thanks for your great articles. They’ve introduced me to this cool new world of ESPHome which, honestly, is pretty hard to understand if you just try to use their website. So far I’ve built this and the mmWave sensor.

    KIril Peyanski · 21/03/2024 at 7:35 am

    Congratulations and welcome to the club! Thanks for the efforts and for the good words about my articles 🙂 Also don’t forget to check my other DIY Smart Sensor articles as I have plenty of them…

Leave a Reply

Avatar placeholder

Your email address will not be published. Required fields are marked *