X-Git-Url: http://code.vuplus.com/gitweb/?a=blobdiff_plain;f=lib%2Fpython%2FPlugins%2FSystemPlugins%2FSatelliteEquipmentControl%2Fplugin.py;h=3a8c75c0ac85b72c9fd0a3b59cf2bf9275a72252;hb=404cd0060ea3a3351f2fb41137f506eea42c23cc;hp=17f8fa2ebfeaad72f0643f5c656eba4ff4311eb7;hpb=09f2e2935df89c375633517884682151de3d9741;p=vuplus_dvbapp diff --git a/lib/python/Plugins/SystemPlugins/SatelliteEquipmentControl/plugin.py b/lib/python/Plugins/SystemPlugins/SatelliteEquipmentControl/plugin.py index 17f8fa2..3a8c75c 100644 --- a/lib/python/Plugins/SystemPlugins/SatelliteEquipmentControl/plugin.py +++ b/lib/python/Plugins/SystemPlugins/SatelliteEquipmentControl/plugin.py @@ -23,7 +23,10 @@ class SecParameterSetup(Screen, ConfigListScreen): Screen.__init__(self, session) list = [ - ("Delay after continuous tone change", config.sec.delay_after_continuous_tone_change), + ("Delay after diseqc reset command", config.sec.delay_after_diseqc_reset_cmd), + ("Delay after diseqc peripherial poweron command", config.sec.delay_after_diseqc_peripherial_poweron_cmd), + ("Delay after continuous tone disable before diseqc", config.sec.delay_after_continuous_tone_disable_before_diseqc), + ("Delay after final continuous tone change", config.sec.delay_after_final_continuous_tone_change), ("Delay after last voltage change", config.sec.delay_after_final_voltage_change), ("Delay between diseqc commands", config.sec.delay_between_diseqc_repeats), ("Delay after last diseqc command", config.sec.delay_after_last_diseqc_command), @@ -35,6 +38,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 +53,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,12 +65,12 @@ 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, "satellite_equipment_setup")] + return [(_("Satellite Equipment Setup"), SecSetupMain, "satellite_equipment_setup", None)] return [ ] def Plugins(**kwargs): if (nimmgr.hasNimType("DVB-S")): - return PluginDescriptor(name=_("Satellite Equipment Setup"), description="Setup your satellite equipment", where = PluginDescriptor.WHERE_MENU, fnc=SecSetupStart) + return PluginDescriptor(name=_("Satellite Equipment Setup"), description="Setup your satellite equipment", where = PluginDescriptor.WHERE_MENU, needsRestart = False, fnc=SecSetupStart) else: return []