<br><div class="gmail_quote"><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex">
<br>
Since you have to do this twice, I'd like you to make it a helper<br>
function, like this:<br>
<br>
def convert_bytes_to_freq(bytes):<br>
real_freq = 0<br>
for byte in self._memobj.vfob.freq:<br>
real_freq = (real_freq * 10) + byte<br>
return real_freq / 1000.0<br>
<br></blockquote></div><br>I think I have it working for the 'get' side. I have a problem with the 'helper function' code. As it is written above, it is specific to 'vfob' (self._memobj.vfob.freq). Is there a simple way to make it for this one block of code work for both VFOs? Also, where is the best place to put this 'helper function'? I currently have it just above my code for the menu selection.<br>
<br>Jim<br><br>