aboutsummaryrefslogtreecommitdiff
path: root/lib/python
diff options
context:
space:
mode:
authorAndreas Monzner <andreas.monzner@multimedia-labs.de>2006-12-04 22:44:46 +0000
committerAndreas Monzner <andreas.monzner@multimedia-labs.de>2006-12-04 22:44:46 +0000
commit767f09427a5dbfa924bcf487c09491ed34a4a7ce (patch)
treeb473d2dbf04b48c2b5839d29deb23f298d90a35e /lib/python
parentdc0f4d077f33b3c967dc2007b7d1abcf46f7830b (diff)
downloadenigma2-767f09427a5dbfa924bcf487c09491ed34a4a7ce.tar.gz
enigma2-767f09427a5dbfa924bcf487c09491ed34a4a7ce.zip
comment out not yet implemented 12V Switch option
Diffstat (limited to 'lib/python')
-rw-r--r--lib/python/Components/NimManager.py10
-rw-r--r--lib/python/Screens/Satconfig.py2
2 files changed, 6 insertions, 6 deletions
diff --git a/lib/python/Components/NimManager.py b/lib/python/Components/NimManager.py
index 5140406d..e5de83e0 100644
--- a/lib/python/Components/NimManager.py
+++ b/lib/python/Components/NimManager.py
@@ -186,10 +186,10 @@ class SecConfigure:
sec.setLNBLOFH(currLnb.lofh.value * 1000)
sec.setLNBThreshold(currLnb.threshold.value * 1000)
- if currLnb.output_12v.value == "0V":
- pass # nyi in drivers
- elif currLnb.output_12v.value == "12V":
- pass # nyi in drivers
+# if currLnb.output_12v.value == "0V":
+# pass # nyi in drivers
+# elif currLnb.output_12v.value == "12V":
+# pass # nyi in drivers
if currLnb.increased_voltage.value:
sec.setLNBIncreasedVoltage(lnbParam.ON)
@@ -768,7 +768,7 @@ def InitNimManager(nimmgr):
nim.advanced.lnb[x].lofl = ConfigInteger(default=9750, limits = (0, 99999))
nim.advanced.lnb[x].lofh = ConfigInteger(default=10600, limits = (0, 99999))
nim.advanced.lnb[x].threshold = ConfigInteger(default=11700, limits = (0, 99999))
- nim.advanced.lnb[x].output_12v = ConfigSelection(choices = [("0V", _("0 V")), ("12V", _("12 V"))], default="0V")
+# nim.advanced.lnb[x].output_12v = ConfigSelection(choices = [("0V", _("0 V")), ("12V", _("12 V"))], default="0V")
nim.advanced.lnb[x].increased_voltage = ConfigYesNo(default=False)
nim.advanced.lnb[x].toneburst = ConfigSelection(choices = [("none", _("None")), ("A", _("A")), ("B", _("B"))], default = "none")
nim.advanced.lnb[x].diseqcMode = ConfigSelection(choices = [("none", _("None")), ("1_0", _("1.0")), ("1_1", _("1.1")), ("1_2", _("1.2"))], default = "none")
diff --git a/lib/python/Screens/Satconfig.py b/lib/python/Screens/Satconfig.py
index 226c3a82..7b0c9bc9 100644
--- a/lib/python/Screens/Satconfig.py
+++ b/lib/python/Screens/Satconfig.py
@@ -135,7 +135,7 @@ class NimSetup(Screen, ConfigListScreen):
self.list.append(getConfigListEntry(_("LOF/L"), currLnb.lofl))
self.list.append(getConfigListEntry(_("LOF/H"), currLnb.lofh))
self.list.append(getConfigListEntry(_("Threshold"), currLnb.threshold))
- self.list.append(getConfigListEntry(_("12V Output"), currLnb.output_12v))
+# self.list.append(getConfigListEntry(_("12V Output"), currLnb.output_12v))
self.list.append(getConfigListEntry(_("Increased voltage"), currLnb.increased_voltage))
def fillAdvancedList(self):