Advertisement
rompirompi00

hotword

May 20th, 2019
171
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.63 KB | None | 0 0
  1. {
  2. module: "MMM-Hotword",
  3. position: "top_right",
  4. config: {
  5. mic: {
  6. recordProgram: "arecord",
  7. device: "plughw:1"
  8. },
  9. models: [
  10. {
  11. hotwords : "computer",
  12. file : "computer.umdl",
  13. sensitivity : "0.5",
  14.  
  15. },
  16. ],
  17. commands: {
  18. "computer": {
  19. notificationExec: {
  20. notification: "ASSISTANT_ACTIVATE",
  21. payload: (detected, afterRecord) => {
  22. return {profile:"default"}
  23. }
  24. },
  25. restart:false
  26. }
  27. }
  28. }
  29. },
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement