Skip to content

Integration that uses Home Assistant Kafka integration for creating home automations in .NET and C#

License

Notifications You must be signed in to change notification settings

leosperry/ha-kafka-net

Repository files navigation

HaKafkaNet

A library for easily creating Home Assistant automations in .NET and C#.

Kafka ensures automations are durable and state is restored between restarts.


Special note regarding Home Assistant 2024.8:

The latest release brings a couple big kafka improvements. To take full advatage of these new features, some breaking changes are being added to HaKafkaNet.

See : Version 8 and Home Assistant 2024.8


It was created with the following goals:

  • Create Home Assistant automations in .NET / C# with abilities to:
    • track/retrieve states of all entities in Home Assistant
    • respond to Home Assistant state changes
    • call Home Assistant RESTful services
  • Enable all automation code to be fully unit testable

Example

Example of multiple durable automations. See Tutorial for more examples.

registrar.RegisterMultiple(
    _factory.SunRiseAutomation(
        cancelToken => _api.TurnOff("light.night_light", cancelToken)),
    _factory.SunSetAutomation(
        cancelToken => _api.TurnOn("light.night_light", cancelToken),
        TimeSpan.FromMinutes(-10))
);

Resources

Why ha-kafka-net ?

Dashboard

Image of dashboard This is an image of the dashboard from the example app. See UI for additional details.

How it works

  • State changes are sent from Home Assistant to a Kafka topic
  • HaKafkaNet reads all state changes
  • States for every entitiy allowing for faster retrieval later. It also allows us to have some knowledge about which events were not handled between restarts and which ones were. The framework will tell your automation about such timings to allow you to handle messages appropriately.
  • It then looks for automations which want to be notified.
    • If the entity id of the state change matches any of the TriggerEntityIds exposed by your automation, and the timing of the event matches your specified timings, then the Execute method of your automation will be called with a new Task.
    • It is up to the consumer to handle any errors. The framework prioritizes handling new messages speedily over tracking the state of individual automations. If your automation errors, an ILogger message will be written indicating the error.

More examples

I have made my personal repository public so that users can see working examples of some moderately complex automations.

If you have some examples you would like to share, please start a discussion. I'd be happy to link it here.

Happy Automating!