From 004e79749a70cbe7a993119a2ba8f35d5c6ed75b Mon Sep 17 00:00:00 2001 From: Sam Lewis Date: Sun, 19 Jan 2025 21:18:21 -0500 Subject: [PATCH] update README --- README.md | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index 820459e..2cea3e3 100644 --- a/README.md +++ b/README.md @@ -40,7 +40,11 @@ The general flow is import ga "saml.dev/gome-assistant" // replace with IP and port of your Home Assistant installation -app, err := ga.NewApp("0.0.0.0:8123") +app, err := ga.NewApp(ga.NewAppRequest{ + URL: "http://192.168.1.123:8123", + HAAuthToken: os.Getenv("HA_AUTH_TOKEN"), + HomeZoneEntityId: "zone.home", +}) // create automations here (see next sections)