forked from bynds/makevoicedemo
-
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.
Cleaning up useful things i dont need:S
- Loading branch information
1 parent
6deefec
commit 03eddea
Showing
8 changed files
with
67 additions
and
287 deletions.
There are no files selected for viewing
This file was deleted.
Oops, something went wrong.
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,23 +1,13 @@ | ||
{ | ||
"insteon" : { | ||
"IP" : "192.168.X.X:25105", | ||
"username" : "<your-username>", | ||
"password" : "<your-password>" | ||
}, | ||
"hue" : { | ||
"IP" : "192.168.X.X:80", | ||
"username" : "<your-username>" | ||
}, | ||
"hue":{ | ||
"IP" : "192.168.X.X:80", | ||
"username" : "<your-username>" | ||
}, | ||
"devices" : { | ||
"hue" : { | ||
"kitchenlight" : { | ||
"deviceID" : "3" | ||
} | ||
}, | ||
"insteon" : { | ||
"bedroomlight" : { | ||
"deviceID" : "21FA84" | ||
} | ||
} | ||
} | ||
"hue" : { | ||
"kitchenlight" : { | ||
"deviceID" : "3" | ||
} | ||
}, | ||
} | ||
} |
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,8 +1,6 @@ | ||
turn on the kitchen light | ||
turn off the kitchen light | ||
turn on the bedroom light | ||
turn off the bedroom light | ||
turn on the roomba | ||
turn off the roomba | ||
roomba clean | ||
roomba go home | ||
turn kitchen on | ||
turn kitchen off | ||
turn sofa on | ||
turn sofa off | ||
turn table on | ||
turn table off |
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,13 +1,7 @@ | ||
BEDROOM B EH D R UW M | ||
CLEAN K L IY N | ||
GO G OW | ||
HOME HH OW M | ||
KITCHEN K IH CH AH N | ||
LIGHT L AY T | ||
OFF AO F | ||
ON AA N | ||
ON(2) AO N | ||
ROOMBA R UW M B AH | ||
THE DH AH | ||
THE(2) DH IY | ||
SOFA S OW F AH | ||
TABLE T EY B AH L | ||
TURN T ER N |
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,13 +1,11 @@ | ||
#JSGF V1.0; | ||
grammar commands; | ||
|
||
<action> = TURN ON | | ||
TURN OFF ; | ||
<action> = ON | | ||
OFF ; | ||
|
||
<object> = KITCHEN LIGHT| | ||
BEDROOM LIGHT | | ||
ROOMBA ; | ||
<object> = KITCHEN | | ||
SOFA | | ||
TABLE ; | ||
|
||
public <command> = <action> THE <object> | | ||
ROOMBA CLEAN | | ||
ROOMBA GO HOME ; | ||
public <command> = <object> <action>; |
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
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
Oops, something went wrong.