[Frequency Library] Added hz_to_mhz function to the library as its used a lot in Cloudlog
这个提交包含在:
父节点
d6782e53e5
当前提交
422fbd4490
共有 1 个文件被更改,包括 6 次插入 和 0 次删除
|
|
@ -154,5 +154,11 @@ class Frequency {
|
||||||
}
|
}
|
||||||
return $Band;
|
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 */
|
/* End of file Frequency.php */
|
||||||
|
|
|
||||||
正在加载…
在新工单中引用