<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&#39;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 &#39;get&#39; side. I have a problem with the &#39;helper function&#39; code. As it is written above, it is specific to &#39;vfob&#39; (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 &#39;helper function&#39;? I currently have it just above my code for the menu selection.<br>
<br>Jim<br><br>