This module interacts with the MagicMirror to let you know if Open Voice OS is listening. When a wake word is detected, an image is displayed and when the recording is done the image disappears.
The Open Voice OS MagicMirror² wake word skill interacts with this MagicMirror² module which is why this skill is required on the Open Voice OS device.
Clone this repository into ~/MagicMirror/modules
(replace with your path) directory.
cd ~/MagicMirror/modules
git clone https://github.com/smartgic/MMM-ovos-wakeword.git
Then update the MagicMirror configuration file ~/MagicMirror/config/config.js
(replace with your path).
{
module: "MMM-ovos-wakeword",
position: "lower_third",
config: {
title: "Open Voice OS",
apiKey: "en323q9WBNMK3Q04WIPNEAsdfhesammhp44",
maxMessages: 1,
opacity: 0.5
}
}
In order to reach the /ovos
route on your MagicMirror, you need to allow the remote connection for a specific IP address or for a network range in your MagicMirror by changing the ~/MagicMirror/config/config.js
(replace with your path).
ipWhitelist: ['127.0.0.1', '::ffff:127.0.0.1', '::1', '::ffff:192.168.1.1/24'];
The example above will allows all the connection from 192.168.1.0/24
network to perform remote connections.
Option | Default | Description |
---|---|---|
maxMessages |
5 |
How many messages should be displayed on the screen. |
image |
wakeword.png |
Image file to use (the image should be within the images directory). |
width |
100% |
Image max width size. |
height |
100% |
Image max height size. |
opacity |
1.0 |
Image opacity. |
title |
Open Voice OS |
The name placed above the received messages. |
apiKey |
None |
API key required to POST a notification. |
This module expose an extra route, /ovos
which only supports POST
method.
Header | Description |
---|---|
X-Api-Key | This should match the apiKey value registered into MagicMirror configuration file. |
Parameter | Description |
---|---|
notification | Notification identifier, if set to OVOS_SEND_MESSAGE , the payload will be printed by the module. |
payload | JSON payload to pass to the notification. |
Only two notifications are supported:
OVOS_SEND_MESSAGE
OVOS_DELETE_MESSAGE
This command displays an image on the mirror with the Listening
message.
$ curl -H "Content-Type: application/json" \
-H "X-Api-Key: en323q9WBNMK3Q04WIPNEAsdfhesammhp44" \
-X POST \
-d '{"notification":"OVOS_SEND_MESSAGE", "payload": "Listening"}' \
http://192.168.1.97:8080/ovos
This command deletes the image on the mirror.
$ curl -H "Content-Type: application/json" \
-H "X-Api-Key: en323q9WBNMK3Q04WIPNEAsdfhesammhp44" \
-X POST \
-d '{"notification":"OVOS_DELETE_MESSAGE", "payload": "null"}' \
http://192.168.1.97:8080/ovos
This module has been forked from MMM-kalliope and refactored by Smart'Gic.