Why No Decimal Display?
TurnipTruck
Posts: 1,485
fFrequency=(1000/(nTime*100)) SEND_STRING 0,"FORMAT('%5.3f,fFrequency)"fFrequency is defined as a float.
nTime is an integer value from a counter where a value of 10 should equal a frequency of one.
All I get for output is integer values as xx.000
Thanks.
0
Comments
Change nTime from an Integer to a Float
Or
Change
To this:
Or to this:
HTH