Changes between Version 12 and Version 13 of Docs/Prog/Manual/ApplicationLibraries/lib825ev/Weight/FormatWt


Ignore:
Timestamp:
03/12/25 07:38:58 (3 weeks ago)
Author:
Don Wilson
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • Docs/Prog/Manual/ApplicationLibraries/lib825ev/Weight/FormatWt

    v12 v13  
    22Format a string representation of the specified weight
    33
    4 {{{
     4{{{#!c++
    55string FormatWt(float fWt, uint8 byIntv, uint8 byDec, int nLen = 7);
    66
     
    3030== Examples ==
    3131
    32 {{{
     32{{{#!c++
    3333float wt = 12055;
    3434string strWt = FormatWt(wt, 20, 0);
     
    3737}}}
    3838
    39 {{{
     39{{{#!c++
    4040float wt = 12055;
    4141char szWt[20];
     
    4545}}}
    4646
    47 {{{
     47{{{#!c++
    4848float wt = 12.137;
    4949char szWt[20];