Skip to content

hansake/CalComp_DrawingBoard_interface_test

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

10 Commits
 
 
 
 
 
 

Repository files navigation

CalComp_DrawingBoard_interface_test

Test program for serial interface of CalComp DrawingBoard Model 23120

The CalComp DrawingBoard has a 25-pin D-sub connector where pin 7 is Gnd and pin 3 is Tx. The default baud rate is 9600. My DrawingBoard has Model Number: 23120 and Part Number: 15134-080114.

I could not find any information on Internet about the interface protocol of this device. After some experimentation the following information was collected. Making a driver based on this information is perhaps another project.

The tablet sends a continuous stream of characters (bytes) where each frame starts with a character with bit 7 set (0x80). Each frame is 6 bytes long

  • Byte 1 is the one with bit 7 set, the other bytes in the frame all have bit 7 reset.
    Pressing button 0 sets bit 2 (0x04)
    Pressing button 1 sets bit 3 (0x08)
    Pressing button 2 sets bit 4 (0x10)
    Pressing button 3 sets bit 5 (0x20)
  • Byte 2 most significant X value in bits 0 - 6
  • Byte 3 least significant X value in bits 0 - 6
    The X value in byte 2 & 3 is 0 in left edge of drawing area. The right edge outputs 0x5d 0x5f (decimal 0 - 11999).
  • Byte 4 always 0
  • Byte 5 most significant Y value in bits 0 - 6
  • Byte 6 least significant Y value in bits 0 - 6
    The Y value in byte 5 & 6 is 0 in bottom edge of drawing area. The top edge outputs 0x5d 0x5f (decimal 0 - 11999).

Running the program:
hal@LinuxServer:~/digitizer$ ./dtest < /dev/ttyS0
Frame: [bc 31 2d 00 2e 0f] X: 6317, Y: 5903, Button: 0 1 2 3
Exit dtest

Status of the digitizer is updated for each frame that is sent. The program is stopped if all four buttons are pressed (or using Ctrl-C).

About

Test program for serial interface of CalComp DrawingBoard Model 23120

Resources

Stars

1 star

Watchers

1 watching

Forks

Releases

No releases published

Packages

 
 
 

Contributors