aboutsummaryrefslogtreecommitdiff
path: root/lib/python/Components/RFmod.py
diff options
context:
space:
mode:
Diffstat (limited to 'lib/python/Components/RFmod.py')
-rw-r--r--lib/python/Components/RFmod.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/python/Components/RFmod.py b/lib/python/Components/RFmod.py
index fc5579fc..64b21867 100644
--- a/lib/python/Components/RFmod.py
+++ b/lib/python/Components/RFmod.py
@@ -39,9 +39,9 @@ def InitRFmod():
def setSoundCarrier(configElement):
iRFmod.setSoundCarrier(configElement.value);
def setChannel(configElement):
- iRFmod.setChannel(configElement.value);
+ iRFmod.setChannel(configElement.value + 30);
def setFinetune(configElement):
- iRFmod.setFinetune(configElement.value);
+ iRFmod.setFinetune(configElement.value - 5);
# this will call the "setup-val" initial
config.rfmod.enable.addNotifier(setFunction);