Match the firmware and do 3 decimal points for decimals

This commit is contained in:
Garth Vander Houwen 2024-08-10 12:30:33 -07:00
parent 64c69abf44
commit 56b75cbd3c

View file

@ -49,6 +49,8 @@ struct LoRaConfig: View {
let floatFormatter: NumberFormatter = {
let formatter = NumberFormatter()
formatter.numberStyle = .decimal
formatter.allowsFloats = true
formatter.maximumFractionDigits = 4
return formatter
}()