Instruction manual
Table Of Contents
- ViewPoint Wireless Touch Panels
- Introduction
- Product Pics and Specs
- Connections, Cleaning, and Charging
- Touch Panel Basics
- Designing Touch Panel Pages
- Overview
- Activating the Edit button
- Setting the Device Base
- Setting the Device Used
- Creating a Page
- Creating a Button
- Button Properties
- Using TPDesign3 to Download Bitmaps, Icons, and Fonts
- Button Properties for External Pushbuttons
- Creating an IR Macro Button
- Creating a Joystick
- Creating a Bargraph
- Linking the New Page to the Main Page
- Exiting Edit Mode
- Programming
- Overview
- PC to ViewPoint Connections
- Programming the ViewPoint
- Programming Changes
- Serial Commands
- System Send_Commands
- Gray Scale and Programming Numbers
- Colors/Shades of Gray and Programming Numbers
- Font Styles and Programming Numbers
- Border Styles and Programming Numbers
- Shorthand Send Commands
- Color/Gray Scale Send_Commands
- Variable Text Send_Commands
- Shorthand Variable Text Commands
- Buttons String Commands
- Button IR Macro Commands
- Loading Infrared (IR) Files
- Upgrading the Firmware
- Contacting Sales and Technical Support
- Index

92 Programming ViewPoint Wireless Touch Panels
System Send_Commands (Cont.)
Command Description
"'@FON',<variable text
address>,<font style>"
Set the text font on a button.
variable text address = 1 - 255
font style = See Figure 93
Example:
SEND_COMMAND TP, "'@FON',56,32"
Sets the text on button 56 to variable font style 32.
"'@ICO',<variable text
address>,<icon>"
Assign an icon to a button. The icon files are imported into the
TPDesign3 software program, and their numbers are assigned
by the touch panel during the download process.
variable text address = 1 - 255
icon file number = 1 - 255
Example:
SEND_COMMAND TP,'"'@ICO',16,12"
Adds icon 12 on button 16.
"'@JUS',<variable text
address>,<text align-
ment>"
Set the text alignment on a button.
variable text address = 1 - 255
text alignment = 1 - 9 as shown in the following alignment chart
Example:
SEND_COMMAND TP, "'@JUS',9,5"
Centers the text on button 9.
"'@SHO',<variable text
address>,<button
on/off>"
Set a specific button to on or off.
variable text address = 1 - 255
0 = button Off
1 = button On
Example:
SEND_COMMAND TP,"'@SHO',128,0"
Sets button 128 off.
1
2
3
4
5
6
7
8
9