![Telcom Research CallShop FONE DISPLAY Скачать руководство пользователя страница 12](http://html1.mh-extra.com/html/telcom-research/callshop-fone-display/callshop-fone-display_installation-and-protocol-manual_1079427012.webp)
A7- 3375 North Service Road, Burlington ON Canada L7N 3G2
Phone
+905.336.2450
Fax
+647-436-6954
Web
www.telcomresearch.com
Page 11
a
= 8 characters representing special character #1.
b
= 8 characters representing special character #2.
c
= 8 characters representing special character #3.
d
= 8 characters representing special character #4.
e
= 8 characters representing special character #5.
f
= 8 characters representing special character #6.
g
= 8 characters representing special character #7.
h
= 8 characters representing special character #8.
Example:
The example below is “C” source code to send a group of special characters.
void SendSpecialCharacters( void )
{
// Define the array to hold the 64 bytes
char special_chars[ ] =
{
0x86, 0x89, 0x88, 0x9E, 0x88, 0x8D, 0x92, 0x80,
// £
0x87, 0x88, 0x9e, 0x88, 0x9e, 0x88, 0x87, 0x80,
// euro_image
0x9F, 0x91, 0x91, 0x91, 0x91, 0x91, 0x91, 0x80,
// pi_image
0x84, 0x8A, 0x8A, 0x91, 0x91, 0x91, 0x91, 0x80,
// lambda_image
0x9F, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x80,
// gamma_image
0x84, 0x8A, 0x8A, 0x91, 0x91, 0x91, 0x9F, 0x80,
// delta_image
0x8C, 0x92, 0x92, 0x96, 0x91, 0x99, 0x96, 0x90,
// ß
0x84, 0x8A, 0x80, 0x91, 0x91, 0x93, 0x8D, 0x80,
// û
};
char buf[ 66 ];
sprintf( buf, "G%s\r", special_chars );
WriteToFD( buf );
}
To use one of these characters in an LCD Message or as the Currency Symbol you replace
the standard ASCII character with the character 0x01 (‘\1’) to 0x08 (‘\8’).
For example to send the message, “Your total is £1234.56” you would send the message
with the following “C” string:
“Your total is \11234.56”