Search found 2573 matches

by Henry
Tue Dec 04, 2001 11:45 am
Forum: LK/ELK/VK/PK/OK/MX/GLK/EGLK/GVK/GLT
Topic: LCD Smartie Development
Replies: 24
Views: 21156

Here is the discusion for the port of LCD Samrtie for MO displays!!!

Post any suggestions or bugs here.

Author: BasieP


_________________
Henry J.
Technical Support
Matrix Orbital

<font size=-1>[ This Message was edited by: Henry on 2001-12-04 11:53 ]</font>
by Henry
Mon Dec 03, 2001 6:56 pm
Forum: LK/ELK/VK/PK/OK/MX/GLK/EGLK/GVK/GLT
Topic: Progamming a graphical with C++
Replies: 8
Views: 8387

Dexter, you alive? How is the graphic plug in coming along? I was at virtul-hideout and stumbled on your site again and saw some new pics... it's looking great! Let me know if you need a beta tester :grin:

http://www.smokinmhz.com/
by Henry
Mon Dec 03, 2001 4:08 pm
Forum: General Chat
Topic: Sponsorship and Such
Replies: 8
Views: 7790

YGM
by Henry
Mon Dec 03, 2001 2:39 pm
Forum: LK/ELK/VK/PK/OK/MX/GLK/EGLK/GVK/GLT
Topic: LK204-25PC GPO Question
Replies: 13
Views: 11294

There was a thread about this here

http://www.lcdforums.com/forums/viewtop ... forum=1&15

this was mostly talking about the UK, but Digikey should have them too.. I don't know the part number though...
by Henry
Mon Dec 03, 2001 2:24 pm
Forum: General Chat
Topic: Spam Sucks and What we are doing about it... Please Read
Replies: 0
Views: 4360

Spam Sucks! Matrix Orbital will refuse e-mail from the following list of sources. These servers have been commandeered by spammers and we have simply "had enough". If you normally use one of these servers, please use an alternate account to contact us. If you wish, the "Contact" ...
by Henry
Mon Dec 03, 2001 2:04 pm
Forum: LK/ELK/VK/PK/OK/MX/GLK/EGLK/GVK/GLT
Topic: LK204-25PC GPO Question
Replies: 13
Views: 11294

by Henry
Mon Dec 03, 2001 10:17 am
Forum: LK/ELK/VK/PK/OK/MX/GLK/EGLK/GVK/GLT
Topic: could someone test this code? vb6 program for 20X4 LCDs
Replies: 12
Views: 10340

Well, I tried it and I keep getting a error that I'm using MBM5 pre 5.1 even though I'm using 5.1.0.2. I re-installed it, and reboted and I still get the same problem.
by Henry
Sun Dec 02, 2001 12:05 pm
Forum: LK/ELK/VK/PK/OK/MX/GLK/EGLK/GVK/GLT
Topic: code examples.
Replies: 22
Views: 16363

Well, look at any manual...

http://www.matrixorbital.com/manuals.htm
by Henry
Sun Dec 02, 2001 1:49 am
Forum: LK/ELK/VK/PK/OK/MX/GLK/EGLK/GVK/GLT
Topic: code examples.
Replies: 22
Views: 16363

BTW, what are you making?
by Henry
Sun Dec 02, 2001 1:45 am
Forum: LK/ELK/VK/PK/OK/MX/GLK/EGLK/GVK/GLT
Topic: code examples.
Replies: 22
Views: 16363

On 2001-12-02 01:29, xull1x wrote: oh i just remembered.. cursor on / off? Cursor Blink On ASCII 'S', Hex 53, Decimal 83 Syntax 0xFE 0x53 To turn on the blinking cursor at the current position, send a command prefix followed by the character 'S'. Please note that the blinking cursor is on by defaul...
by Henry
Sun Dec 02, 2001 1:41 am
Forum: LK/ELK/VK/PK/OK/MX/GLK/EGLK/GVK/GLT
Topic: code examples.
Replies: 22
Views: 16363

ok, this is a tad harder... but here it goes... 0xFE //command prefix 0x4E //this starts the custom characters 0x00 //0x00 to 0x07 for 8 custom characters. 0xC //here you just send 8 bytes of the custom character. 0x12 //Here is the degree symbol 0x12 0xC 0x00 0x00 0x00 0x00 ok, now it is defined. s...
by Henry
Sun Dec 02, 2001 1:22 am
Forum: LK/ELK/VK/PK/OK/MX/GLK/EGLK/GVK/GLT
Topic: code examples.
Replies: 22
Views: 16363

Cursor Left ASCII 'L', Hex 4C, Decimal 76 Syntax 0xFE 0x4C To move the cursor one space to the left of current position, send a command prefix followed by the character 'L'. Cursor Right ASCII 'M', Hex 4D, Decimal 77 Syntax 0xFE x04D Go To Position ASCII 'G', Hex 47, Decimal 71 Syntax 0xFE 0x47<colu...
by Henry
Sun Dec 02, 2001 1:18 am
Forum: LK/ELK/VK/PK/OK/MX/GLK/EGLK/GVK/GLT
Topic: code examples.
Replies: 22
Views: 16363

backlight on and off: { static int backlighton = true; if (backlighton) { ZComm1->WriteCommByte(0xfe); ZComm1->WriteCommByte('F'); backlighton=false; } else { ZComm1->WriteCommByte(0xfe); ZComm1->WriteCommByte('B'); ZComm1->WriteCommByte(0); backlighton=true; } }
by Henry
Sun Dec 02, 2001 1:17 am
Forum: LK/ELK/VK/PK/OK/MX/GLK/EGLK/GVK/GLT
Topic: code examples.
Replies: 22
Views: 16363

Turning GPOs on and of, and writing text to the screen if (CheckBox1 -> Checked) { ZComm1->WriteCommByte(0xfe); ZComm1->WriteCommByte('W'); ZComm1->WriteCommByte(1); //turns GPO on ZComm1->WriteCommByte(0xfe); ZComm1->WriteCommByte('W'); ZComm1->WriteCommByte(2); //turns LED on ZComm1->WriteCommByte...
by Henry
Sun Dec 02, 2001 1:17 am
Forum: LK/ELK/VK/PK/OK/MX/GLK/EGLK/GVK/GLT
Topic: code examples.
Replies: 22
Views: 16363

Clearing the screen:

Code: Select all

{
  ZComm1->WriteCommByte(0xfe);
  ZComm1->WriteCommByte('X');
}

_________________
Henry J.
Technical Support
Matrix Orbital

<font size=-1>[ This Message was edited by: Henry on 2001-12-02 01:18 ]</font>