Home Assistant Notifications with WhatsApp - Dumpster Reminder

I created a time based notification in Home Assistant that will remind me to take out the trash every Monday morning.
Sep 29, 2023 — 2 mins read — Home Assistant

Home Assistant Notifications with WhatsApp - Dumpster Reminder

In some of my previous projects and videos, I mentioned that they can be combined with notifications in Home Assistant and since I haven't shown that yet, I decided that I will make a very simple notification example to remind me to take out the trash every Monday morning.

Home Assitant can work with many notification services and choosing the right one for you depends on your preferences and what you already use. Since I already have WhatsApp I decided to go with that route and I found a very simple service called CallMeBot that allowed me to easily achieve that.

The CallMeBot needs to be activated for your phone number and you will then receive an API key for it. The service is limited to sending only to the registered number to prevent misuse and spamming.

With the API key and your phone number, you then need to set up a notification service inside your Home Assistant configuration. This is done by modifying the configuration.yaml file on your setup where you need to enter the code from below.

notify:
  - name: WhatsApp
    platform: rest
    resource: https://api.callmebot.com/whatsapp.php
    data:
      source: HA
      phone: +xxxxxxxxxxxx #enter your phone number here
      apikey: xxxxxx #enter your apikey here

Now with the service ready, we can create the actual automation and you can either do that with the UI editor or with the YAML editor. Below I will have the actual final code of my notification but you can see how I created it in the video.

alias: Take out the trash notification
description: WhatsApp Message to take out the trash every Monday at 7:30 AM
trigger:
 - platform: time
  at: "07:30:00"
condition:
 - condition: time
  weekday:
   - mon
action:
 - service: notify.whatsapp
  data:
   message: It is time to take out the trash!
mode: single


By buying through the links below, you support the channel at no extra cost for you!

This video is a part of a 26 video series on Home Automation DIY Devices as part of the Alphabet Superset challenge! You can check the full playlist here.


whatsapp notification reminder home assistant
Read next

Baby Monitor Camera - Easy Repair

Every day I come across devices that have failed because of a very simple reason and this was again true with the baby monitor camera that m...

You might also enojy this

Review of a GPS Module Reyax RYS8839 and interfacing it on a PC

A while back I got this RYS8839 GPS module from Reyax to test out so I thought I'll give it a try. The module is super tiny, measuring 11 by...