This commit is contained in:
2026-09-11 14:09:04 -04:00
parent 68d7a40605
commit 5c6c94713a
16 changed files with 539 additions and 16 deletions
+1 -1
View File
@@ -10,7 +10,7 @@ export async function serveOnSessionBus(daemon) {
Arm() { daemon.arm(); }
Sleep() { daemon.sleep(); }
Shutdown() { daemon.close(); }
PushToTalk(pressed) { daemon.emit('PushToTalk', Boolean(pressed)); }
PushToTalk(pressed) { daemon.setPushToTalk?.(Boolean(pressed)); }
Say(text) { return daemon.say?.(text); }
Ask(text) { return daemon.ask(text); }
Cancel() { daemon.cancel(); }