[Frequency Library] Added hz_to_mhz function to the library as its used a lot in Cloudlog

This commit is contained in:
Peter Goodhall
2021-05-06 15:34:30 +01:00
parent d6782e53e5
commit 422fbd4490

View File

@@ -154,5 +154,11 @@ class Frequency {
}
return $Band;
}
// converts a frequency in Hz to MHz output
function hz_to_mhz($frequency)
{
return number_format (($frequency / 1000 / 1000), 3) . " MHz";
}
}
/* End of file Frequency.php */