Reply
Logi Nu
Trickyo
Posts: 2
Registered: ‎07-11-2009
0
Accepted Solution

G13 OutputLCDMessage

HI

 

I have a G13 installed on Vista 64-Bit, Release 3.0.2.173. I'm trying to get the OutputLCDMessage to work via the script and i'm having no luck at all this is the simple script that i'm using 

 

 

function OnEvent(event, arg)
OutputLogMessage("event = %s, arg = %s\n", event, arg);
ClearLCD();
OutputLCDMessage(("Hello world1")
OutputLCDMessage("Hello world2")
PressKey("a", "b");
end

 

Testing this under word, I get the a and b typed in the document, but noting on the display. Is there anything that i am missing 

 

Thanks 

Logi Visitor
OGMercules
Posts: 34
Registered: ‎06-02-2009
0

Re: G13 OutputLCDMessage

Get the latest drivers and try specifeying the length the message is displayed. EX: OutputLCDMessage("Hello World", 1000)
Logi Apprentice
daemonvi
Posts: 127
Registered: ‎09-14-2008
0

Re: G13 OutputLCDMessage

Did you have newlines at the end of the output lines? Your quoted material has smiley faces (at least for me) so I can't see what the original code looked like. It may be LCD output is delayed until a newline is seen. I don't think you wanted a single line with "Hello world1Hello world2".

 

Try....


ClearLCD();
OutputLCDMessage( "Hello world1\n" );
OutputLCDMessage( "Hello world2\n" );
Logi Nu
Trickyo
Posts: 2
Registered: ‎07-11-2009
0

Re: G13 OutputLCDMessage

All it was that the Logitech G-series Scripting Display was not enabled 

 

Thanks for the help all anyway

Logi Nu
mike94560
Posts: 3
Registered: ‎07-09-2010

Re: G13 OutputLCDMessage

Settings >> Game Panel Manager >> Logitech G13 LCD Then check the box for 'Immediate Display of High Priority Items'.

 

Logi Nu
JoeNorth
Posts: 3
Registered: ‎03-21-2012
0

Re: G13 OutputLCDMessage

Thanks for the suggestion - this solved the problem for me (G510 keyboard display), while the other suggestions did not.