Changes between Version 10 and Version 11 of Docs/Prog/Manual/ApplicationLibraries/lib825ev/IO/GetInput
- Timestamp:
- 03/12/25 07:59:49 (3 weeks ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Docs/Prog/Manual/ApplicationLibraries/lib825ev/IO/GetInput
v10 v11 2 2 Get a digital input state for the main board or a DIO option card. 3 3 4 {{{ 4 {{{#!c++ 5 5 bool GetInput(int bd, int input); 6 6 }}} … … 21 21 == Examples == 22 22 23 {{{ 23 {{{#!c++ 24 24 if(GetInput(MNBD_DEV, 1) == true) 25 25 DisplayText(0, 0, "Input 1 is ON"); 26 26 }}} 27 27 28 {{{ 28 {{{#!c++ 29 29 if(GetInput(1, 4) == false) 30 30 DisplayText(0, 0, "Card 1 Input 4 is OFF");