FEC PP-9715W User manual

PP-9715W | USER MANUAL
Pag.1
USER MANUAL
PP-9715W
Version 0.1

PP-9715W | USER MANUAL
Pag.2
Safety and Warranty
1.Read these safety instructions carefully.
2.Disconnect from power outlet before cleaning, disassembly or transport. Do not use liquid or spray detergents
for cleaning. Use a damp cloth only and avoid any prolonged contact with moisture.
3.Keep the unit away from humidity.
4.Place the unit on a sturdy surface before servicing or operation to prevent accidental drops.
5.The openings on the enclosure are for ventilation. Do NOT cover the openings.
6.Make sure the voltage and load ratings of the power source are correct before connecting the equipment to the
power outlet.
7.Position the power cord to prevent accidental tripping. Do not twist, pinch or clip the power cord.
8.All cautions and warnings printed on the equipment should be followed.
9.If the equipment is not used for a long time, disconnect it from the power source.
10.Never pour any liquid into openings. This could cause fire or electrical shock.
11.For safety reasons, only qualified service personnel should open and service the equipment.
12.If any of the following situations arises, get the equipment checked by service personnel:
•The power cord, plug, or adapter is visibly damaged.
•Liquid has entered into the equipment.
•The equipment has been exposed to moisture.
•The equipment has been dropped and damaged.
•The equipment has obvious signs of breakage.
13.DO NOT LEAVE THIS EQUIPMENT IN AN UNCONTROLLED ENVIRONMENT WHERE

PP-9715W | USER MANUAL
Pag.3
CHAPTER 1 | INTRODUCTION
•Platform: INTEL Coffee Lake platform support INTEL gen 9 processor
•Panel PC with Dual hinge stand: Adjustable angle and height
•Improve the viewing angle, enhance the user experience, can also be Desktop, Pole
orWall-mounted.
•Shared Peripherals: Share the same peripherals with XPOS
•Support FEC Platform

PP-9715W | USER MANUAL
Pag.4
Main features

PP-9715W | USER MANUAL
Pag.5
Peripherals - optional
XM-1010W

PP-9715W | USER MANUAL
Pag.6
Wall Mount Bracket – optional
Stand – Hinge Type
Wall Mount Bracket

PP-9715W | USER MANUAL
Pag.7
Color
Cable Management

PP-9715W | USER MANUAL
Pag.8
Adjustable Angle
Dimentions

PP-9715W | USER MANUAL
Pag.9
Rear I/O Panel Connectivity – IO Default
I/O Port Connector Type Application
Video Ports HDMI x1 For 2nd HDMI Monitor
PUSB 24V 24V Power USB
FEC I/O Including 5V/12V/24V (BIOS select) and USB 2.0 x 2
and Com port x 1
FEC I/O cables
20V in 20V DC in ( 130W )
Cash drawer 12V / 24V adjust by bios
USB DP or FEC
DD
USB TC x1 (USB DP, FEC DD by BIOS select ) For 2nd USB DP
Monitor
Serial port RJ45 Com port x 3
USB USB 2.0 x 2 , USB 3.0 x 2
Ethernet Giga Lan
Packing list
Standard
Optional & Peripherals
1
15.6” XPPC
2
20V 130W Power Adaptor
3
AC Cord Cable
4
RJ-45 to D-sub9 Convert Cable x3

PP-9715W | USER MANUAL
Pag.10
CHAPTER 2 | HARDWAR INSTALLATION
AND SETTING
Optional Device Installation
Customer Display Installation (XP-2025)
1. Pull up the connector 2. Fasten 2 screws for customer display
Install Add-on Device
Remover Plastic Cover Plug in ID device (USB) and
fix it via 1 x M3 screw

PP-9715W | USER MANUAL
Pag.11
Remove & Install Cable Cover
Remove Cable Cover
Install Cable Cover

PP-9715W | USER MANUAL
Pag.12
CHAPTER 3 | DRIVER & UTILITY
INSTALLATION AND
SETUP
1. Chipset
•Locate chipset folder and double click on [ SetupChipset ]
•Click [ Next ]
•Click [ Accept ]
•Click [ Install ]
•Click [ Yes ]

PP-9715W | USER MANUAL
Pag.13
•Click [ Restart Now ]
2.Audio
•Double click [ Setup ]
•Click [ Yes ]
•Click [ Next ]
•Click [ Yes, I want to restart
my computer now ],
[ Finish ]

PP-9715W | USER MANUAL
Pag.14
3. Graphics
•Double Click [ igxpin ]
•Click [ Yes ]
•Click [ Next ]
•Click [ Next ]
•Click [ Finish ]

PP-9715W | USER MANUAL
Pag.15
4. Intel®
ME
•Double Click [ SetupME ]
•Click [ Next ]
•Accept Terms then click [ Next ]
•Click [ Next ]
•Click [ Yes ]
•Click [ Finish ]

PP-9715W | USER MANUAL
Pag.16
5. Serial IO
•Double Click [ SetupSerialIO ]
•Click [ Next ]
•Accept Terms then click [ Next ]
•Click [ Next ]
•Click [ Next ]
•Select Yes, I want to restart this
computer now the click [ Finish ]

PP-9715W | USER MANUAL
Pag.17
6. Sensor
•Double Click [ install ]
•Click [ Yes ]
Press any key to continue …
7
. Cash Drawer
Please contact customer service staff and request with "FEC Cash Drawer SDK Integration
Guide"
8. OPOS
Please contact customer service staff and request with " Driver OPOS per FEC CashDrawer &
VFD/LCM"
CHAPTER 4 | INSTALLAZIONE

PP-9715W | USER MANUAL
Pag.18
SOFTWARE
Device Sample Code
1. Cash Drawer
-
public void CashDrawer_1_Open_click(View view) { try
{
Intent intent = new Intent(" X.intent.action.SET_BOX_OUTPUT1_HIGH");
mContext.sendBroadcast(intent);
Thread.sleep(200);
Intent intent1 = new Intent(" X.intent.action.SET_BOX_OUTPUT1_LOW");
mContext.sendBroadcast(intent1);
} catch (Exception e) {
Log.d(TAG, "Failed to send broadcast.");
}
}
public void CashDrawer_2_Open_click(View view)
{ try {
Intent intent = new Intent(" X.intent.action.SET_BOX_OUTPUT2_HIGH");
mContext.sendBroadcast(intent);
Thread.sleep(200);
Intent intent1 = new Intent(" X.intent.action.SET_BOX_OUTPUT2_LOW");
mContext.sendBroadcast(intent1);
} catch (Exception e) {
Log.d(TAG, "Failed to send broadcast.");
}
}
-

PP-9715W | USER MANUAL
Pag.19
2. COM Port
-
int intSerialPortHandle = -1; int
intReturnCode = -1; private int
intBaudRate=9600;
private String strTestString="testStringtestString";
String strttyUSBPath;
SerialPort sp;
private void SleepMiniSecond(SerialPort spThread, int minSecond)
{
try {
spThread.sleep(minSecond);
dump_trace("SLEEP_MSEC="+ minSecond);
} catch (InterruptedException e) { e.printStackTrace();
}
}
private boolean RS232_Test
{
int intDataReceivedLength=0;
sp = new SerialPort();
strttyUSBPath = "/dev/ttyUSB0"
intSerialPortHandle = sp.open(strttyUSBPath,intBaudRate);
byte[] btyVersion_msg_received = new byte[256];
Arrays.fill( btyVersion_msg_received, (byte) 0 );
intReturnCode = sp.write(intSerialPortHandle,strTestString.getBytes());
COM1 = /dev/ttyUSB0
COM2 = /dev/ttyUSB1
COM3 = /dev/ttyUSB2
COM4 = /dev/ttyUSB3
COM5 (LCM/VFD) = /dev/ttyS1

PP-9715W | USER MANUAL
Pag.20
sp.setListener(splistener);
intDataReceivedLength = sp.getDataReceivedLength(); int
nRetry=0;
while (intDataReceivedLength == 0)
{
SleepMiniSecond(sp, 1000);
intDataReceivedLength = sp.getDataReceivedLength(); nRetry++;
if (nRetry == 2) break;
}
if ( intDataReceivedLength>= 0)
{ btyVersion_msg_received =
Arrays.copyOf(sp.getBytDataReceived(),intDataReceivedLength);
}
sp.close(intSerialPortHandle); sp
= null;
boolean testResult = false;
testResult = (intDataReceivedLength > 0 )? true: false; return
testResult;
}
Table of contents
Other FEC Touch Terminal manuals