use new string concept for sending diseqc commands
authorStefan Pluecken <stefan.pluecken@multimedia-labs.de>
Wed, 5 Apr 2006 09:56:00 +0000 (09:56 +0000)
committerStefan Pluecken <stefan.pluecken@multimedia-labs.de>
Wed, 5 Apr 2006 09:56:00 +0000 (09:56 +0000)
lib/python/Plugins/SystemPlugins/PositionerSetup/plugin.py

index f15ca4056527f763146bd56641627d88ba1d5cbe..8353f873609f2b0bc546ff3294c80844fa26d2d8 100644 (file)
@@ -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)),