forgot a 0 ...

This commit is contained in:
DJ2LS 2024-02-20 09:52:26 +01:00
parent 31a93b3183
commit 5c232a2165

View file

@ -203,7 +203,7 @@ class radio:
self.parameters['alc'] = self.send_command('l ALC')
self.parameters['strength'] = self.send_command('l STRENGTH')
self.parameters['rf'] = int(float(self.send_command('l RFPOWER')) * 10) # RF, RFPOWER
self.parameters['rf'] = int(float(self.send_command('l RFPOWER')) * 100) # RF, RFPOWER
"""Return the latest fetched parameters."""
return self.parameters