| | IC question Todd Ahlstrom
| | | Just got my handyboard, and I am new to programming, so I have a probably simple question for you all. I have been playing around with IC trying to get responses on the LCD from start button presses. if I send the following on the IC command line : (...) (25 years ago, 27-May-00, to lugnet.robotics.handyboard)
| | | | | | | | Re: IC question Will Bain
| | | | | You might try something like: while( 1 ) { if( start_button() ) printf( "you pressed the start button\n" ); else printf( "\n" ); msleep( 250L ); } or simply: { start_press(); printf( "you pressed the start button\n" ); } -- Will (...) +---...---+ | (...) (25 years ago, 27-May-00, to lugnet.robotics.handyboard)
| | | | | | |