Breakout Board for 3595 LCD

2008-11-20-lcd-breakout-boardI have manufactured a breakout board for the nokia 3595 lcd screen. As you can see this facilitates both interface with the screen itself as well as a backlight.

For the backlight I salvaged two LEDs from the phone board itself. I carefully measured and laid out the location for the copper to interface with the “spring” connection for the screen as well as the holes for the LEDs. The LEDs are SMD devices that are soldered to the bottom of the board and stick through a hole to the top of the board. I then cut the keypad area off of the plastic housing for the LCD and used that in conjunction with the metal frame from the phone to mount the unit to my home built PCB.

This is my first double-sided PCB. It doesn’t have the cleanest lines but it works and that’s good enough for me. I found it a bit more difficult to iron on the toner to both sides without smearing it (due to too much heat or from moving the paper while I worked).

Character Set for 3595

2008-11-17-character-set

Here you can see the full ASCII character set displayed on the 3595 lcd. It was actually amazingly simple to get to this point from the previous “helloworld” firmware.

The most important change that was made is that I upgraded to an ATmega168 to solve my programming space problem. This chip will still operate at 3.3v which is the operating voltage of the LCD. The additional 14kb of programming space should give me plenty of room to grow. I would also like to dabble with SD card compatibility and this chip should allow me to do so (I’ve never looked into it so I may be wrong).

For the character set I borrowed the array and the function to read the characters from memory from a past project. I then wrote a function to handle advancing a “virtual cursor” after each character is written. This function handles wrapping to the next row when about to overflow as well as wrapping from the bottom to the top. The last thing was a function to parse the character information and write it on the screen.

I’ll provide more details in my next update.

3595 LCD – Hello World

2008-11-16-hello-world

I have made quite a bit of progress. Here you see my “Hello World” on the nokia 3595 lcd screen. I have been pouring over the datasheet as well as examining code from two different projects to get to this point. It seems that I am having no problems addressing the display and writing to it. I do still have some work to do with the initialization sequence.
Continue reading

3595i LCD – First Signs of Life

first_signs_of_lifeEven a small success is a success. I have for the first time seen a reaction from the LCD screen I pulled out of my nokia 3595i. Although I had some code on hand from other Internet sources I couldn’t get any response from the screen. Please forgive this photo, I don’t have a suitable back light set up for this display so you see an LED filtered by a piece of paper behind the display.
Continue reading

LCD – a whole lot of nothin’

LCD from Nokia 3595 connected to breadboard (not working)

LCD from Nokia 3595 connected to breadboard (not working)

I did do a bit of work with the 3595 lcd screen.  I’ve got the circuit hooked up as I think it should and I ported the mega8 code for a tiny2313.  Once everything was fired up I get nothing.

In order to fit the mega8 code in the 1k programming space of the smaller chip I had to take out everything related to strings.  This should not have broken the initialization of the screen itself so I try to do a full write and full clear but I can see not response from the display.  I took a look at the datasheet for controller in this board; initialization is quite complicated require setup not only of the data in memory but the power supply built into the controller.  I’m putting this one on the back burner for a while.

Feel free to leave comments if you have any advice.  I might try to build an oscilloscope (or an interface to use my computer as one) before I continue.  Without it I’m kind of flying blind with getting this working.