From 3e0a413bb4a34a9cdc72ca14b5399e31f59b1f3c Mon Sep 17 00:00:00 2001 From: Stefan Pluecken Date: Wed, 5 Apr 2006 09:56:00 +0000 Subject: [PATCH] use new string concept for sending diseqc commands --- .../SystemPlugins/PositionerSetup/plugin.py | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/lib/python/Plugins/SystemPlugins/PositionerSetup/plugin.py b/lib/python/Plugins/SystemPlugins/PositionerSetup/plugin.py index f15ca405..8353f873 100644 --- a/lib/python/Plugins/SystemPlugins/PositionerSetup/plugin.py +++ b/lib/python/Plugins/SystemPlugins/PositionerSetup/plugin.py @@ -241,21 +241,21 @@ class Diseqc: if self.ready: cmd = eDVBDiseqcCommand() if what == "moveWest": - string = '\xe1\x31\x69' + chr(param) + string = 'e13169' + ("%02x" % param) elif what == "moveEast": - string = '\xe1\x31\x68' + chr(param) + string = 'e13168' + ("%02x" % param) elif what == "moveTo": - string = '\xe1\x31\x6b' + chr(param) + string = 'e1316b' + ("%02x" % param) elif what == "store": - string = '\xe1\x31\x6a' + chr(param) + string = 'e1316a' + ("%02x" % param) elif what == "limitOff": - string = '\xe1\x31\x63' + string = 'e13163' elif what == "limitEast": - string = '\xe1\x31\x66' + string = 'e13166' elif what == "limitWest": - string = '\xe1\x31\x67' + string = 'e13167' else: - string = '\xe0\x31\x60' #positioner stop + string = 'e03160' #positioner stop print "diseqc command:", for x in string: print hex(ord(x)), -- 2.30.2