docs: HA Google Home config deployed + verified (correct entity id)

Deployed script.print_daily_briefing (scripts.yaml) and exposed it in
google_assistant.entity_config on VM HA .146; ha core check passed, restarted,
request_sync OK. Verified end-to-end: HA script -> MQTT -> bridge -> printed.
Corrects the button entity id to button.pos_briefing_print_daily_briefing.

Co-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com>
This commit is contained in:
Mortdecai
2026-06-07 14:00:46 -04:00
parent b9865be55f
commit 5ddac79fc7
+58 -64
View File
@@ -1,73 +1,67 @@
# HA + Google Home setup — POS Briefing button # HA + Google Home setup — POS Briefing button (DEPLOYED 2026-06-07)
The MQTT bridge (`pos-briefing-mqtt.service` on steel141) auto-creates an HA Status: **deployed and verified end-to-end** on VM HA (`192.168.0.146`, HAOS 2026.2.3),
button via MQTT discovery. Google's `google_assistant` integration does not except the final Google-app tap (yours to try).
support `button` entities, so we wrap the button in a `script` (scripts expose to
Google as a **Scene** = a tappable button in the Home app).
Chain: **Google Home tap → HA script`button.press` → MQTT `posbriefing/button/press` Chain: **Google Home tap → HA `script.print_daily_briefing``button.press`
→ bridge runs `pos_briefing.py` → prints on the TM-m30.** MQTT `posbriefing/button/press` (broker CT 301) → `pos-briefing-mqtt.service` on
steel141 → `pos_briefing.py` → printer (by MAC) → TM-m30.**
## 0. Confirm the entity exists Google's `google_assistant` integration doesn't support `button` entities, so the
Settings → Devices & Services → **MQTT** → device **POS Briefing**. You should see MQTT-discovery button is wrapped in a `script`, which Google exposes as a **Scene**
button **Print Daily Briefing** (entity `button.print_daily_briefing`). Pressing it (a tappable button in the Home app).
in HA should print a receipt. (Status is published on `posbriefing/status`:
`idle`/`printing`/`ok`/`error:<msg>`; availability on `posbriefing/availability`.)
If the entity id differs, use whatever HA shows in the script below. ## What was deployed (VM HA `/config`, backed up to `/config/.backup/`)
## 1. Add the script 1. **`scripts.yaml`** — the script (note the real discovery entity id, which HA
Settings → Automations & Scenes → **Scripts** → (top-right) Edit in YAML, or paste prefixed with the device name):
into `scripts.yaml`: ```yaml
```yaml print_daily_briefing:
print_daily_briefing: alias: Print Daily Briefing
alias: Print Daily Briefing sequence:
sequence: - action: button.press
- service: button.press target:
target: entity_id: button.pos_briefing_print_daily_briefing
entity_id: button.print_daily_briefing mode: single
mode: single ```
``` 2. **`configuration.yaml`** — `script.print_daily_briefing` added to the existing
`google_assistant.entity_config` (alongside the LG TV + projector; nothing else
touched):
```yaml
google_assistant:
# ...existing project_id / service_account / report_state / expose_by_default...
entity_config:
script.print_daily_briefing:
name: Print Daily Briefing
expose: true
# switch.big_tv_lg_tv ... media_player.mitsubishi_projector ... (unchanged)
```
3. `ha core check` passed → `ha core restart` → `google_assistant.request_sync` (HTTP 200).
## 2. Expose the script to Google ## Verified
Add to the SAME `google_assistant:` block that already exposes the LG TV switch - `script.print_daily_briefing` loaded in HA (state `off`, "Print Daily Briefing").
(keep your existing `project_id` / `service_account` lines): - Firing the script via HA API → bridge logged `Received: PRESS` → `Running briefing...`
```yaml → `Briefing printed OK` → **physical receipt printed**.
google_assistant: - MQTT discovery button is `button.pos_briefing_print_daily_briefing` (Settings →
project_id: <your existing project_id> Devices → MQTT → **POS Briefing**).
service_account: !include <your existing service_account file>
report_state: true
exposed_domains:
- switch
entity_config:
script.print_daily_briefing:
name: Print Daily Briefing
expose: true
```
Reload (Developer Tools → YAML → "Google Assistant" or restart HA).
Reminders from the lgtv 2026-06-06 linking (already satisfied for your setup): ## Your only remaining step
manual `google_assistant` integration (not Nabu Casa); account-linking scopes must Open the Google Home app (account `slingshooter08`). **Print Daily Briefing** should
include `email` + `name`; the **"HTTP basic auth header" checkbox must be OFF**; the appear as a control (after the request_sync; if not, say "Hey Google, sync my
Google **Test** must be activated by the same account used in the Home app devices"). Tap it → receipt prints. Optionally assign it a room / rename.
(slingshooter08). The GCP OAuth consent screen is unrelated to smart-home linking —
don't touch it.
## 3. Sync to Google Home
Say "Hey Google, sync my devices" (or re-run device setup in the Home app). The
button appears as **Print Daily Briefing**; tapping it prints the receipt.
## Optional: surface print status in HA
Add an MQTT sensor (configuration.yaml) if you want to see the last result:
```yaml
mqtt:
sensor:
- name: "POS Briefing Status"
state_topic: "posbriefing/status"
availability_topic: "posbriefing/availability"
```
## Notes ## Notes
- A print takes ~12 min (gemma4:26b summarization). The button returns immediately; - A print takes ~12 min (gemma4:26b summarization). The button/scene returns
watch `posbriefing/status` go `printing``ok`. immediately; `posbriefing/status` goes `printing` → `ok`. A second press while one
- A second press while one is in flight is ignored (debounced) — no double prints. is in flight is ignored (debounced) — no double prints.
- Google-linking invariants (from lgtv 2026-06-06, already satisfied — don't re-fix):
manual `google_assistant` integration; account-linking scopes include `email`+`name`;
"HTTP basic auth header" checkbox OFF; the GCP OAuth consent screen is unrelated.
- Optional MQTT status sensor (configuration.yaml) if you want last-result visibility:
```yaml
mqtt:
sensor:
- name: "POS Briefing Status"
state_topic: "posbriefing/status"
availability_topic: "posbriefing/availability"
```