Search found 588 matches

by Ray
Thu Feb 22, 2007 1:51 pm
Forum: LK/ELK/VK/PK/OK/MX/GLK/EGLK/GVK/GLT
Topic: Typhoon questions.
Replies: 10
Views: 17895

The software is aimed at graphical displays so the textmode displays just can't handle it, the GLK/GLC Series could be supported but you are taking a severe framerate hit on those since they have 115k2 bandwidth at most while the GX being a full speed usb device gives you a maximum of 12Mbit.
by Ray
Thu Feb 22, 2007 12:53 pm
Forum: LK/ELK/VK/PK/OK/MX/GLK/EGLK/GVK/GLT
Topic: Typhoon questions.
Replies: 10
Views: 17895

Do you have any specific other display in mind?
by Ray
Thu Feb 22, 2007 12:35 am
Forum: General Chat
Topic: G15 Emulation for Matrix Orbital?
Replies: 3
Views: 11526

Logitech probably figured people would want to do that and put a chunk of their code into all aplications that use the G15 so you can't just replace some dll with one of your own and redirect output.

The only way this probably could work is probably emulate the full G15 usb device using the Device ...
by Ray
Fri Jan 19, 2007 11:55 am
Forum: LK/ELK/VK/PK/OK/MX/GLK/EGLK/GVK/GLT
Topic: Large digits on GLK12232-25-SM
Replies: 2
Views: 5106

There was a small mistake in the mgf file, It defined the characters a different size then the actual bmp's where. I Fixed the file for you, enjoy!
by Ray
Fri Oct 27, 2006 11:19 am
Forum: LK/ELK/VK/PK/OK/MX/GLK/EGLK/GVK/GLT
Topic: Reading from COM3 c++
Replies: 1
Views: 4295

In the code i posted in this topic paste the following code just before CloseHandle line.

Code: Select all

   while (true)
   {
	   ReadFile(hCom,buffer,1,&br,NULL);
	   if (br != 0)
		   printf("%.2x\n",buffer[0]);
   }
It would print out all Characters recieved.
by Ray
Tue Oct 24, 2006 9:42 am
Forum: LK/ELK/VK/PK/OK/MX/GLK/EGLK/GVK/GLT
Topic: c++ write to com1 eg
Replies: 7
Views: 19514

replace


int APIENTRY WinMain(HINSTANCE hInstance,
HINSTANCE hPrevInstance,
LPSTR lpCmdLine,
int nCmdShow)


with

int main(int argc, char **argv)


and set the character set in project options to anything but unicode and you should be fine.
by Ray
Thu Oct 12, 2006 9:07 am
Forum: LK/ELK/VK/PK/OK/MX/GLK/EGLK/GVK/GLT
Topic: MogdSharp sends undocumented command
Replies: 3
Views: 5058

While raquels quick rundown of the command is correct the protocol has a little robustness build in so you can be sure the 16k you send actually gets into the module without any communication errors.

Here's a typical conversation for the fs upload command:

1 ) Send (File System Upload) 254/176/<4 ...
by Ray
Thu Oct 05, 2006 4:45 pm
Forum: LK/ELK/VK/PK/OK/MX/GLK/EGLK/GVK/GLT
Topic: Vista RC1 Support - MX610
Replies: 8
Views: 11283

Are you running 32 or 64 bit vista? I took some screenshots while installing hte MX on a clean (32 bit) vista system with the zip raquel linked unpacked on my desktop.

http://updates.lcdstudio.com/~ray/jon/mx_install.xps

when following those steps does it work out for you then?

if you are trying ...
by Ray
Thu Mar 02, 2006 12:15 am
Forum: LK/ELK/VK/PK/OK/MX/GLK/EGLK/GVK/GLT
Topic: c++ write to com1 eg
Replies: 7
Views: 19514

Add a include to Windows.h and you should be fine with that code.
by Ray
Tue Oct 25, 2005 3:09 pm
Forum: LK/ELK/VK/PK/OK/MX/GLK/EGLK/GVK/GLT
Topic: Windows MCE with VK202-24-USB
Replies: 6
Views: 9043

Since you already have the SDK you must have noticed MCE is pretty much all managed code, if you want to get started quickly i suggest switching to C# of VB and using Omar Shahine's front panel sdk

Then all you need to do is implement an interface and talking to the display, talking to the display ...
by Ray
Fri Sep 16, 2005 5:11 pm
Forum: LK/ELK/VK/PK/OK/MX/GLK/EGLK/GVK/GLT
Topic: MX product - program keypad in VB
Replies: 5
Views: 8127



Private Sub Form_Load()
MSComm1.Settings = "19200,N,8,1"
MSComm1.CommPort = 3
MSComm1.InputLen = 0
MSComm1.RThreshold = 1
MSComm1.PortOpen = True
End Sub

Private Sub SendText(text As String)
MSComm1.Output = Chr$(&HFE) & Chr$(&H58)
MSComm1.Output = text
End Sub

Private Sub MSComm1 ...
by Ray
Tue Jul 26, 2005 12:16 am
Forum: LK/ELK/VK/PK/OK/MX/GLK/EGLK/GVK/GLT
Topic: BootEdit problems
Replies: 6
Views: 7984

Thats because you can only have 8 custom characters due to the controller used on these displays.
by Ray
Fri Jun 10, 2005 3:13 am
Forum: LK/ELK/VK/PK/OK/MX/GLK/EGLK/GVK/GLT
Topic: Installing the Internal USB Cable
Replies: 30
Views: 62102

The device listed as Standard Enhanced PCI to USB Host Controller is part of your motherboard , check the manufacturers site for updated drivers for your chipset. After that is working your MX would probably be recognized as such.
by Ray
Wed May 18, 2005 12:25 pm
Forum: LK/ELK/VK/PK/OK/MX/GLK/EGLK/GVK/GLT
Topic: Windows x64
Replies: 25
Views: 36845

Any chance he'd specify if that would be the VCP or D2XX driver?
by Ray
Thu May 05, 2005 2:12 pm
Forum: LK/ELK/VK/PK/OK/MX/GLK/EGLK/GVK/GLT
Topic: Small .NET Demo Application
Replies: 12
Views: 17588

Like jeroen said, you need the .net framework.

grab a copy off windows update or download manually from http://www.microsoft.com/downloads/deta ... laylang=en