NIM cleanup, as described in https://lists.elitedvb.net/pipermail/enigma2-devel/2007...
[enigma2.git] / lib / python / Plugins / SystemPlugins / SatelliteEquipmentControl / plugin.py
index 192f8519076aa7b6135bed80965c2b68aaf617a5..bb7459200fefa7e1705e8f1664593dbe8f50ea5a 100644 (file)
@@ -29,7 +29,7 @@ class SecParameterSetup(Screen, ConfigListScreen):
                        ("Delay after last diseqc command", config.sec.delay_after_last_diseqc_command),
                        ("Delay after toneburst", config.sec.delay_after_toneburst),
                        ("Delay after enable voltage before switch command", config.sec.delay_after_enable_voltage_before_switch_command),
-                       ("Delay after between switch and motor command", config.sec.delay_between_switch_and_motor_command),
+                       ("Delay between switch and motor command", config.sec.delay_between_switch_and_motor_command),
                        ("Delay after set voltage before measure motor power", config.sec.delay_after_voltage_change_before_measure_idle_inputpower),
                        ("Delay after enable voltage before motor command", config.sec.delay_after_enable_voltage_before_motor_command),
                        ("Delay after motor stop command", config.sec.delay_after_motor_stop_command),
@@ -52,14 +52,17 @@ def SecSetupMain(Session, **kwargs):
 
 def SecSetupStart(menuid):
        show = False
-       for slot in nimmgr.nimslots:
-               if slot.nimType == nimmgr.nimType["DVB-S"]:
-                       show = True
-                       break
-       if show and menuid == "scan":
-               return [(_("Satellite Equipment Setup"), SecSetupMain)]
-       else:
-               return []
+       
+       # other menu than "scan"?
+       if menuid != "scan": 
+               return [ ]
+
+       # only show if DVB-S frontends are available
+       for slot in nimmgr.nim_slots:
+               if slot.isCompatible("DVB-S"):
+                       return [(_("Satellite Equipment Setup"), SecSetupMain)]
+
+       return [ ]
 
 def Plugins(**kwargs):
        return PluginDescriptor(name=_("Satellite Equipment Setup"), description="Setup your satellite equipment", where = PluginDescriptor.WHERE_SETUP, fnc=SecSetupStart)