cool. So just to clarify, I can use an ATmega328 chip on my own baord with an external crystal, 2 multiplexers, taking up a total of 8 of the digital pins and 2 of the analog pins, AND still be able to connect my Bluesmirf bluetooth module as well, through the (PCINT17/TXD) PD1 pin 3? This would give me 32 analog inputs wirelessly. Is this all possible?
It should be all possible. Not fimilar with the bluetooth module. The two mux boards can share four of the digital output pins (to select which of sixteen inputs to select) and can share one analog input pin (wire them to the same analog output of each mux) if you wish, but using two analog input pins (one for each mux board) is OK also. Then two more digital output pins are used to enable each mux, one at a time. So total pin count to support 2 mux modules is SIX arduino digital output pins and one or two analog input pins.
Your sketch would output the channel number to select, 0-15, on four of the output pins. Then select which module to select using two of the digital output pins (0-15 module or 16-31 module). Then perform a analogRead() statement to read the select analog voltage.
Lefty