From 0a2ebc75611941d43114f7cd07fb944ae098bf7f Mon Sep 17 00:00:00 2001 From: Ronny Strutz Date: Sat, 3 Sep 2005 00:04:29 +0000 Subject: [PATCH] fix values --- lib/python/Components/RFmod.py | 4 ++-- 1 file 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); -- 2.30.2