# NEON-2000-ONO Series

# DI/O Function Library Reference

![Exterior view of a silver ADLINK NEON camera module (no text or symbols on body)](.neon-2000-ono-flr-50m-51050-2000-10-final/6ca84a0c6b5d4ace84bce6adb163eae438e179ef54313624aa1d6e6625ed7b5c.jpg)

Manual Rev.: 1.0

Revision Date: May 8, 2024

Part No: 50M-51050-2000

Revision History

<table><tr><td>Revision</td><td>Release Date</td><td>Description of Change(s)</td></tr><tr><td>1.0</td><td>2024-05-08</td><td>Official release</td></tr></table>

# Preface

Copyright © 2024 ADLINK Technology, Inc.

This document contains proprietary information protected by copyright. All rights are reserved. No part of this manual may be reproduced by any mechanical, electronic, or other means in any form without prior written permission of the manufacturer.

# Disclaimer

The information in this document is subject to change without prior notice in order to improve reliability, design, and function and does not represent a commitment on the part of the manufacturer.

In no event will the manufacturer be liable for direct, indirect, special, incidental, or consequential damages arising out of the use or inability to use the product or documentation, even if advised of the possibility of such damages.

# Environmental Responsibility

ADLINK is committed to fulfill its social responsibility to global environmental preservation through compliance with the European Union's Restriction of Hazardous Substances (RoHS) directive and Waste Electrical and Electronic Equipment (WEEE) directive. Environmental protection is a top priority for ADLINK. We have enforced measures to ensure that our products, manufacturing processes, components, and raw materials have as little impact on the environment as possible. When products are at their end of life, our customers are encouraged to dispose of them in accordance with the product disposal and/or recovery programs prescribed by their nation or company.

# Trademarks

Product names mentioned herein are used for identification purposes only and may be trademarks and/or registered trademarks of their respective companies.

# Conventions

Take note of the following conventions used throughout this manual to make sure that users perform certain tasks and instructions properly.

![The image displays an icon of a white document with a folded top-right corner. Faint gray horizontal lines represent text on the page. A large, bold red checkmark is superimposed over the document.](.neon-2000-ono-flr-50m-51050-2000-10-final/4f8c39be560aaa3c4e519d52b362015c4f8b4520632377fe10157ef2d5c1ad33.jpg)
NOTE:

Additional information, aids, and tips that help users perform tasks.

![The image displays a yellow triangular warning sign with a thick black border. Inside the triangle is a large, black exclamation mark (!).](.neon-2000-ono-flr-50m-51050-2000-10-final/8e23a1a6aa787bccb17552c2b0369e7946549da163fb01f1d04d9a6a51bcb85e.jpg)
CAUTION:

Information to prevent minor physical injury, component damage, data loss, and/or program corruption when trying to complete a task.

![The image shows a red triangular warning symbol with a thin black outline. Centered inside the red triangle is a large white exclamation point (!).](.neon-2000-ono-flr-50m-51050-2000-10-final/fd9664a4c738a21c6480498ac7cdda9ee01a3a3c0bce0654ab4c92e45399bfe3.jpg)
WARNING:

Information to prevent serious physical injury, component damage, data loss, and/or program corruption when trying to complete a specific task.

# Table of Contents

# Revision History......... ii

# Preface ............ iii

# 1 Introduction ......

1.1 Setting Up the Neon SDK .. 1

# 2 Function Library .......... 5

2.1 List of Functions..... 5
2.2 Function Library ..... 6

2.2.1 Device Control Function .. 6
2.2.2 DIO Functions... 7
2.2.3 User-defined LED Control ... .. 20

# Important Safety Instructions ........... 2 3

# Getting Service........ . 27

This page intentionally left blank.

# 1 Introduction

The NEON-2000-ONO Function Library Reference provides necessary API details for functions that can used to develop applications in C/C++. When the NEON-2000-ONO driver is installed, functions can be directly called with the Neon SDK (the driver is pre-installed at the factory).

Example:
```cpp
#include "Neon.h"
using namespace std;
char buffer[256];
if (Neon_GetDeviceInfo(buffer, sizeof(buffer)) != COMMON_ERROR) cout &lt;&lt; buffer &lt;&lt; endl;
...
```

For more examples, refer to the sample code.

# 1.1 Setting Up the Neon SDK

If users need to updatee or re-install the Neon SDK, please go to the NEON-2000-ONO product page at www.adlinktech.com and download the driver package.

Use the following steps to set up the Neon SDK.

# 1. Install the Neon SDK:

sudo dpkg -i NeonSDK.deb

# 2. Set the file paths:

 libraries at /usr/lib/Neon
 headers at /usr/include/Neon/Neon.h
 samples at /usr/src/Neon/Sample

# 3. Build Neon\_Information Sample:

#cd /usr/src/Neon/Sample/Neon\_Information#make

# 4. Build Neon\_Setting Sample:

#cd /usr/src/Neon/Sample/Neon\_Setting #make

# 5. Build Neon\_ListenTrigger Sample:

#cd /usr/src/Neon/Sample/Neon\_ListenTrigger#make

# 6. Run Neon\_Information Sample:

#cd /usr/src/Neon/Sample/Neon\_Information# ./NeonInformation

# 7. Neon\_Setting Help:

Execute the application with no parameters. #cd /usr/src/Neon/Sample/Neon\_Setting # ./NeonSet

# 8. Neon\_ListenTrigger Sample:

The program will receive a trigger event via a callback function. Use &lt;Ctrl&gt;+&lt;c&gt; to terminate this program.

#cd /usr/src/Neon/Sample/Neon\_ListenTrigger# ./NeonListenTrigger

# 9. Run Neon\_Python Sample:

#cd /usr/src/Neon/Sample/Neon\_Python #python3 Neon.py

# 10. Run Neon\_Led Sample:

\$ cd /usr/src/Neon/Sample/Neon\_Led \$ ./NeonLed

# 11. Please find the latest sample at:

https://github.com/AIoT-IST/Neon\_Samples

This page intentionally left blank.

# 2 Function Library

# 2.1 List of Functions

<table><tr><td>Category</td><td>Function</td></tr><tr><td>Device Control</td><td>Neon_GetDeviceInfo</td></tr><tr><td rowspan="21">DIO</td><td>Neon_GetDINums</td></tr><tr><td>Neon_GetDONums</td></tr><tr><td>Neon_SetDOState</td></tr><tr><td>Neon_GetDIState</td></tr><tr><td>Neon_SetDIO0Config</td></tr><tr><td>Neon_GetDIO0Config</td></tr><tr><td>Neon_SetDITriggerPolarity</td></tr><tr><td>Neon_GetDITriggerPolarity</td></tr><tr><td>Neon_SetDITriggerCallback</td></tr><tr><td>Neon_SetStrobeOutEnable</td></tr><tr><td>Neon_GetStrobeOutEnable</td></tr><tr><td>Neon_SetStrobeOutDelay</td></tr><tr><td>Neon_GetStrobeOutDelay</td></tr><tr><td>Neon_SetStrobeOutPulseWidth</td></tr><tr><td>Neon_GetStrobeOutPulseWidth</td></tr><tr><td>Neon_SetExposureDelay</td></tr><tr><td>Neon_GetExposureDelay</td></tr><tr><td>Neon_SetDebounceTimeExt</td></tr><tr><td>Neon_GetDebounceTimeExt</td></tr><tr><td>Neon_SetStrobeOutInvertedPolarity</td></tr><tr><td>Neon_GetStrobeOutInvertedPolarity</td></tr><tr><td rowspan="2">LED</td><td>Neon_SetLEDMode</td></tr><tr><td>Neon_GetLEDMode</td></tr></table>

# 2.2 Function Library

# 2.2.1 Device Control Function

# Neon\_GetDeviceInfo

Retrieves device information.

Syntax
```txt
C/C++
int Neon_GetDeviceInfo (char* sVersion, int iSize)
```
Parameter(s)
sVersion:

An allocated buffer must be assigned to read the device version. The device information format is:

[Device1 Name]:[Version]
[Device2 Name]:[Version]
```txt
...
```

Each device description is separated by a break line character ‘\n’

iSize:

The number of “sVersion” bytes. The suggested size is 256.

Return Code

Returns true if successful, otherwise COMMON\_ERROR.

# 2.2.2 DIO Functions

# Neon\_GetDINums

Retrieves the number of DIs.

# Syntax

int Neon\_GetDINums (unsigned int\* iCounts)

# Parameter(s)

iCounts:

Returns the number of DIs.

# Return Code

Returns true if successful, otherwise returns COMMON\_ERROR.

# Neon\_GetDONums

Retrieves the number of DOs.

# Syntax

C/C++

int Neon\_GetDONums (unsigned int\* iCounts)

# Parameter(s)

iCounts:

Returns the number of DOs.

# Return Code

Returns true if successful, otherwise COMMON\_ERROR.

# Neon\_SetDOState

Turns DO on or off.

# Syntax

```txt
C/C++
```

```txt
int Neon_SetDOState (unsigned int iIndex, int iState)
```

# Parameter(s)

iIndex:

Sets the Index of the DO; zero-based.

iState:

Sets the state of the DO: 1 is on, 0 is off.

```txt
e.g. Neon_SetDOState (1,1) -> Sets DO channel 1 to on
```

# Return Code

Returns true if successful, otherwise COMMON\_ERROR.

# Neon\_GetDIState

Gets the DI’s state.

# Syntax

```txt
C/C++
```

```c
int Neon_GetDIState (unsigned int iIndex, int* iState)
```

# Parameter(s)

iIndex:

Sets the Index of the DI; zero-based.

iState:

Gets the state of the DI: 1 is on, 0 is off.

# Return Code

Returns true if successful, otherwise COMMON\_ERROR.

# Neon\_SetDIO0Config

Sets the DIO0 config type. DIO\_CONFIGTYPE\_DIGITAL means the DI0 and DO0 are the same as the general DI and DO. DIO\_CONFIGTYPE\_SNAPSHOT means the DI0 and DO0 are for triggering the camera and strobe out.

# Syntax

```txt
C/C++
int Neon_SetDIO0Config (int iCfg_type)
```

# Parameter(s)

iCfg\_type:

The config type value can be 0 or 1. Use the following enumeration to define the value.

```txt
enum DIO_CONFIGTYPE
{
    DIO_CONFIGTYPE_SNAPSHOT=0,
    DIO_CONFIGTYPE_DIGITAL,
    DIO_CONFIGTYPE_MAXIMUM
};
```

# Return Code

Returns true if successful, otherwise COMMON\_ERROR.

# Neon\_GetDIO0Config

Gets the DIO0 config type. DIO\_CONFIGTYPE\_DIGITAL means the DI0 and DO0 are the same as the general DI and DO. DIO\_CONFIGTYPE\_SNAPSHOT means the DI0 and DO0 are for triggering the camera and strobe out.

# Syntax

```txt
C/C++
int Neon_GetDIO0Config (int* iCfg_type)
```

# Parameter(s)

iCfg\_type:

The config type value can be 0 or 1. Use the following enumeration to define the value.

```txt
enum DIO_CONFIGTYPE
{
    DIO_CONFIGTYPE_SNAPSHOT=0,
    DIO_CONFIGTYPE_DIGITAL,
    DIO_CONFIGTYPE_MAXIMUM
};
```

# Return Code

Returns true if successful, otherwise COMMON\_ERROR.

Neon\_SetDITriggerPolarity
Sets the DI trigger polarity. (Default is 0)
```c
Syntax
C/C++
int Neon_SetDITriggerPolarity (unsigned int iIndex, int iPositiveTriggerPolarity)
Parameter(s)
ilIndex:
Sets the DI Index; zero-based.
iPositiveTriggerPolarity:
The trigger polarity. Refer to DI_TRIGGERPOLARITY.
enum DI_TRIGGERPOLARITY
{
    DI_TRIGGERPOLARITY_FALLING=0,
    DI_TRIGGERPOLARITY_RISING,
    DI_TRIGGERPOLARITY_BOTH,
    DI_TRIGGERPOLARITY_MAXIMUM
};
```
Return Code
Returns true if successful, otherwise COMMON\_ERROR.

# Neon\_GetDITriggerPolarity

Gets the DI trigger polarity. (Default is 0)

# Syntax

```txt
C/C++
```

```txt
int Neon_GetDITriggerPolarity (unsigned int iIndex, int* iPositiveTriggerPolarity)
```

# Parameter(s)

```txt
ilIndex:
```

Gets the DI Index; zero-based.

iPositiveTriggerPolarity:

The trigger polarity. Refer to DI\_TRIGGERPOLARITY.

```txt
enum DI_TRIGGERPOLARITY
{
    DI_TRIGGERPOLARITY_FALLING=0,
    DI_TRIGGERPOLARITY_RISING,
    DI_TRIGGERPOLARITY_BOTH,
    DI_TRIGGERPOLARITY_MAXIMUM
};
```

# Return Code

Returns true if successful, otherwise COMMON\_ERROR.

# Neon\_SetDITriggerCallback

Sets the DI trigger callback function. When the DI is triggered, the callback function will be executed.

# Syntax

C/C++

```cmake
int Neon_SetDITriggerCallback
(NEON_DITRIGGER_CALLBACK callback)
```

# Parameter(s)

callback:

The NEON\_DITRIGGER\_CALLBACK function pointer.

```c
typedef void (*NEON_DITRIGGER_CALLBACK)
(unsigned int index, int YamcrtState);
```

index:

The trigger index of the DI. DI0 will be triggered only when the config type of DIO0 is DIGITAL.

currentState:

The current state of the DI.

# Return Code

Returns true if successful, otherwise COMMON\_ERROR.

# Neon\_SetStrobeOutEnable

Enables/disables the strobe out trigger when DIO0 is set as DIO\_CONFIGTYPE\_SNAPSHOT.

# Syntax

```txt
C/C++
```

```txt
int Neon_SetStrobeOutEnable(int iEnable)
```

# Parameter(s)

iEnable:

```txt
1 = enable, 0 = disable.
```

# Return Code

Returns true if successful, otherwise COMMON\_ERROR.

# Neon\_GetStrobeOutEnable

Gets the enabled state of the strobe out trigger when DIO0 is set as DIO\_CONFIGTYPE\_SNAPSHOT.

# Syntax

```txt
C/C++
```

```txt
int Neon_GetStrobeOutEnable(int* iEnable)
```

# Parameter(s)

iEnable:

Returns the enabled state.

# Return Code

Returns true if successful, otherwise COMMON\_ERROR.

# Neon\_SetStrobeOutDelay

Sets the delay time of the strobe out in microseconds when DIO0 is set as DIO\_CONFIGTYPE\_SNAPSHOT.

# Syntax

C/C++

int Neon\_SetStrobeOutDelay (unsigned int iMicrosecond)

# Parameter(s)

iMicrosecond:

The number of microseconds for the strobe out delay.

(0 - 4294967295, map to 1 - 4294967296 μs)

# Return Code

Returns true if successful, otherwise COMMON\_ERROR.

# Neon\_GetStrobeOutDelay

Gets the delay time of the strobe out in microseconds when DIO0 is set as DIO\_CONFIGTYPE\_SNAPSHOT.

# Syntax

C/C++

int Neon\_GetStrobeOutDelay (unsigned int\* iMicrosecond)

# Parameter(s)

iMicrosecond:

Returns the number of microseconds of the strobe out delay.

# Return Code

Returns true if successful, otherwise COMMON\_ERROR.

# Neon\_SetStrobeOutPulseWidth

Sets the pulse width of the strobe out in microseconds when DIO0 is set as DIO\_CONFIGTYPE\_SNAPSHOT.

# Syntax

```txt
C/C++
```

int Neon\_SetStrobeOutPulseWidth (unsigned int iMicrosecond)

# Parameter(s)

iMicrosecond:

The number of microseconds for the strobe out pulse width.

(0 - 4294967295, map to 1 - 4294967296 μs)

# Return Code

Returns true if successful, otherwise COMMON\_ERROR.

# Neon\_GetStrobeOutPulseWidth

Gets the pulse width of the strobe out in microseconds when DIO0 is set as DIO\_CONFIGTYPE\_SNAPSHOT.

# Syntax

```txt
C/C++
```

int Neon\_GetStrobeOutPulseWidth (unsigned int\* iMicrosecond)

# Parameter(s)

iMicrosecond:

Returns the number of microseconds of the strobe out pulse width.

# Return Code

Returns true if successful, otherwise COMMON\_ERROR.

# Neon\_SetExposureDelay

Sets the delay time of the exposure in microseconds when DIO0 is set as DIO\_CONFIGTYPE\_SNAPSHOT.

# Syntax

C/C++

int Neon\_SetExposureDelay (unsigned int iMicrosecond)

# Parameter(s)

iMicrosecond:

The number of microseconds for the exposure delay.

(0 - 4294967295 μs)

# Return Code

Returns true if successful, otherwise COMMON\_ERROR.

# Neon\_GetExposureDelay

Gets the delay time of the exposure in microseconds when DIO0 is set as DIO\_CONFIGTYPE\_SNAPSHOT.

# Syntax

C/C++

int Neon\_GetExposureDelay (unsigned int\* iMicrosecond)

# Parameter(s)

iMicrosecond:

Returns the number of microseconds of the exposure delay.

# Return Code

Returns true if successful, otherwise COMMON\_ERROR.

# Neon\_SetDebounceTimeExt

Sets the debounce time in milliseconds for input 0 and 1 (DI0/DI1).

# Syntax

```txt
C/C++
```

int Neon\_SetDebounceTimeExt(unsigned int index, unsigned iNtimes)

# Parameter(s)

Index

The number of the input index. 0 is input 0 (DI0), 1 is input 1 (DI1).

iNtimes

(0 - 600, 0 is bypass, others: 1 – 600 ms)

The initial value is 0. This value will revert to the initial value after reboot.

# Return Value

Returns true if successful, otherwise COMMON\_ERROR.

# Neon\_GetDebounceTimeExt

Get the debounce time in milliseconds for input 0 and 1 (DI0 / DI1).

# Syntax

```txt
C/C++
```

int Neon\_GetDebounceTimeExt(unsigned int\* index, unsigned int\* iNtimes)

# Parameter(s)

Index

The number of the input index: 0 is input 0 DI0), 1 is input 1 (DI1)

# iNtimes

Returns the number of debounce time in milliseconds. The initial value is 0 and shall be reverted to the initial value after reboot.

(0 - 600, 0 is bypass; others 1 - 600)

# Return Code

Returns true if successful, otherwise COMMON\_ERROR.

# Neon\_SetStrobeOutInvertedPolarity

Sets the inverted polarity of Strobe Out. If set to 1, the output polarity will be inverted. (Default is 0)

# Syntax

C/C++

int Neon\_SetStrobeOutInvertedPolarity(int iInvertedPolarity)

# Parameter(s)

iInvertedPolarity:

Invert the polarity of strobe out. (0 is normal open and 1 is normal close)

# Return Code

Returns true if successful, otherwise COMMON\_ERROR.

# Neon\_GetStrobeOutInvertedPolarity

Gets the inverted polarity of Strobe Out. (Default is 0)

# Syntax

C/C++

int Neon\_GetStrobeOutInvertedPolarity(int\* iInvertedPolarity)

# Parameter(s)

iInvertedPolarity:

Invert the polarity of strobe out. (0 is normal open and 1 is normal close)

# Return Code

Returns true if successful, otherwise COMMON\_ERROR.

# 2.2.3 User-defined LED Control

# Neon\_SetLEDMode

Control LED Mode.

# Syntax

C/C++

int Neon\_SetLEDMode (unsigned int iMode)

# Parameter(s)

iMode

LED has seven modes. See below.

LED Mode ID

<table><tr><td>Mode</td><td>ID</td><td>Red LED Status</td><td>Green LED Status</td></tr><tr><td>1</td><td>LED_MODE_1</td><td>Off</td><td>Off</td></tr><tr><td>2</td><td>LED_MODE_2</td><td>On</td><td>Off</td></tr><tr><td>3</td><td>LED_MODE_3</td><td>Off</td><td>On</td></tr><tr><td>4</td><td>LED_MODE_4</td><td>On</td><td>On</td></tr><tr><td>5</td><td>LED_MODE_5</td><td>Blinking</td><td>Off</td></tr><tr><td>6</td><td>LED_MODE_6</td><td>Off</td><td>Blinking</td></tr><tr><td>7</td><td>LED_MODE_7</td><td>Blinking</td><td>Blinking</td></tr></table>

enum LED\_MODE

LED\_MODE\_1=1

LED\_MODE\_2

LED\_MODE\_3

LED\_MODE\_4

LED\_MODE\_5

LED\_MODE\_6

LED\_MODE\_7

# Return Code

Returns true if successful, otherwise COMMON\_ERROR.

# Neon\_GetLEDMode

Get LED LED Mode (defined by ADLINK).

# Syntax

C/C++

int Neon\_GetLEDMode (unsigned int iMode)

# Parameter(s)

iMode

Return LED mode. The initial value is 1.The value will revert to the initial value after reboot. See below.

LED Mode ID

<table><tr><td>Mode</td><td>ID</td><td>Red LED Status</td><td>Green LED Status</td></tr><tr><td>1</td><td>LED_MODE_1</td><td>Off</td><td>Off</td></tr><tr><td>2</td><td>LED_MODE_2</td><td>On</td><td>Off</td></tr><tr><td>3</td><td>LED_MODE_3</td><td>Off</td><td>On</td></tr><tr><td>4</td><td>LED_MODE_4</td><td>On</td><td>On</td></tr><tr><td>5</td><td>LED_MODE_5</td><td>Blinking</td><td>Off</td></tr><tr><td>6</td><td>LED_MODE_6</td><td>Off</td><td>Blinking</td></tr><tr><td>7</td><td>LED_MODE_7</td><td>Blinking</td><td>Blinking</td></tr></table>

enum LED\_MODE

LED\_MODE\_1=1

LED\_MODE\_2

LED\_MODE\_3

LED\_MODE\_4

LED\_MODE\_5

LED\_MODE\_6

LED\_MODE\_7

# Return Code

Returns true if successful, otherwise COMMON\_ERROR.

# Important Safety Instructions

For user safety, please read and follow all instructions, Warnings, Cautions, and Notes marked in this manual and on the associated device before handling/operating the device, to avoid injury or damage.

S'il vous plaît prêter attention stricte à tous les avertissements et mises en garde figurant sur l'appareil , pour éviter des blessures ou des dommages.

 Read these safety instructions carefully
 Keep the User’s Manual for future reference
 Read the Specifications section of this manual for detailed information on the recommended operating environment
 The device can be operated at an ambient temperature of 55ºC (with DC supply) and 50ºC (with adapter supply);
When installing/mounting or uninstalling/removing device; or when removal of a chassis cover is required for user servicing:

 Turn off power and unplug any power cords/cables
 Reinstall all chassis covers before restoring power

 To avoid electrical shock and/or damage to device:

 Keep device away from water or liquid sources
 Keep device away from high heat or humidity
 Keep device properly ventilated (do not block or cover ventilation openings)
 Always use recommended voltage and power source settings
 Always install and operate device near an easily accessible electrical outlet
 Secure the power cord (do not place any object on/over the power cord)
 Only install/attach and operate device on stable surfaces and/or recommended mountings

 If the device will not be used for long periods of time, turn off and unplug from its power source

 Never attempt to repair the device, which should only be serviced by qualified technical personnel using suitable tools

 A Lithium-type battery may be provided for uninterrupted backup or emergency power.

![This image features a standard safety warning sign. It displays a yellow equilateral triangle with a thick black border. Inside the triangle is a large black exclamation point. Below the triangle is the word 'CAUTION' printed in black capital letters. A thin vertical black line runs down the center of the image, intersecting both the exclamation point and the text.](.neon-2000-ono-flr-50m-51050-2000-10-final/abb4abf50a3549647b160039a3ab9fe316d1e857ce242767c16c3bc53b472d27.jpg)

Risk of explosion if battery is replaced with one of an incorrect type; please dispose of used batteries appropriately.

Risque d’explosion si la pile est remplacée par une autre de type incorrect. Veuillez jeter les piles usagées de façon appropriée.

 The device must be serviced by authorized technicians when:

 The power cord or plug is damaged
 Liquid has entered the device interior
 The device has been exposed to high humidity and/or moisture
 The device is not functioning or does not function according to the User’s Manual
 The device has been dropped and/or damaged and/or shows obvious signs of breakage

Disconnect the power supply cord before loosening the thumbscrews and always fasten the thumbscrews with a screwdriver before starting the system up

 It is recommended that the device be installed only in a server room or computer room where access is:

 Restricted to qualified service personnel or users familiar with restrictions applied to the location, reasons therefor, and any precautions required

 Only afforded by the use of a tool or lock and key, or other means of security, and controlled by the authority responsible for the location

? If PoE (Power over Ethernet) is enabled for the device, the system can ONLY be deployed indoors. Unless otherwise noted, the PoE system is NOT designed to withstand the rigors of outdoor use.

![Yellow triangular warning sign with black smoke symbol indicating hot weather](.neon-2000-ono-flr-50m-51050-2000-10-final/b2edc26bb6062af8aa008e824d83ebdea13b3ca3e1d4484502f804f21d377413.jpg)

# BURN HAZARD

Touching this surface could result in bodily injury. To reduce risk, allow the surface to cool before touching.

# RISQUE DE BRÛLURES

Ne touchez pas cette surface, cela pourrait entraîner des blessures.

Pour éviter tout danger, laissez la surface refroidir avant de la toucher.

This page intentionally left blank.

# Getting Service

Ask an Expert: https://www.adlinktech.com/en/Askanexpert

# ADLINK Technology, Inc.

No.66 Huaya 1st Road, Guishan District

Taoyuan City 333, Taiwan

Tel: +886-3-216-5088

Fax: +886-3-328-5706

Email: service@adlinktech.com

# Ampro ADLINK Technology, Inc.

5215 Hellyer Avenue, #110

San Jose, CA 95138, USA

Tel: +1-408-360-0200

Toll Free: +1-800-966-5200 (USA only)

Fax: +1-408-360-0222

Email: info@adlinktech.com

# ADLINK Technology (China) Co., Ltd.

300 Fang Chun Rd., Zhangjiang Hi-Tech Park

Pudong New Area, Shanghai, 201203 China

Tel: +86-21-5132-8988

Fax: +86-21-5132-3588

Email: market@adlinktech.com

# ADLINK Technology GmbH

Hans-Thoma-Strasse 11

D-68163 Mannheim, Germany

Tel: +49-621-43214-0

Fax: +49-621 43214-30

Email: emea@adlinktech.com

Please visit the Contact page at www.adlinktech.com for information on how to contact the ADLINK regional office nearest you.
[🔗 Link to the original document](.neon-2000-ono-flr-50m-51050-2000-10-final/neon-2000-ono-flr-50m-51050-2000-10-final.pdf)
