NewHaven RGB Backlit 16x2 LCD Display
Ron Czapala
Posts: 2,418
I just got this 2 line x 16 character NewHaven LCD display from Jameco.
It has an RGB LED backlight and can be driven by serial TTL RS232, I2C or SPI.
The RGB LED is NOT controlled by communicating commands to the module - you just control it through four separate pins.
You can use PWM to obtain various colors or just use resistors for a static color combination.
You can see flickering in this video when using PWM to cycle colors but it really isn't noticeable to the human eye...
Also the Blue color is darker and bluer than it appears in the video.
Jameco link
It has an RGB LED backlight and can be driven by serial TTL RS232, I2C or SPI.
The RGB LED is NOT controlled by communicating commands to the module - you just control it through four separate pins.
You can use PWM to obtain various colors or just use resistors for a static color combination.
You can see flickering in this video when using PWM to cycle colors but it really isn't noticeable to the human eye...
Also the Blue color is darker and bluer than it appears in the video.
Jameco link
Comments
I have used several different displays from New Haven. They seem to be pretty reliable. They have an office just an hour and a half away from me.
Sorry, I meant to make it "unlisted" - should work now...
(Checked the link posted just above the video)
Cool stuff!
I am currently driving it with a BS2 Stamp.
To avoid issues with the 20ma per pin limitation (and 40ma total) I created a little board with 2N2222 transistors and resistors to handle the RGB LED.
I remembered JVC has those little micro hi-fis which have displays just like these ones. Best of all, you can select the style of the changing of colours. Pretty funky!
However, can't find any of those in SE Asia. Hope they stock a bit on that one though.
NewHaven also makes an RGB display where the font color is RGB with a black background
http://www.newhavendisplay.com/index.php?main_page=product_info&cPath=329&products_id=2649
I have three of the SparkFun white on black serial displays and I really like them.
I usually set the brightness down a bit.
edit: and it does look better in this photo than in real life
2 line LCD displays to be RGB?
If you look at the end it appears that there are 2 wires
going to an LED embedded in epoxy? What if you drilled
that out and hot glued a 20 cent RGB LED in there?
Maybe worth trying....
Don't we all have parts like that? What's YOURS?
easier to use display...you can drive the display using
a single Prop pin once you make it a smart display.
total cost less than 5.00 USD
These would make a nice moneymaker for someone
who wanted to resell them on ebay. They are ugly
when viewed from behind but work great. I2C, one wire,
rs232..whatever you want to code for, or all of them.
Oh, and there is flash left over that you can store macro
text strings into....saves space on your uC flash or eeprom.
Some "Serial" displays are SPI and not RS232 - I really like the RS232.
NewHaven and Seetron are also selling OLED displays (parallel or SPI): http://www.newhavendisplay.com/index.php?main_page=index&cPath=119_576
Seetron OLED RS232: http://www.seetron.com/glo416.html
Here is a link to a reasonably priced serial to parallel module to drive the parallel LCD displays: http://www.wulfden.org/TheShoppe/k107/about.shtml
Regards,
TCIII
Don,
Looks good! How does it compare to LCD displays in terms of sharpness and viewing angle? I guess OLED displays don't need a backlight...
@ Don M Nice looking box.
I don't think I'll be happy with anything less than a VFD, but I cringe at the price.
I've heard the OLED type displays suffer from "burn-in" problems. I think I'll try one though just to see for myself because that one looks good.
By the way, would you mind posting your code?
I have attached some BS2 demo code. I use the little transistor driver card pictured above to drive the RGB LED backlight.
I created an enclosure a for the display and driver card
Here is the RL6015 project box at DigiKey and the Hammond Mfg link
I had considered a 2x20 VFD as they are bright and sharp as well but I chose the OLED because it can run on 3.3 volts. VFD's will also wear over time. One could implement a "screen saver" time-out function in their code to help alleviate this.
BTW- I tried the K107 kit from Wulfden. Be careful as it did not work properly with a 2x20 VFD display and the New Haven OLED displays I had. It will not address the second line at all. I know that Mr. Andersons chips were made to work with the HD44780 protocol but these displays wouldn't work with it. The literature for the displays does not specifically mention that they are fully HD44780 compatible BUT these displays DO both work fine with the Parallax serial back-pack taken from one of their serial displays and they also work in direct parallel mode with HD44780 spin objects from the OBEX without any modification. I have sent a VFD to Brian Riley for analysis but am still waiting to hear his conclusion.
@Holly
I sent you a PM with some questions about tinyAVR chips...
Thanks,
Ron
Don,
Thanks for the info - Did you try SPI mode?