Changes between Version 4 and Version 5 of Docs/Prog/Manual/ApplicationLibraries/lib825ev/IO/SetOutput


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

--

Legend:

Unmodified
Added
Removed
Modified
  • Docs/Prog/Manual/ApplicationLibraries/lib825ev/IO/SetOutput

    v4 v5  
    22Set a digital output to ON or OFF for the main board or a DIO option card.
    33
    4 {{{
     4{{{#!c++
    55int SetOutput(int bd, int out, bool on);
    66}}}
     
    2222== Examples ==
    2323
    24 {{{
     24{{{#!c++
    2525if(SetOutput(MNBD_DEV, 1, true) == OK)
    2626    DisplayText(0, 0, "Output 1 is ON");
    2727}}}
    2828
    29 {{{
     29{{{#!c++
    3030if(SetOutput(1, 4, false) == OK)
    3131    DisplayText(0, 0, "Card 1 Output 4 is now OFF");