Accessibility: Fingerspelling program

+- HP Forums (http://www.hpmuseum.org/forum)
+-- Forum: HP Software Libraries (/forum-10.html)
+--- Forum: HP Prime Software Library (/forum-15.html)
+--- Thread: Accessibility: Fingerspelling program (/thread-6248.html)



Accessibility: Fingerspelling program - StephenG1CMZ - 05-14-2016 06:12 PM

This program demonstrates the ability to fingerspell text and is also useful for the visually impaired.

Fingerspelling is useful by the deaf, and this program illustrates both how a translation can be done, and how program can be modified for accessibility.

The demonstration uses low-resolution text in lieu of the fingerspelling graphics, which can easily be replaced.
Version 0.3 now implements a substitution list - so if you see 0 you can say "zero".
The need to run Hello World has been fixed.


Example FINGERSPELLERSL:

Code:

 {
  {   6,"ACK"},
  {   7,"BEL"},
  {   8,"BS"},
  { 21,"NAK"},
 { 33,"SHRIEK"},
 {34,"QUOTES"},
 { 35,"HASH"},
 { 36,"DOLLAR"},
 { 37,"PERCENT"},
 { 38,"AMPERSAND"},
 { 39,"QUOTE"},
 { 40,"BRACKETS"},
 { 41,"BRACKETS"},
 { 42,"ASTERISK"},
 { 43,"PLUS"},
 { 44,"COMMA"},
 { 45,"MINUS"},
 { 46,"PERIOD"},
 { 47,"SLASH"},
 { 58,"COLON"},
 { 59,"SEMICOLON"},
 { 60,"LESS THAN"},
 { 61,"EQUALS"},
 { 62,"GREATER THAN"},
 { 63,"QUERY"},
 { 64,"AT"},
 { 91,"SQUARE BRACKET"},
 { 92,"BACKSLASH"},
 { 93,"SQUARE BRACKET"},
 { 94,"HAT"},
 { 95,"HYPHEN"},
 { 123,"BRACE"},
 { 124,"BAR"},
 { 125,"BRACE"},
 { 126,"APPROXIMATELY"},
 {"0","ZERO"},
 {"1","ONE"},
 {"2","TWO"},
 {"3","THREE"},
 {"4","FOUR"},
 {"5","FIVE"},
 {"6","SIX"},
 {"7","SEVEN"},
 {"8","EIGHT"},
 {"9","NINE"},
 

  { 127,"DEL"}

 }

Example ICE URGENT MESSAGES:
Code:

{"SOS",
"EVACUATION"}


Hope this proves useful.