diff options
| author | Ronny Strutz <ronny.strutz@multimedia-labs.de> | 2005-09-03 00:04:29 +0000 |
|---|---|---|
| committer | Ronny Strutz <ronny.strutz@multimedia-labs.de> | 2005-09-03 00:04:29 +0000 |
| commit | 0a2ebc75611941d43114f7cd07fb944ae098bf7f (patch) | |
| tree | b9965268995a70ca34b543d2c1a72899beb24834 /lib/python | |
| parent | 37414fb7e205a816e06ccbe6c31a3c5677b81b12 (diff) | |
| download | enigma2-0a2ebc75611941d43114f7cd07fb944ae098bf7f.tar.gz enigma2-0a2ebc75611941d43114f7cd07fb944ae098bf7f.zip | |
fix values
Diffstat (limited to 'lib/python')
| -rw-r--r-- | lib/python/Components/RFmod.py | 4 |
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); |
