I found this quote about pullup resistors in a thread about resistors making sure circuit with buttons read 0v at all times the switch is open. Does this mean I don't need to attach resistors in the mode at all because it's taken care of on the arduino?
liamorourke:
you might already know this but the input pins already have built in pull-up resistors which can be activated by adding the word PULLUP into your pinMode statement. Like this: -pinMode("pin", INPUT_PULLUP);
as opposed to just: -
pinMode("pin", INPUT);
It just saves you the time taken to solder in a resistor and the little amount of money you would be spending on it.