Asiatelco Technologies EC-P11 Wireless Energy Controller User Manual EC P11 ver2
Asiatelco Technologies Co. Wireless Energy Controller EC P11 ver2
EC-P11 user manual-ver2
Wireless Energy Controller V1.8 model number:EC-P11 INDEX DESCRIPTION --------------------------------------------------------------------------------------------- BENEFIT ---------------------------------------------------------------------------------------------- FEATURES ---------------------------------------------------------------------------------------------- HARDWARE CONFIGURATION ---------------------------------------------------------------------- ELECTRICAL SPECIFICATION ---------------------------------------------------------------------- SIGNAL DEFINE DIMENSION QUICK USER GUIDE SOFTWARE USER GUIDE ----------------------------------------------------------------------------------------- ----------------------------------------------------------------------------------------------- ----------------------------------------------------------------------------------------------------------------------------------------------------------------- 1 / 13 www.asiatelco.com 10 IMPORTANT ANNOUNCEMENT ** High voltage in the controller, operators must be with professional knowledge. ** The wire named “E‐gnd” must be connected with the earth ground all the time. FCC Warning Information This device complies with part 15 of the FCC Rules. Operation is subject to the following two conditions: (1) This device may not cause harmful interference, and (2) this device must accept any interference received, including interference that may cause undesired operation. NOTE: ***WIFI Channel 12 & Channel 13 is not available in final product. The hardware is disabled inside. ***This equipment has been tested and found to comply with the limits for a Class B digital device, pursuant to part 15 of the FCC Rules. These limits are designed to provide reasonable protection against harmful interference in a residential installation. This equipment generates, uses and can radiate radio frequency energy and, if not installed and used in accordance with the instructions, may cause harmful interference to radio communications. However, there is no guarantee that interference will not occur in a particular installation. If this equipment does cause harmful interference to radio or television reception, which can be determined by turning the equipment off and on, the user is encouraged to try to correct the interference by one or more of the following measures: —Reorient or relocate the receiving antenna. —Increase the separation between the equipment and receiver. —Connect the equipment into an outlet on a circuit different from that to which the receiver is connected. —Consult the dealer or an experienced radio/TV technician for help. ***Be sure to leave the human body more than 20cm when using this product. ***The country code is not supported by this product. 2 / 13 www.asiatelco.com 1 DESCRIPTION The Wireless Energy Controller (model number:EC-P11)works as a controller with LED-fixture, and achieve remote control through WIFI wireless. The controller has 2* 0-10V signal for dimming usage, and current sensor is also integrated. 3 / 13 www.asiatelco.com 2 BENEFIT ---- Control and Schedule ON/OFF/DIM for individual fixture or groups of fixtures ---- Remote control and self programmable control mode ---- Customer defined continuous dimming ---- Adjust ON/OFF times and night trimming schedules ---- Monitor the work status & the Energy consumption of every fixture in every minute ---- Track burn hours to verify LED fixture life ---- Detect LED fixture malfunctions remotely ---- Works with any manufactures’ outdoor LED lighting fixture ---- Reduce Energy Costs ---- Reduce Carbon Emission ---- Reduce Manpower Costs ---- Reduce Maintenance Costs FEATURES ---- Each device can works in Node/Hub/Mix-mode ---- Wide AC input flexibility, 110V/AC, 277 V/AC, 480V/AC ---- AC switch inside( Low loss in AC switch, typical 16 mΩ) ---- Max output power 1000W ---- 2* 0-10V Dimming signal for LED-fixture ---- AC Current Sensor integration ---- 1*10M/100M Ethernet port ---- WIFI 802.11b/g/n ---- Ublox GPS ---- 1*Button for customer ---- 1*USB device port (reserved ) ---- 4*LED for work status indicated ---- 1* Interface for General Interrupt input (reserved) ---- 1* Interface for ADC signal input (reserved) ---- 12V/0.5A DC power output (reserved) ---- Easy to install & configure 4 / 13 www.asiatelco.com 4 HARDWARE CONFIGURATION HARDWARE STANDARD CONFIGURATION LIST Remark WIFI & WIFI antenna port GPS & GPS antenna port 1 * 0-10V Dimming signal output 1 * AC switch inside OPTIONAL LIST 2nd * 0-10V Dimming signal output 2nd * AC switch Interface for Motion sensor input (reserved , not available now ) Interface for Light sensor input (reserved , not available now ) 1*USB device port (reserved , not available now ) ELECTRICAL SPECIFICATION AC/AC PART Absolute Maximum Ratings Items Unit Value Max input value V / AC 500 Max output current Max output power 1000 Operating Temperature Range ℃ -40℃ to 85℃ Storage Temperature Range ℃ -65℃ to 145℃ Electrical Characteristics 5 / 13 www.asiatelco.com Value Items Unit Nominal input value V / AC Input value range V / AC AC Input Frequency range Hz 50 / 60 Switch Output value V / AC same value as input 277 100V/AC to 500V/AC ±10% RMS (load current<150mA) Accuracy of AC current sensor ±5% RMS (load current>150mA) GPS SPECIFICATION Items SPEC Receiver type 50 channel GPS L1 C/A Cold start-----29 s TTFF Warm start-----28 s Hot start-----2 s tracking: -160 dBm Sensitivity acquisition: -147 dBm Horizontal position accuracy * < 10 meters * Test environment: Open sky, 24 hours static, Qty of satellite>6, all of satellite signal strength>-130dBm 6 / 13 www.asiatelco.com 6 SIGNAL DEFINE 7 / 13 www.asiatelco.com 7 DIMENSION 8 / 13 www.asiatelco.com 8 QUICK USER GUIDE Case—drive 1xFixture Case—drive 2xFixture 9 / 13 www.asiatelco.com 9 SOFTWARE USER GUIDE Software Architecture Important Function Using system() SYNOPSIS #includeint system(const char *command); ioctl() SYNOPSIS #include int ioctl(int d, int request, ...); UART Interface Baud rate setting #include system("gpio U 115200 "); // Set Baud rate 115200 Read int fd ; unsigned char buf[1024]; fd = open(“/dev/ttyS0”, O_RDWR); read (fd, buf,1024); close(fd); Write int fd ; unsigned char buf[1024]; fd = open(“/dev/ttyS0”, O_RDWR |O_NONBLOCK | O_SYNC |O_NOCTTY); 10 / 13 www.asiatelco.com write (fd, buf,1024); close(fd); ADC Interface Spi read Spi write ADC read code DAC Interface Source code #include Command: system("softspicmd 13 chn value"); Explain: chn: 0~2 0 select DAC channel A2 1 select DAC channel A1 2 select DAC channel A1&A2 value: 0~4095 0~10V Command: system("softspicmd 15"); Explain : Executes a software clear (all CODE and DAC registers cleared to their default values) Command: system("softspicmd 16"); Explain : Executes a software reset (all CODE, DAC, and control registers returned to their default values) Command: system("softspicmd 21 value "); Explain : 11 / 13 www.asiatelco.com This command will simultaneously writes data to all CODE registers while updating all DAC registers. It means channel A and channel B will simultaneously update to set value. value: 0~4095 0~3.3V USB Interface Read Source Code: int fd ; unsigned char buf[1024]; fd = open(“/dev/ ttyUSB0”, O_RDWR); read (fd, buf,1024); close(fd); Write Source Code: int fd ; unsigned char buf[1024]; fd = open(“/dev/ttyUSB0”, O_RDWR); write (fd, buf,1024); close(fd); GPIO Interface Switcher Swith S1 GPIO number is “GPIO9” Swith S2 GPIO number is “GPIO13” Using methods refer to GPIO write. • gpio w [num]: Set gpio high level. GPIO is output mode. [num] 0 to 46 • gpio c [num]: Set gpio low level. GPIO is output mode. [num] 0 to 46 GPS On/Off GPIO number is “GPIO60” High Level: Open GPS Power Current sensor On/Off To achieve in the future Light sensor On/Off To achieve in the future LED fixture On/Off Channel 1: GPIO number is “GPIO9” High Level: Open GPS Power Channel 2: GPIO number is “GPIO13” High Level: Open GPS Power Indicator LED Read LED: GPIO number is “GPIO41” Yellow LED: GPIO number is “GPIO42” Green1 LED: GPIO number is “GPIO43” Green2 LED: GPIO number is “GPIO44” NV Interface NV Write Interface nvram_set(RT2860_NVRAM, "UserStingID", "UserStingContent"); Instructions: RT2860_NVRAM: fixed value. "UserStingID": name of user sting. "UserStingContent": content of user sting. NV Read Interface char * UserStingContent = nvram_get(RT2860_NVRAM, " UserStingID "); Instructions: RT2860_NVRAM: fixed value. "UserStingID": name of user sting. "UserStingContent": content of user sting. 12 / 13 www.asiatelco.com GPS Interface //i2ccmd i fd int open_fd(void) char nm[16]; int fd; snprintf(nm, 16, "/dev/%s", I2C_DEV_NAME); if ((fd = open(nm, O_RDONLY)) < 0) { perror(nm); exit(fd); return fd; int ValGetNmeaData (unsigned char * data) int fd = -1; fd = open_fd(); if (fd < 0) return -1; if (ioctl(fd, RT2880_I2C_READ_GPS_DATA, data) < 0) perror("ioctl"); close(fd); return -1; close(fd); return 0; Data: input array[] for get data. The max size is 2048. Example: $GPRMC,,V,,,,,,,,,,N*53 $GPVTG,,,,,,,,,N*30 $GPGGA,,,,,,0,00,99.99,,,,,,*48 $GPGSA,A,1,,,,,,,,,,,,,99.99,99.99,99.99*30 $GPGSV,1,1,00*79 $GPGLL,,,,,,V,N*64 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ The end, thanks 13 / 13 www.asiatelco.com ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ 2014/03
Source Exif Data:
File Type : PDF File Type Extension : pdf MIME Type : application/pdf PDF Version : 1.5 Linearized : Yes Author : zhtang Create Date : 2014:03:04 23:18:55+08:00 Modify Date : 2014:03:04 23:18:55+08:00 XMP Toolkit : Adobe XMP Core 4.2.1-c043 52.372728, 2009/01/18-15:08:04 Creator Tool : PScript5.dll Version 5.2.2 Format : application/pdf Title : Microsoft Word - Atel Wireless Energy Control V1.7 Update 2014-3-4 Creator : zhtang Producer : Acrobat Distiller 9.5.5 (Windows) Document ID : uuid:6a4114b3-6b1d-46c7-b20b-66aa80e1caf0 Instance ID : uuid:7c4b1a35-acde-47fa-b5f0-b34864456728 Page Count : 13EXIF Metadata provided by EXIF.tools