Hi,
I need to receive string in the serial port of arduino,
and the string is composed like this:
name___=value
for example:
vindkias__=294.287048
vindkeas__=297.044189
vtruektas_=313.840454
vtruektgs_=313.794830
vindmph___=338.659485
vtruemphas=361.161133
vtruemphgs=361.108643
mach______=0.489340
vvi_______=2239.381836
gloadnorma=1.138424
gloadaxial=0.117916
gloadside_=0.020181
gear______=0.000000
wbrak_____=0.000000
lbrak_____=0.000000
rbrak_____=0.000000
the name is 10 chars fixed,then "=" and then a not fixed value.
I receive this feed many times in a second,and I have to decode some data,
for example if GEAR=1 I have to turn on a led,if GEAR=0 I need to turn off it,
But in the future I need to print on a LCD display the value of vindkias string,like "VINDKIAS:294,28"
Can anyone help me?