#!/bin/bash # # USB-LCD-Howto.txt # # # 15-Mar-05 amo Date-of-Birth # # # # Kernel Config # ------------- # CONFIG_USB_SERIAL=m # CONFIG_USB_SERIAL_GENERIC=y # CONFIG_USB_SERIAL_FTDI_SIO=m # # Lod the usb modules # ------------------- # modprobe usb-uhci # modprobe usbcore # modprobe usbserial # modprobe ftdi_sio # # insmod usblcd # # # View the USB Status # ------------------- # usbview # lsusb # # # USB Drivers # ----------- # usblcd http://www.usblcd.de # # # # other serial devices ( VendorID and ProductID ) # # insmod usbserial vendor=0x0403 product=0xfa03 # # # # # interface to USB chipset # http://ftdi-usb-sio.sourceforge.net # # # Amtel Based USB LCD System w/ schematic # --------------------------------------- # http://ldp.rtin.bz/linuxfocus/English/March2003/article286.shtml#286lfindex2 # # # # # Send something to the USB-LCD display # ------------------------------------- # cat > /dev/ttyUSB0 Hello World ^D # # # End of file