-
-
Notifications
You must be signed in to change notification settings - Fork 160
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
Showing
25 changed files
with
903 additions
and
246 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
Binary file not shown.
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
5 changes: 3 additions & 2 deletions
5
BaseFiles/Common/html/pages/configure/scheduler/templates/command.set-level.js
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,3 +1,4 @@ | ||
// level is a decimal value between 0 and 1 (eg. 0.5 = 50%) | ||
$$.boundModules | ||
.level = 0.5; | ||
level = 0.5; | ||
// set the level | ||
$$.boundModules.level = level; |
9 changes: 5 additions & 4 deletions
9
BaseFiles/Common/html/pages/configure/scheduler/templates/command.therm-heat.js
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,4 +1,5 @@ | ||
// set the mode of all selected thermostat modules to 'Heat' | ||
$$.boundModules | ||
.command('Thermostat.ModeSet') | ||
.set('Heat'); | ||
// Heat, HeatEconomy, Cool, CoolEconomy, Auto, Off | ||
mode = 'Heat'; | ||
// set the mode of all selected thermostat modules to 'Heat' | ||
$$.boundModules.command('Thermostat.ModeSet') | ||
.set(mode); |
3 changes: 1 addition & 2 deletions
3
BaseFiles/Common/html/pages/configure/scheduler/templates/command.therm-off.js
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,4 +1,3 @@ | ||
// switch off all the selected thermostat modules | ||
$$.boundModules | ||
.command('Thermostat.ModeSet') | ||
$$.boundModules.command('Thermostat.ModeSet') | ||
.set('Off'); |
3 changes: 1 addition & 2 deletions
3
BaseFiles/Common/html/pages/configure/scheduler/templates/command.turn-off.js
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,3 +1,2 @@ | ||
// turn off all selected modules | ||
$$.boundModules | ||
.off(); | ||
$$.boundModules.off(); |
3 changes: 1 addition & 2 deletions
3
BaseFiles/Common/html/pages/configure/scheduler/templates/command.turn-on.js
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,3 +1,2 @@ | ||
// turn on all selected modules | ||
$$.boundModules | ||
.on(); | ||
$$.boundModules.on(); |
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
1 change: 1 addition & 0 deletions
1
BaseFiles/Common/html/pages/configure/scheduler/templates/program.say.js
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 |
---|---|---|
@@ -0,0 +1 @@ | ||
$$.program.say('Hello World!'); |
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.