/docs/MyDocs

To get this branch, use:
bzr branch http://darksoft.org/webbzr/docs/MyDocs

« back to all changes in this revision

Viewing changes to Administration/SmartHouse/OpenHAB/scripts/switch_office_light.script

  • Committer: Suren A. Chilingaryan
  • Date: 2022-06-20 03:20:18 UTC
  • Revision ID: csa@suren.me-20220620032018-xquk369l0ukymgaa
Home Assistant

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
if (OfficeLight_Power.state.toString == "ON") {
2
 
  OfficeLight_Power.sendCommand("OFF");
3
 
  return "OFF"
4
 
} else {
5
 
  OfficeLight_Power.sendCommand("ON");
6
 
  return "ON"
7
 
}