Could someone please give me some information about how to use 16-segment led displays with an arduino?
I have searched everywere, but everybody seems to talk about the MAX6955 or 6954. Both of the chips aren't sold in my country (belgium), I can buy one in the UK but it rather expensive and it is in SSOP format (so I can't use it).
Hello jensvde: 16 segment is 2 8 segment display, that can drive 2 different letters I believe?
You can drive them directly from 2 8-bit ports with arduino just issuing number bytes to them. How ever this need MEGA board as you need 2*8-bit registers to operate them. Better advice is to use already mentioned 8-segmenet display controllers and control them with just 4 bits. Now you can control 2 displays with 8 bits in single port is way better for codewise too as you need to send 4 bits in byte to each controller and they display numbers as they are. first one is controlled via numbers 0-9 and the second gets trickier as it uses way bigger numbers to present 1. 1 would be B00010000; for the second monitor. 2 would be B00100000.
When you send one to both displays you would send: B00010001 which provides both displays the number 1.