-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
693f751
commit 6513b5a
Showing
1 changed file
with
19 additions
and
5 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,11 +1,25 @@ | ||
# Simple OVOS Texting Skill | ||
|
||
Introductory Skill so that Skill Authors can see how an OVOS Skill is put together | ||
In order to enable SMS ability, you need a cellular module. So far this skill works with Waveshare's SIM7600X HAT. This is a skill rather than a plugin because of it simple task to only text one phone number. Also, you need to define the word "emergency" as one of OVOS's hotword. | ||
|
||
## About | ||
``` | ||
"hotwords":{ | ||
"Emergency":{ | ||
"module":"ovos-ww-plugin-vosk", | ||
"samples":["emergency"], | ||
"lang": "en", | ||
"rule":"fuzzy", | ||
"listen":false, | ||
"active":true, | ||
"bus_event":"text.emergency" | ||
} | ||
} | ||
``` | ||
|
||
The skill should send a text to a phone number when the user says the word emergency. | ||
## About | ||
|
||
## Tags | ||
The skill send a text to a phone number when the user says the word emergency. | ||
|
||
ovos skill | ||
## Credits | ||
Michelle Tran | ||
Mike Gray's skill generator - https://github.com/mikejgray/ovos-skill-projen |