LabVIEW

cancel
Showing results for 
Search instead for 
Did you mean: 

LCD Display Labview

Hi Forum,

 

first thanks a lot for all your help! I am using Labview for power monitoring on a mini pc running windows 7, i wanted to display the different states on a  HD44780 LCD mabye also controlling two buttons. 

Would be great if someone can give me some ideas how to do this and how difficult it is. 

 

Thanks a lot 

Martin

 

0 Kudos
Message 1 of 12
(3,378 Views)

Ok, the HD44780 is basically a chip. Are you getting it as a part of a display board or are you building up the whole thing yourself.

 

In any case, the chip is designed to sit on a processor bus, but you can use DIO ports to emulate a bus. You might want to consider getting it on a card that incorporates a little intelligence and can offer a serial interface.

 

Mike...


Certified Professional Instructor
Certified LabVIEW Architect
LabVIEW Champion

"... after all, He's not a tame lion..."

For help with grief and grieving.
0 Kudos
Message 2 of 12
(3,374 Views)
An arduino can be used for this.
0 Kudos
Message 3 of 12
(3,369 Views)

Hi,

 

ok if i use an adruino i would sent the data from the pc  to adruino and then display it on the LCD or how i could do this?

I found a lcd for windows here http://www.mini-box.com/picoLCD-20x2-OEM?sc=8&category=490 it has  usb connection and driver for windows how about this.

Martin

0 Kudos
Message 4 of 12
(3,357 Views)
With the arduino, I believe you would just send the text messages to it over a serial port connection. The other uses USB HID which might be a pain. HID covers a lot of different types of devices (keyboards, mice, etc.) but I've never tried to program a HID display from LabVIEW.
0 Kudos
Message 5 of 12
(3,345 Views)

Hi Dennis,

 

i think the adruino idea sounds like a  good fit, i will go with this. So i may use the adruino toolkit from ni to communicate between the pc and the adruino? 
Thanks

Martin

0 Kudos
Message 6 of 12
(3,333 Views)

Could you keep us updated?  Sounds like an interesting project.  🙂

Bill
CLD
(Mid-Level minion.)
My support system ensures that I don't look totally incompetent.
Proud to say that I've progressed beyond knowing just enough to be dangerous. I now know enough to know that I have no clue about anything at all.
Humble author of the CLAD Nugget.
0 Kudos
Message 7 of 12
(3,308 Views)
You would probably need to modify the arduino code but it looks like the code is available.
0 Kudos
Message 8 of 12
(3,302 Views)
Given the programmability available with the arduino, are there other things you could use it for? It would be a shame to use is as just a display controller.

Mike...

Certified Professional Instructor
Certified LabVIEW Architect
LabVIEW Champion

"... after all, He's not a tame lion..."

For help with grief and grieving.
0 Kudos
Message 9 of 12
(3,290 Views)

Arduino is good and simple. You dont need to do much work as LCD code is readily available. But arduino is costly solution. If you can do some hardware and program then you can use MSP or PIC or other for that. These ICs have 2 UART, from one UART you need to receive data from LV to display on LCD and other UART you going to send these data to LCB. But this needs more effort but this is cheaper solution.

 

Its all up to you but as told keep us posted becasue this is an interesting work.....Good one Smiley Happy

 

 

--------------------------------------------------------------------------------------------------------
Kudos are always welcome if you got solution to some extent.

I need my difficulties because they are necessary to enjoy my success.
--Ranjeet
0 Kudos
Message 10 of 12
(3,277 Views)