Ast hast du vielleicht noch den Source Code deines LCD Testprogramms? Ich habe hier ein 2 Controller 4x40 Zeichen display das mit deiner Schaltung un deinem Test-Programm wunderbar funktioniert und nun möchte ich eigene Anwendungen schreiben, die auf das LCD zugreifen können.
Der Source würde mir schon einiges geben, denn ich finde die in deiner Readme erwähnten Werte für beispielsweise increase, shift, C_on, B_on, etc. irgendwie nicht in meinem datasheet 
short _stdcall USB_LCD_Connect (void)
Establishs a connection to the USB-LCD. Has to be executed before the other commands.
short _stdcall USB_LCD_Init (short increase, short shift, short C_on, short B_on, short D_shift, short R_shift, short lines, short font, short LCD)
Initialises the LCD with the options shown in the datasheet of the LCD.
short _stdcall USB_LCD_Command (unsigned char command, short LCD)
Sends the command to the LCD. For a reference of supported commands see the datasheet of the LCD.
short _stdcall USB_LCD_Data (char data[], short len, short LCD)
Writes len bytes of data into the LCD's RAM.
short _stdcall USB_LCD_BL (short value)
Switches the backlight on or off.
|