Hi neighbours and friends.
I have an HD44780 connected to the GPIO pins of my raspberry pi, with an OpenELEC distro for it and running fine. The one thing I don't like is having so many wires messing up in the back of my TV, so I purchased this module to drive the LCD through USB.
My problem now is that LCDproc only drives Matrix Orbital devices via serial port. So My questions are:
1. Does anybody knows about a driver for LCDproc to drive USB MtxOrb?
2. If not, how can I connect the backpak via serial port to the RaspI? So I can avoid several wires and the protoboard circuit.
Thanks in advance!!
On the Pi, the hardware UART is set to "console mode" by default, so it is used by the OS. If you want to use it you'll first need to disable the OS from using it.
Here's some notes from my blog (http://http://zuzebox.wordpress.com/2013/11/26/minipiiio-rs232-set-up/) that might help. Make a backup of the two files we’ll be changing.
sudo cp /boot/cmdline.txt /boot/cmdline.bak
sudo cp /etc/inittab /etc/inittab.bakIn the LXterminal shell type the command:
sudo leafpad /boot/cmdline.txtFind and remove “console=ttyAMA0,115200” and “kgdboc=ttyAMA0,115200” parameters.
The cmdline.txt will probably contain the default configuration line:
dwc_otg.lpm_enable=0 console=ttyAMA0,115200 kgdboc=ttyAMA0,115200
console=tty1 root=/dev/mmcblk0p2 rootfstype=ext4 elevator=deadline rootwaitFind and remove “console=ttyAMA0,115200” and “kgdboc=ttyAMA0,115200” configuration parameters so it looks something like this:
dwc_otg.lpm_enable=0 console=tty1 root=/dev/mmcblk0p2 rootfstype=ext4 elevator=deadline rootwait
Make sure to save the file and quit the editor.
Finally edit the “/etc/inittab” file to disable the use of the “ttyAMA0? serial port. In LXterminal type this command:
sudo leafpad /etc/inittabNear the bottom of the file, look for a configuration line that includes the “ttyAMA0” port address.
Type a hash (or pound) sign (“#”) in front of the line “ttyAMA0“.
Save the file and exit the editor. Once done to reboot your Pi.
<shameless plug>
If you need a RS232 connection then here's a board that connects to the pi and provides the RS232 interface.

You can get them from Tindie.com here (http://https://www.tindie.com/products/DTronixs/piio-minipiio-rs232-for-raspberry-pi-kit-only/)
</shameless plug>