summaryrefslogtreecommitdiffstats
path: root/abs/extra-testing/recstat/recstat.py
diff options
context:
space:
mode:
authorJames Meyer <james.meyer@operamail.com>2010-10-23 18:17:40 (GMT)
committerJames Meyer <james.meyer@operamail.com>2010-10-23 18:19:39 (GMT)
commitadbcf19958300e9b6598990184c8815b945ba0ee (patch)
treef4283c850ac0ac202c17e78a637ee7ca8147621b /abs/extra-testing/recstat/recstat.py
parent61a68250df10d29b624650948484898334ff22d0 (diff)
downloadlinhes_pkgbuild-adbcf19958300e9b6598990184c8815b945ba0ee.zip
linhes_pkgbuild-adbcf19958300e9b6598990184c8815b945ba0ee.tar.gz
linhes_pkgbuild-adbcf19958300e9b6598990184c8815b945ba0ee.tar.bz2
Removed old core and extra from repo. Renamed -testing to core/extra. This will setup the base for the testing branch.
Diffstat (limited to 'abs/extra-testing/recstat/recstat.py')
-rw-r--r--abs/extra-testing/recstat/recstat.py38
1 files changed, 0 insertions, 38 deletions
diff --git a/abs/extra-testing/recstat/recstat.py b/abs/extra-testing/recstat/recstat.py
deleted file mode 100644
index 8def041..0000000
--- a/abs/extra-testing/recstat/recstat.py
+++ /dev/null
@@ -1,38 +0,0 @@
-#!/usr/bin/python
-
-import httplib
-import serial,time
-
-mythStatus = "127.0.0.1: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)