mirror of https://github.com/nymea/nymea.git
33 lines
2.2 KiB
Bash
Executable File
33 lines
2.2 KiB
Bash
Executable File
#!/bin/bash
|
|
|
|
# Creates a Mumbi remote
|
|
if [ -z $1 ]; then
|
|
echo "usage $0 host device"
|
|
elif [ $1 == "list" ]; then
|
|
echo "elroremote elroswitch intertechnoremote meisteranker wifidetector"
|
|
elif [ -z $2 ]; then
|
|
echo "usage $0 host device"
|
|
else
|
|
if [ $2 == "elroremote" ]; then
|
|
# Adds an ELRO remote control on channel 00000
|
|
(echo '{"id":1, "method":"Devices.AddConfiguredDevice", "params":{"deviceClassId": "{d85c1ef4-197c-4053-8e40-707aa671d302}","deviceParams":{"channel1":"true", "channel2":"false", "channel3":"false", "channel4": "false", "channel5":"false" }}}'; sleep 1) | nc $1 1234
|
|
elif [ $2 == "elroswitch" ]; then
|
|
# Adds a ELRO power switch on channel 00000 and group E
|
|
(echo '{"id":1, "method":"Devices.AddConfiguredDevice", "params":{"deviceClassId": "{308ae6e6-38b3-4b3a-a513-3199da2764f8}","deviceParams":{"channel1":"false","channel2":"false", "channel3":"false", "channel4": "false","channel5":"false","A":"false","B":"true","C":"false","D":"false","E":"false" }}}'; sleep 1) | nc $1 1234
|
|
elif [ $2 == "intertechnoremote" ]; then
|
|
# Adds an intertechno remote control
|
|
(echo '{"id":1, "method":"Devices.AddConfiguredDevice", "params":{"deviceClassId": "{ab73ad2f-6594-45a3-9063-8f72d365c5e5}","deviceParams":{"familyCode":"J"}}}'; sleep 1) | nc $1 1234
|
|
elif [ $2 == "meisteranker" ]; then
|
|
# Adds an intertechno remote control
|
|
(echo '{"id":1, "method":"Devices.AddConfiguredDevice", "params":{"deviceClassId": "{e37e9f34-95b9-4a22-ae4f-e8b874eec871}","deviceParams":{"id":"1"}}}'; sleep 1) | nc $1 1234
|
|
elif [ $2 == "wifidetector" ]; then
|
|
# Adds a WiFi detector
|
|
(echo '{"id":1, "method":"Devices.AddConfiguredDevice", "params":{"deviceClassId": "{bd216356-f1ec-4324-9785-6982d2174e17}","deviceParams":{"mac":"90:cf:15:1b:ce:bb"}}}'; sleep 1) | nc $1 1234
|
|
elif [ $2 == "mock" ]; then
|
|
# Adds a Mock device
|
|
(echo '{"id":1, "method":"Devices.AddConfiguredDevice", "params":{"deviceClassId": "{753f0d32-0468-4d08-82ed-1964aab03298}","deviceParams":{"httpport":"8081"}}}'; sleep 1) | nc $1 1234
|
|
else
|
|
echo "unknown type $2. Possible values are: elroremote, elroswitch, intertechnoremote, meisteranker, wifidetector, mock"
|
|
fi
|
|
fi
|