Changes between Version 23 and Version 24 of Docs/Prog/Manual/ApplicationLibraries/lib825ev/Weight/StartRepeatMulti
- Timestamp:
- 03/12/25 07:22:27 (4 weeks ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Docs/Prog/Manual/ApplicationLibraries/lib825ev/Weight/StartRepeatMulti
v23 v24 2 2 Start repeating communications from main board to report weights, I/O status, COM3, COM4 and optionally input counters. 3 3 4 {{{ 4 {{{#!c++ 5 5 int StartRepeatMulti(uint32 interval, struct mnbd_multi_rep_counters_struct& counters); 6 6 }}} 7 7 8 {{{ 8 {{{#!c++ 9 9 int StartRepeatMulti(uint32 interval, struct mnbd_multi_rep_counters_struct* counters = NULL); 10 10 }}} … … 30 30 == Examples == 31 31 32 {{{ 32 {{{#!c++ 33 33 if(StartRepeatMulti(100) == OK) 34 34 DisplayText(0, 0, "Wt and I/O 10 times per second"); 35 35 }}} 36 36 37 {{{ 37 {{{#!c++ 38 38 int bd = 1; 39 39 int inp = 8; … … 59 59 Example of reading counter data: 60 60 61 {{{ 61 {{{#!c++ 62 62 63 63 int g_nPrevCnt[4] = { 0, 0, 0, 0 } … … 90 90 91 91 repeatmulti.h: 92 {{{ 92 {{{#!c++ 93 93 #ifndef REPEATMULTI_H_ 94 94 #define REPEATMULTI_H_