Changes between Version 12 and Version 13 of Docs/Prog/Manual/ApplicationLibraries/lib825ev/Weight/FormatWt
- Timestamp:
- 03/12/25 07:38:58 (3 weeks ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Docs/Prog/Manual/ApplicationLibraries/lib825ev/Weight/FormatWt
v12 v13 2 2 Format a string representation of the specified weight 3 3 4 {{{ 4 {{{#!c++ 5 5 string FormatWt(float fWt, uint8 byIntv, uint8 byDec, int nLen = 7); 6 6 … … 30 30 == Examples == 31 31 32 {{{ 32 {{{#!c++ 33 33 float wt = 12055; 34 34 string strWt = FormatWt(wt, 20, 0); … … 37 37 }}} 38 38 39 {{{ 39 {{{#!c++ 40 40 float wt = 12055; 41 41 char szWt[20]; … … 45 45 }}} 46 46 47 {{{ 47 {{{#!c++ 48 48 float wt = 12.137; 49 49 char szWt[20];