Wiring a New Digit

Thu 13 August 2015

Wiring the Driver

Initially I have to wire up my TLC59213IN to the 16 segment LED bank. In order to do a proof of concept I'm going to wire up a single digit.

Line Display Pin Display Segment MAX Segment MAX Signal Max Pin
1 11 Common Cathode CC O1 8
2 1 a a1 O2 9
3 18 b a2 O3 10
4 16 c b O4 11
5 13 d c O5 12

I want to create some simple circuit diagrams that look nice and can also be used to create a circuit board. Most layout programs either cost big bucks or run on the PC only (and still cost big bucks). I found a tool aimed primarily at Arduino called Fritzing but I found that the parts catalog is fairly minimal (except for Sparkfun parts) and making new parts for it is quite a pain. Additionally, Fritzing provides a board layout service but their terms for shipment to the U.S. are pretty terrible.

I then found a package called EAGLE which seemed like a very capable package but unfortunately for me I could either use the hobbyist version which produced tiny boards or I could use the professional version which produced huge boards but cost over $1,000. I can see paying for a tool like this if I spent most of my time (or even alot) making boards but I don't so that seemed a bit steep.

I found a really nice tool (so far) called pcbweb. It is tied into the Digi-Key catalog which I personally find to be an advantage. Since I'm doing breadboarding they don't have a lot of parts built into the library using the through-hole form package. This however is mitigated quite a bit by the fact that making new parts is way easier than any other tool that I've used. It's very sensible and doesn't require you to use a bunch of external programs.

Yet Another Pivot

I've been looking at my current circuit for driving the display and it seems to me to be not really that great. It's expensive with the drivers alone costing $27 a piece and each will require an SPI connection or a bus mechanic which I'm not fond of. I would like to keep an intelligent interface, preferably RS-485 based and put a lot of intelligence into the board itself. Therefore, I've decided to do a different design using a PIC16F684 chip and some discrete drivers.

An initial challenge is going to be using the PIC chip since it only has about 12 I/O lines to play with. I'm going to take a bussed approach where I use the relatively high current drive capacity of the 16F684 to put a lot of chips on a bus and do some clever things with clocking.

Next Steps

I need to create a circuit for one LED to prove the concept. I'll also be writing some PIC16F684 code. I haven't decided if I'm going to do it in assembly or C. C would be easier but assembly might be more interesting.

Rearchitecting the output display, again.

Tue 04 August 2015

The Problem

I want to create some simple circuit diagrams that look nice and can also be used to create a circuit board. Most layout programs either cost big bucks or run on the PC only (and still cost big bucks). I found a tool aimed primarily at Arduino called …

Multiple Digit Display Bank

Sun 07 June 2015

Wiring Up Digit 1

Line Display Pin Display Segment MAX Segment MAX Signal Max Pin
1 11 Common Cathode CC O1 8
2 1 a a1 O2 9
3 18 b a2 O3 10
4 16 c b O4 11
5 13 d c O5 12

I got one digit …

One Display Bank

Sat 06 June 2015

Wiring up a full Bank

I got one digit to work but I need to prototype the full 8 digits before adding an intelligent front end (that's later). I place all of my digits on the breadboard and move the MAX6954 to the top so that I can drive it …

Single Multisegment Display

Sun 24 May 2015

Wiring up the MAX6954

I discovered the MAX6954 4-Wire Interfaced, 2.7V to 5.5V LED Display Driver with I/O Expander and Key Scan which I'll call the MAX6954 from now on. This chip allows me to drive up to 8 16-segment LEDs using one chip and a minimum …