update the current provider to take advantage of these last commits

This commit is contained in:
2026-03-06 14:38:20 +00:00
parent a299b95d7c
commit da9f786611
3 changed files with 44 additions and 28 deletions
+2 -2
View File
@@ -1,6 +1,6 @@
// Package conversions will host all of our unit conversion functions
package conversions
func MsToKph(v float32) int {
return int((3600 * v) / 1000)
func MsToKph(v float32) uint16 {
return uint16((3600 * v) / 1000)
}