Search found 6 matches

by sheetsjf
Thu Nov 13, 2014 3:22 pm
Forum: LK/ELK/VK/PK/OK/MX/GLK/EGLK/GVK/GLT
Topic: Script ID 256 and above wont run (Firmware 8.5)
Replies: 1
Views: 3712

Script ID 256 and above wont run (Firmware 8.5)

I just loaded firmware 8.5 to my GLK240128-25 display to test out scripting with ID's greater than 256. I created this .mts file to use with the MOGD# script display feature to test out a script with ID 512 (ID byte1: 0, ID byte2: 2) SendNumeric 254 92 2 0 2 17 0 0 0 ReadByteCompare 1 SendNumeric 25...
by sheetsjf
Fri Jun 20, 2014 7:42 am
Forum: LK/ELK/VK/PK/OK/MX/GLK/EGLK/GVK/GLT
Topic: Problem with Sending/Displaying Animation to GLK240128-25
Replies: 7
Views: 7842

Re: Problem with Sending/Displaying Animation to GLK240128-2

I am currently uploading scripts to the display through Mogd Sharps "Script Display" feature. I am creating .mts files that begin with the "Upload Script File" command bytes (254 92 2 ID Length Data), and then I use the File Transfer protocol to upload the desired script Here is ...
by sheetsjf
Thu Jun 19, 2014 11:01 am
Forum: LK/ELK/VK/PK/OK/MX/GLK/EGLK/GVK/GLT
Topic: Problem with Sending/Displaying Animation to GLK240128-25
Replies: 7
Views: 7842

Re: Problem with Sending/Displaying Animation to GLK240128-2

I have gotten my animation working just fine, and I would like to thank you for your help on that. I am now working on loading some scripts to the display, however I am having some trouble getting scripts with an ID > 255 to be displayed. I am wondering if I have run into a similar problem with the ...
by sheetsjf
Tue Jun 10, 2014 9:45 am
Forum: LK/ELK/VK/PK/OK/MX/GLK/EGLK/GVK/GLT
Topic: Vertical Alignment of Font 2 Characters
Replies: 1
Views: 2705

Vertical Alignment of Font 2 Characters

I am working on a script for the GLK240128 display, which is ment to excecute the following commands: Clear Screen Initialize a Label (ID = 1, Vert = 1, Hor = 1, Font = 2, Background = 0, CharSpace = 1) Initialize a Label (ID = 2, Vert = 1, Hor = 1, Font = 2, Background = 0, CharSpace = 1) Draw a Re...
by sheetsjf
Fri May 16, 2014 12:33 pm
Forum: LK/ELK/VK/PK/OK/MX/GLK/EGLK/GVK/GLT
Topic: Problem with Sending/Displaying Animation to GLK240128-25
Replies: 7
Views: 7842

Re: Problem with Sending/Displaying Animation to GLK240128-2

I still can't seem to get my animation to run. Here is my updated Animation data code: public static void HardCodedAnimation(Display display) { UInt16 FileID = 25; UInt32 size = 83; //Total bytes of animationFile float dataLength = 0; LinkedList<byte> AnimationData = new LinkedList<byte>(new byte[0]...
by sheetsjf
Thu May 15, 2014 3:15 pm
Forum: LK/ELK/VK/PK/OK/MX/GLK/EGLK/GVK/GLT
Topic: Problem with Sending/Displaying Animation to GLK240128-25
Replies: 7
Views: 7842

Problem with Sending/Displaying Animation to GLK240128-25

I am working on a GLK240128-25 display with firmware version 8.4. I can successfully upload and display bitmaps, but I am having trouble getting animations to work. Here is a portion of the C# code I am using to upload a simple animation: public bool UploadEightPointOneAnimation(UInt16 id, UInt32 si...