Compare commits

..

1 commit

Author SHA1 Message Date
a8abe17fba modify readme 2016-10-02 22:07:24 +02:00
4 changed files with 3 additions and 36 deletions

0
README Normal file
View file

View file

@ -1,2 +1,4 @@
# mPower Utils # # mPower Utils #
actually moving from sh to python this are some private scripts for managing mfi devices
## Maintainer ##
* Siegfried Krug <siegfried@fg4f.de>

View file

@ -1,12 +0,0 @@
#!/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:

View file

@ -1,23 +0,0 @@
#!/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 )