Compare commits
4 commits
master
...
moving_to_
Author | SHA1 | Date | |
---|---|---|---|
9792e0b701 | |||
30c780a1d3 | |||
c54bedbf60 | |||
ba80fc6691 |
4 changed files with 37 additions and 0 deletions
0
README
0
README
2
README.md
Normal file
2
README.md
Normal file
|
@ -0,0 +1,2 @@
|
|||
# mPower Utils #
|
||||
actually moving from sh to python
|
12
light_switch.py
Executable file
12
light_switch.py
Executable file
|
@ -0,0 +1,12 @@
|
|||
#!/bin/python
|
||||
host = "127.0.0.1"
|
||||
user = "admin"
|
||||
passwort = ""
|
||||
|
||||
|
||||
#trying it with ssh
|
||||
import subprocess
|
||||
proc = subprocess.Popen(['ssh', 'user@host', 'echo 1 > /proc/power/output1'],
|
||||
stdin=subprocess.PIPE)
|
||||
|
||||
if proc.retcode != 0:
|
23
toggle.sh
Normal file
23
toggle.sh
Normal file
|
@ -0,0 +1,23 @@
|
|||
#!/bin/bash
|
||||
export PATH=/opt/local/bin:/opt/local/sbin:$PATH
|
||||
export MANPATH=/opt/local/share/man:$MANPATH
|
||||
#
|
||||
# test if mpower IP , port and output is passed to script
|
||||
#
|
||||
if [ $# -ne 3 ] # Test number of arguments to script.
|
||||
then
|
||||
echo "MpowerOnOff.sh - Parameters IP, port(1-8) or output(0|1) not specified as a parameter"
|
||||
exit
|
||||
fi
|
||||
MpowerURL="$1"
|
||||
MpowerPort="$2"
|
||||
MpowerOutput="$3"
|
||||
MpowerCmd="output="$MpowerOutput" -b ""AIROS_SESSIONID=01234567890123456789012345678901"" "$MpowerURL"/sensors/"$MpowerPort
|
||||
#echo $MpowerURL
|
||||
#echo $MpowerPort
|
||||
#echo $MpowerOutput
|
||||
#echo $MpowerCmd
|
||||
#login
|
||||
curl --silent -X POST -d "username=admin&password=marshall" -b "AIROS_SESSIONID=01234567890123456789012345678901" $MpowerURL"/login.cgi"
|
||||
#toggle port
|
||||
echo $(curl --silent -X PUT -d $MpowerCmd )
|
Loading…
Reference in a new issue