83Plus:OS:TI Keyboard

From WikiTI
Revision as of 16:52, 18 June 2005 by AndyJ (Talk | contribs)

Jump to: navigation, search
This article is a stub. You can help WikiTI by expanding it.


The 83+ family's OS (versions 1.15 and greater) have built-in support for the TI Keyboard. The default action is to translate some key combinations into calculator key codes (for example, Diamond+` is the same as pressing the APPS key). You can set a flag to disable this behavior and retrieve the raw key codes from the keyboard, as shown below.

Key Translation

Fill in what the OS does by default here.

Key Codes

Please see your latest copy of ti83plus.inc for the bulk of these codes. For berevity, I'll only put confusing or not obvious equates here.

All of the keys or key combinations (ie, shift+key) that result in a key that is present on the calculator (be it the keypad or a menu) return the same code as said other way. (For example, Shift+/ returns kQuote, the same as Alpha ["].) All other keys return a two-byte key code, the first byte being kGROUP3. All keys in this group are from the keyboard.

When lowercase is disabled (bit 3, (iy+24) is reset), pressing the letter keys always results in capital input. When lowercase is enabled (that flag is set), pressing letter keys alone produces lowercase letters, and with shift or caps lock produces capital letters.

The following is a list of potentially confusing equates:

  • kVertSlash is the pipe |.
  • kDiaAdd would make more sense as kDiaEquals, since kDiaAdd implies shift is also pressed. Likewise for kSqrAdd.
  • kDiaDecPnt would be easier to understand as kDiaPeriod. Likewise for kSqrDecPnt.
  • Square+T is not kSqrT, but rather kSquareT -- this is to avoid ambiguity with kSqrt (square root).

Note that there are no keycodes for Diamond+Shift+Key, Diamond+Square+Key, or Square+Shift+Key. The keyboard itself is not able to recognize these key combinations.