aboutsummaryrefslogtreecommitdiff
path: root/lib/python/Components/NimManager.py
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/Components/NimManager.py
parentdc0f4d077f33b3c967dc2007b7d1abcf46f7830b (diff)
downloadenigma2-767f09427a5dbfa924bcf487c09491ed34a4a7ce.tar.gz
enigma2-767f09427a5dbfa924bcf487c09491ed34a4a7ce.zip
comment out not yet implemented 12V Switch option
Diffstat (limited to 'lib/python/Components/NimManager.py')
-rw-r--r--lib/python/Components/NimManager.py10
1 files changed, 5 insertions, 5 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")