I have been using the always listening voice command feature extensively. It works so well that I have been considering replacing all my echo dots with this.
However, one of the thing that prevent me from doing that is the reliability of it hearing my command accurately comparing to echo dot. If I place my phone next to an echo dot and speak from a distance, only echo dot can understand me correctly. While my phone didn’t get what I said.
I believe this is hardware limitation rather than a software issue. While echo dot has 8 microphones array in it’s body, my phone has only one.
To overcome this limitation, I’m thinking of using an external device that has really good mic. But I don’t know any in the market.
The problem with Bluetooth mic is it is not always listening. It works great when you make a phone call but I don’t think it will work as always listening virtual assistant. I’m thinking of PS3 eye but you need a USB port for that.
Yes. I plan to put my old phones in all my rooms.
Yes. Zanzito will listen to command and publish to a topic with a payload. HA will trigger the automation to turn on/off devices using mqtt trigger.
Yes, better than a phone always on. Need to be verified that a mic is always listening, maybe to find an app that does that.
Let me know if you find one
this is great. maybe i can install this in my phone and use my phone as remote mic for the zanzito in my rooms.
Yes. Basically this is much versatile than Alexa. I’m planning to use it for these commands…
“Turn on/off lights (or any devices)”
“Tell me a joke” - reply back with random jokes
“Where is my phone?” - reply back location name and trigger my phone alarm.
“Set timer for XXX minutes” - will sound the alarm after XXX minutes.
“Wake me up at X o’clock” - will trigger my alarm clock automation at X o’clock.
“Good morning” - will great me back and read out current weather forecast and any calendar events.
“How is the weather” - will reply back with the current weather status and forecast.
“Thank you” - reply back “you are welcome”.
“How are you?” - reply back with “I am fine” or “I’m not feeling good” and follow by the CPU, RAM and storage status.
“Who is at home?” - reply back with the list of occupants that are still at home.
“Who is away?” - reply back with the list of occupants that are away.
“Where is XXX?” - reply back with the zone name of the XXX that is currently in.
“Pause TV”, “Resume TV”, “Turn up volume/louder”, Turn down volume/softer", “Mute TV”, Unmute TV", “Play next”, “Play previous”, “Stop TV” - use it to control the TV/Plex
“Good night” - run the “good night script” (turn off all switches, turn on night lamp) and wish you good night.
“Play some music” - play random playlist from Spotify.
That’s all I have in mind. Feel free to suggest more “skills” to me. Thanks.
All can be done using automation. Example of “Where is my phone” command…
in Zanzito (every rooms)…
Add this activity…
Name: Chit chat (or anything you like)
Topic: %devicename%/chitchat
Payload: whereismyphone
Voice cmd: where is my phone
Make sure your phone also has Zanzito with the device name “mydevicename”.
In HA automation…
- alias: 'MQTT Chit Chat - where is my phone?'
trigger:
platform: mqtt
topic: +/chitchat
payload: "whereismyphone"
action:
- service: mqtt.publish
data:
topic: zanzito/mydevicename/alarm/play
- service: mqtt.publish
data_template:
topic: >-
zanzito/{{ trigger.topic.split('/')[-2] }}/notification
payload: >-
Your phone is{% if states('device_tracker.owntrack_user1') == 'not_home' %} not at home {% else %} at {{states('device_tracker.owntrack_user1)}} {% endif %}. I have triggered the alarm so that you can find it. Good Luck!
The concept is very simple. Zanzito is just capturing your voice and then trigger the corresponding activities you have created in Zanzito. The corresponding activity will publish to the specified MQTT topic with the payload.
With this MQTT message, it will trigger the relevant automation in HA using MQTT trigger. If you are familiar in creating automation in HA, then you can automate all sorts of things using your voice.
I did just try to change my mosquitto server certificate. I was using a certificate create from instructions in Owntracks, using a self-created ca certificate.
I switched to a server certificate from cacert.org. I’m still getting the same error with Zanzito, but Owntracks is working fine.
What I noticed was that Owntracks did give me the same error until I updated the path to the ca certificate file inside Owntracks. As far as I can see there are no option inside Zanzito to specify the ca certificate, could that be where the problem originate?
Would I be abusing if I asked you to share your configurations of zanzito? Is this even possible? So that maybe have some sort of cookbook for zanzito based on your work since i guess you are the one with more use cases onto zanzito
Sure. I plan to share my examples once I get everything works perfectly. I am still in Work in Progress stage. I might share them in another thread so that I won’t flood this thread with unrelated posts.