aboutsummaryrefslogtreecommitdiff
path: root/lib/python
diff options
context:
space:
mode:
Diffstat (limited to 'lib/python')
-rw-r--r--lib/python/Screens/Dish.py16
1 files changed, 16 insertions, 0 deletions
diff --git a/lib/python/Screens/Dish.py b/lib/python/Screens/Dish.py
new file mode 100644
index 00000000..4c7e7472
--- /dev/null
+++ b/lib/python/Screens/Dish.py
@@ -0,0 +1,16 @@
+from Screen import Screen
+
+from Components.BlinkingPixmap import BlinkingPixmapConditional
+from Components.Pixmap import Pixmap
+from Components.Button import Button
+
+from enigma import *
+
+class Dish(Screen):
+ def __init__(self, session):
+ Screen.__init__(self, session)
+
+ self["transparent"] = Button("")
+ self["Dishpixmap"] = BlinkingPixmapConditional()
+ #self["Dishpixmap"] = Pixmap()
+ self["Dishpixmap"].setConnect(eDVBSatelliteEquipmentControl.getInstance().isRotorMoving)