Changes between Version 10 and Version 11 of Docs/Prog/Manual/ApplicationLibraries/lib825ev/IO/GetInput


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

--

Legend:

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

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