add delay before send sequence repeat (diseqc/toneburst)
[vuplus_dvbapp] / lib / python / Plugins / SystemPlugins / SatelliteEquipmentControl / plugin.py
index 77c4d0a..7b3d08f 100644 (file)
@@ -35,6 +35,7 @@ class SecParameterSetup(Screen, ConfigListScreen):
                        ("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),
                        ("Delay after voltage change before motor command", config.sec.delay_after_voltage_change_before_motor_command),
+                       ("Delay before sequence repeat", config.sec.delay_before_sequence_repeat),
                        ("Motor running timeout", config.sec.motor_running_timeout),
                        ("Motor command retries", config.sec.motor_command_retries) ]
                ConfigListScreen.__init__(self, list)
@@ -49,7 +50,7 @@ def confirmed(answer):
 def SecSetupMain(Session, **kwargs):
        global session
        session = Session
-       session.openWithCallback(confirmed, MessageBox, _("Please do not change values when you not know what you do!"), MessageBox.TYPE_INFO)
+       session.openWithCallback(confirmed, MessageBox, _("Please do not change any values unless you know what you are doing!"), MessageBox.TYPE_INFO)
 
 def SecSetupStart(menuid):
        show = False
@@ -61,7 +62,7 @@ def SecSetupStart(menuid):
        # 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 [(_("Satellite Equipment Setup"), SecSetupMain, "satellite_equipment_setup", None)]
 
        return [ ]