| | 1 | = KeyPadInsertKey = |
| | 2 | Insert a character into the keypad buffer. |
| | 3 | |
| | 4 | {{{ |
| | 5 | void KeyPadInsertKey(uint8 ky); |
| | 6 | }}} |
| | 7 | |
| | 8 | == Parameters == |
| | 9 | |
| | 10 | ky - character value to insert |
| | 11 | |
| | 12 | == Return Value == |
| | 13 | |
| | 14 | * void - does not return any value |
| | 15 | |
| | 16 | == Remarks == |
| | 17 | |
| | 18 | Applications must call OpenBeeper before the keypad or beeper devices may be used from the application. |
| | 19 | |
| | 20 | == Examples == |
| | 21 | |
| | 22 | {{{ |
| | 23 | KeyPadInsertKey(ESC); |
| | 24 | }}} |
| | 25 | |
| | 26 | |
| | 27 | == See Also == |
| | 28 | |
| | 29 | * [http://tech.825spectrum.com/trac/wiki/Docs/Prog/Manual/ApplicationLibraries/lib825ev/KeypadSound/OpenBeeper OpenBeeper] |