I am wondering what enhancements come with the professional version of Flowcode4.
I am finding it to be a challenge to to floating point trig. How do you display a floating point (fractional) result on a LCD.
Thanks.
Enhancements of Flowcode4 Pro
- Benj
- Matrix Staff
- Posts: 15312
- Joined: Mon Oct 16, 2006 10:48 am
- Location: Matrix TS Ltd
- Has thanked: 4803 times
- Been thanked: 4314 times
- Contact:
Re: Enhancements of Flowcode4 Pro
Hello,
To display a floating point number on the LCD you have to convert the float variable into a string. There is a function to do this available from the string manipulation icon. The Flowcode marketting datasheet details all of the key features between the different license variations.
To display a floating point number on the LCD you have to convert the float variable into a string. There is a function to do this available from the string manipulation icon. The Flowcode marketting datasheet details all of the key features between the different license variations.
Regards Ben Rowland - MatrixTSL
Flowcode Product Page - Flowcode Help Wiki - Flowcode Examples - Flowcode Blog - Flowcode Course - My YouTube Channel
Flowcode Product Page - Flowcode Help Wiki - Flowcode Examples - Flowcode Blog - Flowcode Course - My YouTube Channel
- DavidA
- Matrix Staff
- Posts: 1076
- Joined: Fri Apr 23, 2010 2:18 pm
- Location: Matrix Multimedia Ltd
- Has thanked: 58 times
- Been thanked: 258 times
- Contact:
Re: Enhancements of Flowcode4 Pro
The marketing data sheet is located here :
http://www.matrixmultimedia.com/datashe ... C-60-4.pdf
the details you want are on page 8.
http://www.matrixmultimedia.com/datashe ... C-60-4.pdf
the details you want are on page 8.
-
- Posts: 162
- Joined: Thu Jul 01, 2010 1:57 am
- Has thanked: 23 times
- Been thanked: 16 times
- Contact:
Re: Enhancements of Flowcode4 Pro
Where is the "string manipulation icon?". I am using the student version, and I only see string, when a variable is declared.
Thanks.
Thanks.
- Benj
- Matrix Staff
- Posts: 15312
- Joined: Mon Oct 16, 2006 10:48 am
- Location: Matrix TS Ltd
- Has thanked: 4803 times
- Been thanked: 4314 times
- Contact:
Re: Enhancements of Flowcode4 Pro
Hello,
The string manuipulation icon is directly below the calculation icon in the command toolbox.
The string manuipulation icon is directly below the calculation icon in the command toolbox.
Regards Ben Rowland - MatrixTSL
Flowcode Product Page - Flowcode Help Wiki - Flowcode Examples - Flowcode Blog - Flowcode Course - My YouTube Channel
Flowcode Product Page - Flowcode Help Wiki - Flowcode Examples - Flowcode Blog - Flowcode Course - My YouTube Channel
-
- Valued Contributor
- Posts: 548
- Joined: Tue Jun 26, 2007 11:23 am
- Has thanked: 6 times
- Been thanked: 44 times
Re: Enhancements of Flowcode4 Pro
The V4 AVR floating-point article (Articles section of the forum) shows how the standard library sprintf function can be used in a Flowcode C block to convert numbers to strings - using a variety of formats - before printing to an LCD.