diff options
author | James Meyer <james.meyer@operamail.com> | 2010-03-25 16:35:20 (GMT) |
---|---|---|
committer | James Meyer <james.meyer@operamail.com> | 2010-03-25 16:35:20 (GMT) |
commit | c72e5b283fb8b8cb83158fa8b81c1557b6d4af40 (patch) | |
tree | ac455eb8aa9e8c6e2fadb649821a44953033611c /abs/extra-testing/recstat/recstat.py | |
parent | effe3b68b666b2e242bbd53871cde8ad0792463f (diff) | |
download | linhes_pkgbuild-c72e5b283fb8b8cb83158fa8b81c1557b6d4af40.zip linhes_pkgbuild-c72e5b283fb8b8cb83158fa8b81c1557b6d4af40.tar.gz linhes_pkgbuild-c72e5b283fb8b8cb83158fa8b81c1557b6d4af40.tar.bz2 |
recstat: initial include. Does not have support for runit
recstat will need to be modified
ref #632
Diffstat (limited to 'abs/extra-testing/recstat/recstat.py')
-rw-r--r-- | abs/extra-testing/recstat/recstat.py | 38 |
1 files changed, 38 insertions, 0 deletions
diff --git a/abs/extra-testing/recstat/recstat.py b/abs/extra-testing/recstat/recstat.py new file mode 100644 index 0000000..ff1b11e --- /dev/null +++ b/abs/extra-testing/recstat/recstat.py @@ -0,0 +1,38 @@ +#!/usr/bin/python + +import httplib +import serial,time + +mythStatus = "localhost:6544" +encoder1 = "Encoder 1 " +encoder2 = "Encoder 2 " +recording = "is local on mythtv and is recording" +watching = "is local on mythtv and is watching" + +#Open COM2 +s = serial.Serial(1) +#Turn off all lights +s.setDTR(0) +s.setRTS(0) + +while(True): + conn = httplib.HTTPConnection(mythStatus) + conn.request("GET", "/") + r1 = conn.getresponse() + results = r1.read() + + if(results.find(encoder1+recording)!=-1): + s.setDTR(1) + elif (results.find(encoder1+watching) !=-1): + s.setDTR(1) + else: + s.setDTR(0) + + if(results.find(encoder2+recording)!=-1): + s.setRTS(1) + elif (results.find(encoder2+watching) !=-1): + s.setRTS(1) + else: + s.setRTS(0) + + time.sleep(1)
\ No newline at end of file |