-
-
Notifications
You must be signed in to change notification settings - Fork 13
Voice Control
KNOOP edited this page Jun 29, 2026
·
5 revisions
Voice control is the core feature of Ava, allowing you to control smart home devices by speaking.
Compatible with Android 5-16.
┌─────────────┐ ┌─────────────┐ ┌─────────────┐ ┌─────────────┐
│ You speak │ -> │ Ava records │ -> │Home Assistant│ -> │ Ava plays │
│ wake word + │ │ sends audio │ │ speech │ │ voice │
│ command │ │ │ │ recognition │ │ reply │
└─────────────┘ └─────────────┘ └─────────────┘ └─────────────┘
Detailed Flow:
- Standby: Ava continuously listens for wake word (local processing, no internet)
- Wake Detection: When wake word detected, plays prompt sound, starts recording
- Audio Transmission: Recording sent to Home Assistant via ESPHome protocol
- Speech Recognition: Home Assistant's voice assistant performs speech-to-text
- Intent Processing: Home Assistant understands intent and executes action
- Speech Synthesis: Home Assistant generates voice response
- Playback: Ava receives and plays voice response
| Topic | Description |
|---|---|
| LLM Integration | Claw Assistant — multi-turn tool calls, Ava device detection, voice intent map, ADB runbook, workspace persona, 50+ tools |
| Wake Word Engines | microWakeWord vs vsWakeWord — architecture, comparison, engine switching, visual feedback, stop words |
| Custom Wake Words | Import custom wake word models via in-app library or APK injection — microWakeWord and vsWakeWord formats |
| Voiceprint Recognition | On-device speaker identification — Manual mode (enrollment-based gating) and Automatic mode (passive learning) |
| Audio Event Detection | Local detection of household sounds — alarm, baby crying, doorbell, glass breaking, siren, cough, speech |
| Audio Configuration | Microphone settings, noise suppression, echo cancellation, gain, continuous conversation, subtitles, mute |
| Text to Speech | Standard vs Streaming TTS playback, whisper response, announcement, pipeline error i18n, recommended TTS engine |
| Settings Summary & Services | Complete settings reference, Home Assistant services, and FAQ |
Back to Home