Changes between Version 10 and Version 11 of Docs/Prog/Manual/ApplicationLibraries/lib825ev/Time/GetTimeStr
- Timestamp:
- 03/12/25 07:43:22 (3 weeks ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Docs/Prog/Manual/ApplicationLibraries/lib825ev/Time/GetTimeStr
v10 v11 2 2 Get the time 3 3 4 {{{ 4 {{{#!c++ 5 5 string GetTimeStr(int secs); 6 6 … … 28 28 == Examples == 29 29 30 {{{ 30 {{{#!c++ 31 31 string strTime = GetTimeStr(1); 32 32 DisplayText(10, 10, strTime); 33 33 }}} 34 34 35 {{{ 35 {{{#!c++ 36 36 char szTime[20]; 37 37 GetTimeStr(szTime, 1); … … 39 39 }}} 40 40 41 {{{ 41 {{{#!c++ 42 42 datetime_struct dt; 43 43 dt.hour = 9; … … 49 49 }}} 50 50 51 {{{ 51 {{{#!c++ 52 52 datetime_struct dt; 53 53 dt.hour = 9;