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


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

--

Legend:

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

    v4 v5  
    22Get a digital output state for the main board or a DIO option card.
    33
    4 {{{
     4{{{#!c++
    55bool GetOutput(int bd, int output);
    66}}}
     
    2121== Examples ==
    2222
    23 {{{
     23{{{#!c++
    2424if(GetOutput(MNBD_DEV, 1) == true)
    2525    DisplayText(0, 0, "Output 1 is ON");
    2626}}}
    2727
    28 {{{
     28{{{#!c++
    2929if(GetOutput(1, 4) == false)
    3030    DisplayText(0, 0, "Card 1 Output 4 is OFF");