1 from Screens.Screen import Screen
2 from Screens.MessageBox import MessageBox
3 from Plugins.Plugin import PluginDescriptor
5 from Components.ConfigList import ConfigListScreen
6 from Components.ActionMap import ActionMap
7 from Components.config import config
8 from Components.NimManager import nimmanager as nimmgr
10 class SecParameterSetup(Screen, ConfigListScreen):
12 <screen position="100,100" size="560,400" title="Satellite Equipment Setup" >
13 <widget name="config" position="10,10" size="540,390" />
15 def __init__(self, session):
16 self.skin = SecParameterSetup.skin
18 self["actions"] = ActionMap(["SetupActions"],
21 "cancel": self.keyCancel,
24 Screen.__init__(self, session)
26 ("Delay after continuous tone change", config.sec.delay_after_continuous_tone_change),
27 ("Delay after last voltage change", config.sec.delay_after_final_voltage_change),
28 ("Delay between diseqc commands", config.sec.delay_between_diseqc_repeats),
29 ("Delay after last diseqc command", config.sec.delay_after_last_diseqc_command),
30 ("Delay after toneburst", config.sec.delay_after_toneburst),
31 ("Delay after enable voltage before switch command", config.sec.delay_after_enable_voltage_before_switch_command),
32 ("Delay after between switch and motor command", config.sec.delay_between_switch_and_motor_command),
33 ("Delay after set voltage before measure motor power", config.sec.delay_after_voltage_change_before_measure_idle_inputpower),
34 ("Delay after enable voltage before motor command", config.sec.delay_after_enable_voltage_before_motor_command),
35 ("Delay after motor stop command", config.sec.delay_after_motor_stop_command),
36 ("Delay after voltage change before motor command", config.sec.delay_after_voltage_change_before_motor_command),
37 ("Motor running timeout", config.sec.motor_running_timeout),
38 ("Motor command retries", config.sec.motor_command_retries) ]
39 ConfigListScreen.__init__(self, list)
43 def confirmed(answer):
46 session.open(SecParameterSetup)
48 def SecSetupMain(Session, **kwargs):
51 session.openWithCallback(confirmed, MessageBox, _("Please do not change values when you not know what you do!"), MessageBox.TYPE_INFO)
53 def SecSetupStart(menuid):
55 for slot in nimmgr.nimslots:
56 if slot.nimType == nimmgr.nimType["DVB-S"]:
59 if show and menuid == "scan":
60 return [(_("Satellite Equipment Setup"), SecSetupMain)]
64 def Plugins(**kwargs):
65 return PluginDescriptor(name=_("Satellite Equipment Setup"), description="Setup your satellite equipment", where = PluginDescriptor.WHERE_SETUP, fnc=SecSetupStart)