[WEB version] Notice to customer Thank you very much for your purchase of the PATLITE product. To ensure correct use of the product, read this manual carefully before use, And, keep this manual safely for future reference.
USB Controlled Multi-color Signal Beacon User Manual ■ Contents Notice to customer ..........................1 To installers or Contractors ........................1 Getting started ............................4 Safety signs ............................4 Safety precautions ........................... 5 Model Number Configuration ....................... 8 About model labeling ........................8 Package contents ............................
Page 3
USB Controlled Multi-color Signal Beacon User Manual Development Environment ......................24 API List ............................25 API Details ..........................26 Parameters ..........................33 Error ............................36 Controlling According to Protocol Specifications ................. 37 Overview ............................. 37 USB Communication Settings ....................37 USB Communication Protocol ....................
USB Controlled Multi-color Signal Beacon User Manual 1 Getting started 1.1 Safety signs Be sure to follow the instructions below that are provided to prevent injury to you and others or property damage. ◇ The following signs are used to classify and explain the degrees of possible harm and damage that may occur if the product is used incorrectly by the neglect of given signs and instructions.
USB Controlled Multi-color Signal Beacon User Manual 1.2 Safety precautions Warning ◇ To prevent electric shock, short circuit or damage, follow the instructions below. ◇ Be sure to turn off the USB power feed before you perform cabling, assembly or removal.
Page 6
USB Controlled Multi-color Signal Beacon User Manual ◇ Ensure that the product is securely installed, making sure that the product does not lost balance or fall over from the weight of the USB cable. Also, install so that there are no risks of people tripping over the USB cable. Failure to follow these instructions may result in injury or product damage.
Page 7
For repair parts, be sure to use only those specified in this manual. PATLITE cannot be held responsible for any damages caused from misuse of this product in a way that violates the warnings and instructions noted on this manual. Do not use this product in a way that is not outlined in this manual.
USB Controlled Multi-color Signal Beacon User Manual 2 Model Number Configuration 2.1 About model labeling N E - □ N - Installation S : Direct, magnetic or inch-screw mounting W : Two-hole screw mounting...
USB Controlled Multi-color Signal Beacon User Manual 4 Names and dimensions of parts 4.1 Names and dimensions of parts NE-SN-USB Front view Back view Bottom view Bottom view (Slip-proof sheet removed) Name Material Name Material ① ⑤ Glove Slip-proof sheet silicon ②...
USB Controlled Multi-color Signal Beacon User Manual NE-WN-USB Front view Back view Bottom view Bottom view(Waterproof sheet removed) Name Material Name Material ① ⑤ Glove Waterproof sheet silicon ② ⑥ - O-ring silicon Positioning indicator ③ - ⑦ - Product label Mounting hole(two) USB2.0 ④...
USB Controlled Multi-color Signal Beacon User Manual 5 Operation Overview 5.1 What is a USB Controlled Multi-color Signal Beacon? It is a signal beacon that can be controlled from a host PC via a USB connection. 5.2 Device Configuration Glossary of Key Terms Term Description USB Controlled Multi-color...
USB Controlled Multi-color Signal Beacon User Manual 5.3 Function List Function Overview Function Description Detail A function for connecting and communicating with the - USB communication host PC via USB cable. A function to control multi-color LEDs from a host PC via USB communication.
USB Controlled Multi-color Signal Beacon User Manual Function details ① LED Control Function ◇LED Color Control LED Colors to Control Red / Amber / Green / Blue / Cyan / Purple / White ① -1 LED Control Items Control item Description Turn LEDs off.
Page 15
USB Controlled Multi-color Signal Beacon User Manual ② Alarm Control Function ② -1 Alarm Control Item Control Item Description Stop Turns alarm off. Initial state after startup. Specify one of seven alarm patterns to sound. Select either continuous operation or specified number of times (1-14). Sound Pattern One operation is one cycle.
USB Controlled Multi-color Signal Beacon User Manual 5.4 Control method There are two ways to control this product. Please select according to your equipment configuration and development environment. Description Detail Control using DLL software library. ☞『7.3』 Control using specific protocols. ☞『7.4』...
USB Controlled Multi-color Signal Beacon User Manual 6 Device setup and installation 6.1 Mounting directions Warning ◇ Be sure to turn off the USB power supply before performing any installation or maintenance work. Failure to follow this instruction may result in electric shock or burning of the internal circuit.
USB Controlled Multi-color Signal Beacon User Manual NE-SN-USB(direct mount / magnetic mount) Process Attach the slip-proof sheet to the product. When installing the product, make sure to align the ▲ mark on the product and the non-slip sheet. Attach the product to the mounting surface.
USB Controlled Multi-color Signal Beacon User Manual NE-WN-USB Process Check the positioning marks on the main unit and the glove, and remove the glove from the main unit by rotating it so that it is in the unlocked position. Place waterproof sheet between this product and the...
USB Controlled Multi-color Signal Beacon User Manual 6.2 Mounting Surface Dimensions Process If mounting the NE-WN-USB, prepare the mounting surface according to the below diagram. *If mounting the NE-SN-USB, you do not need to be followed.
USB Controlled Multi-color Signal Beacon User Manual 6.3 Wireing Method Note ◇ Reconnect or disconnect process may be performed on rare occasions depending on the settings of the connected PC. Disabling the "USB Selective Suspend Settings" in the "Power Options" settings on a Windows PC may improve this behavior.
USB Controlled Multi-color Signal Beacon User Manual 7 How to Control the USB Controlled Multi-color Signal Beacon 7.1 Purpose and Precautions Purpose This section describes the software library(DLL) and USB communication protocol for controlling this product. Precautions CAUTION ◇ Only the information necessary for control is described in this manual. This manual does not contain all the information about this product.
USB Controlled Multi-color Signal Beacon User Manual 7.2 Before Design ◇ The following control methods are available for this product, Select and design the appropriate control method according to the customer's usage environment. Control using software library(DLL) Control that conforms with protocol specification Control Method Features ...
USB Controlled Multi-color Signal Beacon User Manual 7.3 Control Using Software Library (DLL) Overview This section describes the method of controlling this product with a software library (DLL). ◇Download the software library (DLL) from our website. ◇Check the content before creating the program. Sample code can also be downloaded from our website.
USB Controlled Multi-color Signal Beacon User Manual API List Function Overview NE_OpenDevice Starts USB communication. NE_CloseDevice Ends USB communication. NE_SetLight Control the multi-color LED with the specified color and pattern. NE_SetBuz Control alarm with the specified pattern, volume, and number of times. Simultaneously control the LED and alarm with the specified color, NE_SetLightBuz pattern, volume, and number of times.
USB Controlled Multi-color Signal Beacon User Manual API Details ① NE_OpenDevice Item Description Name int NE_OpenDevice() Overview Connects to this product via USB communication. Argument None If successful, returns 0. If an error occurs, a value less than 0 is returned. Return Value Refer to “☞...
Page 27
USB Controlled Multi-color Signal Beacon User Manual ③ NE_SetLight Item Description Name int NE_SetLight(LEDColors color, LEDPatterns ledPattern) Specify the LED color and LED pattern and turn on this product. Overview The alarm maintains its current state. color: Specifies the LED color to control. For details, refer to “☞...
Page 28
USB Controlled Multi-color Signal Beacon User Manual ④ NE_SetBuz Item Description Name int NE_SetBuz(BuzzerPatterns buzPattern, int volume, int count) Specify the alarm pattern, volume, and number of times to make this product sound the alarm. Overview The LED unit maintains its current state. buzPattern:...
Page 29
USB Controlled Multi-color Signal Beacon User Manual ⑤ NE_SetLightBuz Item Description int NE_SetLightBuz (LEDColors? color, LEDPatterns? ledPattern, BuzzerPatterns? Name buzPattern, int? volume, int? count) Specify the LED color, LED pattern, alarm pattern, volume, and number of times Overview to controlled the LED and alarm of this product at the same time. color, ledPattern, buzPattern, volume, count:...
Page 30
USB Controlled Multi-color Signal Beacon User Manual ⑥ NE_Reset Item Description Name int NE_Reset() Overview Turns off the LED and stops the alarm. Argument None If successful, returns 0. If an error occurs, a value less than 0 is returned. Return Value Refer to “☞...
Page 31
USB Controlled Multi-color Signal Beacon User Manual ⑦ NE_GetDeviceState Item Description Name byte[] NE_GetDeviceState () Overview Acquires the LED and alarm status of the connected this product. Argument None byte:LED / alarm status bit:Alarm status 0:Stopped 1:Sounding bit 0 :LED status 0:Off 1:On byte:Error status...
Page 32
USB Controlled Multi-color Signal Beacon User Manual ⑧ NE_GetFirmVer Item Description Name byte[] NE_GetFirmVer() Get the firmware version of the connected USB Controlled Multi-color Signal Overview Beacon. Argument None byte:Product model / major version First 4bits: 0:NE-SN-USB; 1:NE-WN-USB Last 4bits: Major version byte:Minor version First 4bits:...
USB Controlled Multi-color Signal Beacon User Manual Parameters (5-1) LED Color Control Use the following parameters to specify the LED color to be controlled. Control Item Input LED Color Control Parameters Value OFF(Off) R(Red) G(Green) Green Y(Amber) Amber B(Blue) Blue P(Purple)...
Page 34
USB Controlled Multi-color Signal Beacon User Manual (5-2) LED Pattern Use the following parameters to specify the LED pattern to be controlled. Control Item Input LED Pattern Parameters Value Continuous LED Pattern 1 Pattern1 LED Pattern 2 Pattern2 LED Pattern 3 Pattern3 LED Pattern 4 Pattern4...
Page 35
USB Controlled Multi-color Signal Beacon User Manual (5-3) Alarm Pattern Use the following parameters to specify the alarm patterns to be controlled. Control Item Input Alarm Pattern Parameters Value Continuous Continuous Sweep Pattern1 Call Sign Pattern2 Low Urgency Pattern3 High Urgency Pattern4 Twinkle Star (Melody)
USB Controlled Multi-color Signal Beacon User Manual Error (6-1) Error List Parameter Description Value The USB Controlled Multi-color Signal Beacon could not NoExist be detected. Check connection. The USB Controlled Multi-color Signal Beacon was DeviceLocked detected, but it was occupied by another program and communication could not be established.
USB Controlled Multi-color Signal Beacon User Manual 7.4 Controlling According to Protocol Specifications Overview This section describes details on USB communication with this product. ◇Check content before creating the program. USB Communication Settings ◇Communication settings for controlling the LEDs and alarms are as follows. Item Description Uses the HID class so that a device is recognized as a standard HID...
USB Controlled Multi-color Signal Beacon User Manual USB Communication Protocol (3-1) Protocol Data Area ◇The control protocol is as follows. 8 bytes in length. byte byte byte byte byte byte byte byte Command ID Alarm Alarm 0x00 Control Volume Control Command Open Version...
Page 39
USB Controlled Multi-color Signal Beacon User Manual ③ Alarm Control (when the command ID is 0x00) byte 7 bit 6 bit 5 bit 4 bit 3 bit 2 bit 1 bit 0 bit Continuous operation / Number of operations Alarm Pattern ...
Page 40
USB Controlled Multi-color Signal Beacon User Manual ④ Alarm Volume byte 7 bit 6 bit 5 bit 4 bit 3 bit 2 bit 1 bit 0 bit Open Volume 0x0:Silent 0x1~0x9:Stepped volume from maximum to silent 0x0:Fixed 0xA:Maximum volume ...
Page 41
USB Controlled Multi-color Signal Beacon User Manual (3-2) Protocol Example ◇Red light on, continuous sound (volume 6). byte byte byte byte byte byte byte byte Command Command Alarm Alarm Open Version Control Volume Control 0x00 0x00 0x01 0x06 0x11 0x00 0x00 0x00 ◇Amber light on (LED pattern 4), intermittent call sign (volume 8) sounds (4 times).
USB Controlled Multi-color Signal Beacon User Manual 8 Replacement and Optional Parts To be used by the customer for repair or replacement. O-ring 60 Slip-proof sheet *1 Waterproof Sheet *2 1 piece 1 piece 1 piece There are no optional parts for this product. *1 For NE-SN-USB only.
USB Controlled Multi-color Signal Beacon User Manual 9 Specifications Product Name USB Controlled Multicolor Signal Beacon Model NE-SN-USB NE-WN-USB Rated Voltage DC5V (USB Bus Power) Operating Voltage Range Rated Voltage±5%(Compliant with USB 2.0 standard) Rated 205mA 170mA Current Environmental Luminous Color : White、 Consumption Condition Alarm : Alarm Pattern [No.1 Continuous], Volume Level [Max]...
Page 44
USB Controlled Multi-color Signal Beacon User Manual EAC (TR CU 020), EAC (TR EAEU 037) Electromagnetic Compatibility Regulations 2016 (BS EN 55032, BS EN 55035) The Restriction of the Use of Certain Hazardous Substances in Electrical and Electronic Equipment Regulations 2012 (BS EN IEC 63000) Due to the characteristics of the LED elements, a variation in difference of the color Remarks tone and brightness of every product may occur.
Page 45
USB Controlled Multi-color Signal Beacon User Manual...
Need help?
Do you have a question about the NE- N-USB Series and is the answer not in the manual?
Questions and answers