blob: 5147731f840996ce2eaa969996cae12920960d73 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
---
title: CatBus
subtitle: a home automation platform built on MQTT
date: 2020-02-20
---
{% extends 'templates/base.html' %}
{% block body %}
<nav>
<a href='/projects'>> projects</a>
</nav>
<header>
<h1>{{ title }}</h1>
<p>{{ subtitle }}</p>
</header>
{% markdown %}
CatBus is a home automation platform designed to be low configuration, easily extendable without dependence on the internet, and suitable for automation by multiple independent daemons.
- [design](/catbus-design)
- actuators:
- [for Energenie relay sockets](https://github.com/ethulhu/mqtt-energenie-bridge)
- [for `usbrelay`-compatible USB relays](https://github.com/ethulhu/catbus-usbrelay-bridge)
{% endmarkdown %}
{% endblock %}
|