well don't i feel stupid lol.
Thanks, do you know about any of the things that need to be included in the setup, right now i just have defining all the inputs as pull-ups
Code:
void setup()
{
pinMode(PIN_D3, INPUT_PULLUP);
pinMode(PIN_D4, INPUT_PULLUP);
pinMode(PIN_D5, INPUT_PULLUP);
pinMode(PIN_D6, INPUT_PULLUP);
pinMode(PIN_D7, INPUT_PULLUP);
pinMode(PIN_E0, INPUT_PULLUP);
pinMode(PIN_E1, INPUT_PULLUP);
pinMode(PIN_C0, INPUT_PULLUP);
pinMode(PIN_C1, INPUT_PULLUP);
pinMode(PIN_C2, INPUT_PULLUP);
pinMode(PIN_C3, INPUT_PULLUP);
pinMode(PIN_C4, INPUT_PULLUP);
}
Bookmarks