Page 1 of 1

Write float value in eeprom

Posted: Thu Feb 07, 2019 5:08 pm
by Corto
Hello Benj,All,
I would like, for reasons of precision, to be able to memorize in the EEPROM for example a value U = 4.9542
I tried by creating a 16-bit shift variable, with a variable U as Integer
MSB = U >> 8
LSB = U
=> EEVAL = (MSB << 8) + LSB
eeprom1::write(0,MSB)
eeprom1::write(1,LSB)
It works but on 10bit only and the accuracy is not enough.
I can not either multiply 4.9542 * 10000 and recreate the shift variable, because the variable is type of Float and I would not get as a result 4.9542 * 10000 = 40000 (if I'm not mistaken).
Please, how can I do? Do you have an example ?
Thank you in advance for your replies

Re: Write float value in eeprom

Posted: Thu Feb 07, 2019 5:26 pm
by Benj
Hello,

You could multiply out the value first using floating point maths.
4.9542 * 10000 = 40000
This is correct. However...
4.9542 * 10000.0 = 49542.0
Which you can then copy to your integer variable.

Other ways include converting the float to a string and storing the string or splitting the float up into an array of 4 bytes using a union and then recombining directly into a float. The latter method is C only and won't simulate.

Re: Write float value in eeprom

Posted: Thu Feb 07, 2019 5:52 pm
by Corto
Thank you Benj,
I will try the first solution.
As for the second that you propose, I tried in C but I was not successful, during the compilation I got a lot of errors. Do you have an example (under the elbow).
Luc

Re: Write float value in eeprom

Posted: Tue Feb 26, 2019 6:29 am
by ruchikadmore
Excellent answer by Benj. Thank you.

Re: Write float value in eeprom

Posted: Tue Apr 30, 2019 11:17 am
by Samishkakumble
I agree with ruchikadmore..Thank you!

Re: Write float value in eeprom

Posted: Wed May 01, 2019 10:37 am
by Benj
In Flowcode 8.1 there is a new component available under Data -> Storage called Type Conversions.

This allows you to convert between different types of variable e.g. a float can be converted into 2 unsigned ints or 4 bytes and visa versa.