IR Reflective Sensors for Arduino??
I want to hook up like ~30 and read them individually... How do you differentiate so many inputs into the Arduino? Is there some similiar code to work from? cheers!

PDF Downloads
As a Pro member, you will gain access to download any Instructable in the PDF format.
You also have the ability to customize your PDF download.
-get the digital version and hook one to each input pin
-use the analog version and make a demultiplexer to 'select' one/multiple sensors by outputting a pulse of power to each, reading that sensor, then moving on to the next one. All the outputs are connected to the same analog input. You quickly switch between the sensors and check each multiple times per second with a loop.
-use a port expander; it has its own ports and talks the values back to the main unit over i2c or 2wire, as data instead of just arbitrary signals.
http://www.instructables.com/id/Extra-inputs-for-Arduino-with-a-keyboard/
The keyboard would limit the inputs to digital, correct? I'm guessing I might need 30 total IR inputs.. Any other downside on how the information is provided...
My goal is to process the inputs minimally (possibly an if/then statement) and then store the inputs (possibly time stamped or simple counter).. Thanks!