Finish most of the basic features, add few services

This commit is contained in:
Adrian Jagielak
2025-07-22 23:21:34 +02:00
parent 4a18c249cd
commit ff38146ac4
23 changed files with 1039 additions and 84 deletions

View File

@@ -0,0 +1,7 @@
import { MqttClient } from "mqtt/*";
export let ha: MqttClient | undefined = undefined;
export function setHa(client: MqttClient) {
ha = client;
}