I’m using the ZX24a to capture a NMEA string, and diplaying it on the com1.
to get a single value out off the NMEA I use:
‘to get data for a single
Code: Select all
dim Long_min as single,ok as boolean
Lon_min=Waarde(3,10000,ok)
Code: Select all
Console.WriteLine (Cstr(lon_min))
The function to get a single from a comport
Code: Select all
Public Function Waarde(byval port as byte,byval timeout as integer,byRef ok as boolean) As Single
Dim txt as Boundedstring(10)
Dim data as byte
txt =""
ok =false
waarde =0.0
do
call GetByte_timeout(port,data,timeout,ok)
If (ok and data<>(asc(",")))then
txt=txt & (chr(data))
Else
call ValueS(txt,waarde,ok)
exit Function
End If
loop
End Function
the input value: 35.5
display’s as 35.50001
I’ve downloaded the Format.bas file but how to use it, seems not so clear to me

how do I get a clean 35.5 to the console?