I would like to connect multiple 7 Segment display to the arduino ....
As the arduino duemilanove does not have much Digital outputs I would like to connect multiple & segment displays in parallel but coltroll them with the common pin...
Make all the 7 segment display glow individually at a vrey high rate and displaying the multiple digit numbers...
Look at the MAX7219 - it can control up to 8 individual digits (inc. DP) and you can daisy chain them. Very easy to use, works on SPI. Controllable brightness as well.
The arduino can multiplex as shown, driving 20mA to the parallel segments, and pulling the common cathode low on the active device.
Several folks here recently have done just that.
Only drawback is that it uses 11 pins.
MAX7219/7221 will letyou control up to displays, handles all the multiplexing, updating is as simple as writing a value to 1 of 8 registers.
Only ties up the SPI lines (D11, D12, D13) and whatever you use as the SlaveSelect line (normally D10, but you can use whatever you'd like).