Skip to content
/ uhome Public

A MicroPython module for simplified Home Assistant MQTT Auto Discovery.

License

Notifications You must be signed in to change notification settings

ederjc/uhome

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

6 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

License Commit activity Issues Pull requests

uhome

A MicroPython module for simplified Home Assistant MQTT Auto Discovery.

Note

This project is work in progress and not covering all Home Assistant MQTT entity types, yet. If you are missing an entity type feel free to contribute or open an issue.

Overview

Home Assistant Auto Discovery is a great and powerful feature, but hard to set up the first time(s). The uhome module is providing a simple and object-oriented interface to set up Auto Discovery for devices & entities in Home Assistant. You can use it for example to bring your custom MicroPython-compatible sensor in Home Assistant in a quick & simple, yet powerful & versatile way.

Behind the scenes, the module wraps the handling of .json configuration messages, hides redundancies and allows simple creation of devices and entities which can be auto-discovered by Home Assistant.

Dependencies

This module needs an MQTT client object from the umqtt module for MicroPython. It can be installed in MicroPython as follows:

import mip
mip.install('umqtt.simple')
import umqtt.simple

Installation in MicroPython

The module can be installed using mip with these commands:

import mip
mip.install('github:ederjc/uhome/uhome/uhome.py')

Usage in MicroPython

  1. Setup a device:
import uhome
device = uhome.Device('Device Name')

At least one device is required as foundation to create entities.

  1. Create a MQTT client object:
mqttc = umqtt.simple.MQTTClient(device.id, <your mqtt broker address>, keepalive=60)

A MQTT client object is required to handle communication. Make sure to set a decent keepalive value in order to make the availability feature of the uhome module work properly.

  1. Let the device know that it should use the mqttc object to communicate:
device.connect(mqttc)
  1. Create an entity:
signal_strength = uhome.Sensor(device, 'Signal Strength', device_class="signal_strength", unit_of_measurement='dBm', entity_category="diagnostic")

For demonstration we are using the Wi-Fi signal strength which can be aquired from the network API on MicroPython devices, so no external sensor is required. This will be a continual value, therefore we use the uhome.Sensor() class for creating a MQTT Sensor. If it would be a binary sensor like a window contact we would use uhome.BinarySensor(). The first argument is the device this entity will be assigned to, the second argument is the name of the entity. This name will also be used to derive the unique identifier. All other arguments are passed as keyword arguments directly into the Auto Discovery configuration. You can read up their meaning on the respective Home Assistant docs page, e.g. for here for MQTT Sensor entities.

  1. Discover Now the configuration of the entity can be sent to Home Assistant, the entity can be "auto-discovered":
device.discover_all()

Note that I am using device.discover_all() here instead of signal_strength.discover(). This simplifies the process if you have created multiple entities. One call of device.discover_all() will report all entities assigned to device to Home Assistant.

  1. Publish The device and entity will now appear in Home Assistant (under Settings -> Integrations -> MQTT). The value will show as unknown, because we did not publish any value to our signal strength entity, yet. We can do this using this command:
signal_strength.publish(f'{sta.status('rssi'):.0f}')

In this case sta is the network object used to connect to the Wi-Fi network. Have a look here for details. sta.status('rssi') gives the signal strength in dBm and the :.0f cuts all decimals.

More Information

Home Assistant

About

A MicroPython module for simplified Home Assistant MQTT Auto Discovery.

Resources

License

Stars

Watchers

Forks

Packages

No packages published

Languages