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
#!/bin/bash | |
# ------------------------------------------------------------------------------------------ | |
# This script mimics the usage of the Home Wizard Lite app | |
# https://gathering.tweakers.net/forum/list_message/52988479#52988479 | |
# ------------------------------------------------------------------------------------------ | |
# It needs three parameters: | |
# - the SmartSwitch you want to control, between quotes (exactly as named in the Home Wizard Lite app) | |
# - the device you want to control, between quotes (exactly as named in the Home Wizard Lite app) | |
# - the action you want to perform, between quotes | |
# Depending on the device you control, one of the following actions may apply: |
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
#!/bin/bash | |
# ------------------------------------------------------------------------------------------ | |
# This script mimics the usage of the Home Wizard Lite app | |
# https://gathering.tweakers.net/forum/list_messages/1802639 | |
# ------------------------------------------------------------------------------------------ | |
# Dependencies: curl and jq (sudo apt-get install curl jq) | |
# It needs three parameters: | |
# - the SmartSwitch you want to control, between quotes (exactly as named in the Home Wizard Lite app) | |
# - the device you want to control, between quotes (exactly as named in the Home Wizard Lite app) | |
# - the action you want to perform, between quotes |