Changes between Version 4 and Version 5 of Docs/Prog/Manual/ApplicationLibraries/lib825ev/IO/SetOutput
- Timestamp:
- 03/12/25 07:58:28 (3 weeks ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Docs/Prog/Manual/ApplicationLibraries/lib825ev/IO/SetOutput
v4 v5 2 2 Set a digital output to ON or OFF for the main board or a DIO option card. 3 3 4 {{{ 4 {{{#!c++ 5 5 int SetOutput(int bd, int out, bool on); 6 6 }}} … … 22 22 == Examples == 23 23 24 {{{ 24 {{{#!c++ 25 25 if(SetOutput(MNBD_DEV, 1, true) == OK) 26 26 DisplayText(0, 0, "Output 1 is ON"); 27 27 }}} 28 28 29 {{{ 29 {{{#!c++ 30 30 if(SetOutput(1, 4, false) == OK) 31 31 DisplayText(0, 0, "Card 1 Output 4 is now OFF");