Arduino Internet Connectivity: Maintenance Manual Julian Ryan Draft No. 7 April 24, 2015

Size: px
Start display at page:

Download "Arduino Internet Connectivity: Maintenance Manual Julian Ryan Draft No. 7 April 24, 2015"

Transcription

1 Arduino Internet Connectivity: Maintenance Manual Julian Ryan Draft No. 7 April 24, 2015 CEN 4935 Senior Software Engineering Project Instructor: Dr. Janusz Zalewski Software Engineering Program Florida Gulf Coast University Ft. Myers, FL

2 1. Introduction 1.1 General Overview This maintenance report is following the original project, Using Arduino for Room Monitoring via Web [1]. The focus of the main project was to create a device using a Passive Infrared sensor (PIR, also known as a pyroelectric sensor, Figure 1.1) and an Arduino (Figure 1.2) to detect the presence of humans within a physical space. The original project hosts a web server which displays information based on PIR output and handles an Internet connection via Ethernet through the use of an Arduino Ethernet Shield. This allows a client to check on, via the Internet, the status of the PIR sensor to see if there is anyone within the vicinity of the device. Figure 1.1: HC-SR501 Human Sensor Module Pyroelectric Infrared 2

3 Figure 1.2: Arduino with Ethernet Shield The maintenance that is to be done on this original project is to make sure the Internet connectivity is functioning properly. Briefly, proper functionality is as follows: Ability to connect remotely to the hosted web server and proper display of PIR readings. As can be seen in Figure 1.3, the web server hosting Arduino is connected to the Internet. There is also a PIR Sensor which detects motion connected to the Arduino. It is planned for the website to receive a visual and functional upgrade. However, due to memory limitations of the Arduino board, total character count should be monitored. 3

4 Figure 1.3: Physical Diagram of the Arduino System 1.2 Requirements Specification Figure 1.4: Context Diagram of the Arduino System The Context Diagram shown in figure 1.4 shows how the server interacts with the environment: Sensor Data: A high reading from the PIR Sensor indicates no motion, whereas a low reading indicates that it is detecting motion. Web Commands: Web commands issued by the client, via the website to the server, allow for the PIR Sensor data to have Sense Motion turned on or Sense Motion turned off. These commands are, respectively, Sense Motion On and Sense Motion Off. Server Response: The Server Response is a static webpage that is created by the Server Software. This output page produces information based on Sensor Data readings and the Web Commands. The information will also be sent to the external web page. 4

5 With the above description of the system functionality, specific software requirements can be described as follows: 1.1 The Server Software shall enable updates from Sensor Data after receiving the Sense Motion On Web Command. 1.2 The Server Software shall disable Sensor Data after receiving the Sense Motion Off Web Command. 1.3 The Server Software shall update its status to say Motion Sensor Off upon having received the Sense Motion Off Web Command. 1.4 The Server Software shall update its status to say Motion Detected! upon receiving a low reading from Sensor Data. 1.5 The Server Software shall update its status to say No Movement upon receiving a high reading from Sensor Data. Expanded maintenance requirements are as follows: 1.6 The Server Software shall log the date and time of the 20 most recent Motion Detected states. 1.7 The Server Software shall update its status to display a table of the recent Motion Detected state date and time. 1.8 The Server Software shall update its status to display the most recent Motion Detected state in center of the web page. 5

6 1.3 Design Description All of the software is developed for and located on the Arduino board. The software has its overall design shown by the diagram in Figure 1.5. Figure 1.5: Server Software Architecture Figure 1.4 contains three processes: PIR State Process, Server Process and the Graphical User Interface Process. The PIR State Process is that which picks up movement readings from the PIR sensor, these readings then cause an update in the Server Process. The Server Process creates and hosts an HTML server which can be viewed remotely via any web browser. The IP for this server is:

7 Figure 1.6: Graphical User Interface: Web Page Upon entering the servers IP address into a web browser, the Graphical User Interface (Figure 1.6) demonstrates how web clients may send commands to the Arduino Server Process. The Sense Motion ON and Sense Motion OFF buttons are the Web Commands shown in Figure 1.4 and 1.5. With the expansion of design, new requirements were formed. These new requirements involve a motion detection logging feature for the website. This allows for a client to check when a room has been entered without requiring active monitoring of the web page. The information is available in the form of a table of data. An example table can be seen in Figure

8 # Date Time : : : :00 Figure 1.7: State Logging Table Another addition to the design allows for the information in the #1 position of the log to be represented in the center of the web page. This allows a client to immediately recognize the most recent detection of motion. An example of what this could look like can be seen in Figure 1.8. Figure 1.8: Last Detected Example 8

9 1.4 Implementation & Testing This section describes the coding. When the PIR sensor detects movement, it sends a LOW signal to Arduino. The Server Software interprets it and the result can be used to trigger an event. In Figure 1.9, code for interpreting the digital signal from the PIR sensor is demonstrated. void setup() { Serial.begin(9600); //setting the baud rate pinmode(2, INPUT); //reading slot 2 as an input //the program loops infinitely void loop() { // read the input pin: PIRstate = digitalread(2); if (PIRstate == HIGH) { // PIR sensor detected movement Serial.println("Detected"); else { // No movement is detected Serial.println("No movement thus far..."); delay(1); // delay in between reads for stability Figure 1.9: PIR Sensor Loop The client s web browser is needed to view a web page, which represents data from the PIR sensor. This is accomplished through the use of HTML tags encoded in the messages to the client. In the web page that the Arduino hosts there originally is a standard web title, a couple headers, two buttons, and a footer. A table, as seen in Figure 1.7, is to be implemented as well. 9

10 The two buttons allow for the client to turn the motion sensing off or on. Figure 1.10 demonstrates how the buttons control the sensing of the PIR. The code in Figure 1.10 loops infinitely, constantly updating whether the on-off switch is on or off. int onoffswitch = 0;... if (onoffswitch = HIGH) { // code for motion detection // see Figure // button functions client.println("<form method=get name=form>"); client.println("<button name=b value=1 type=submit>sense Motion On</button>"); client.println("<button name=b value=2 type=submit>sense Motion Off</button>"); client.println("</form><br />");... if (!strcmp(command, "1")) { onoffswitch = 1; else if (!strcmp(command, "2")) { onoffswitch = 0; Figure 1.10: Code for On-Off Buttons It should be noted that the web page is a static web page, instead of a dynamic or active web page. This has implications in the overall implementation. In order to update the client on any movement in the room, the Arduino has a need to constantly refresh the page. In the current revision, the website has a refresh rate of 0.5 seconds. With the addition of the logging table (Figure 1.7), there is a need to set system time so that logged times are accurate. To do this, a connection with the time.nist.gov servers are required upon initialization of the software. In this projects particular case, the NTP server 10

11 chosen from time.nist.gov is located at the following IP address: An example of how the Arduino connects to this service can be seen in the following Figure Udp.begin(localPort); sendntppacket(timeserver); // send an NTP packet to a time server // wait to see if a reply is available delay(1000); if ( Udp.parsePacket() ) { // We've received a packet, read the data from it Udp.read(packetBuffer, NTP_PACKET_SIZE); // read the packet into //the buffer //the timestamp starts at byte 40 of the received packet and is //four bytes, // or two words, long. First, esxtract the two words: unsigned long highword = word(packetbuffer[40], packetbuffer[41]); unsigned long lowword = word(packetbuffer[42], packetbuffer[43]); // combine the four bytes (two words) into a long integer // this is NTP time (seconds since Jan ): unsigned long secssince1900 = highword << 16 lowword; Serial.print("Seconds since Jan = " ); Serial.println(secsSince1900); // now convert NTP time into everyday time: Serial.print("Unix time = "); // Unix time starts on Jan In seconds, that's : const unsigned long seventyyears = UL; // subtract seventy years: unsigned long epoch = secssince seventyyears; // print Unix time: Serial.println(epoch); settime(epoch);//set Arduino system time to current time in UTC Figure 1.11: Setting System Time on Arduino To describe the process in Figure 1.11, the Arduino opens a local listening port on the Ethernet and sends a packet request to the NTP server. This request is then returned with a number represented in Unix time and then sets system time based on Unix time. If there are issues with connecting to NTP servers, this is due to closed ports. See the troubleshooting section for more information on specific ports which need to be opened. 11

12 Testing the software relies on checking the response when a person comes within a two meter radius of the PIR sensor. When the radius is entered, what is to be observed is whether or not software will respond. This can be viewed in two different ways. One method is referred to as a local operation. The local operation is viewed through an LED that lights up in response to a HIGH signal from the PIR sensor. The second way to test that the Server Software is working is to view the web page. The web page is located at the following IP address: Upon loading the webpage (Figure 1.5), it will refresh every 0.5 seconds. If the PIR sensor detects movement, the Server Process will change the HTML for the text in the center of the screen to say (Figure 1.12) Motion Detected! Figure 1.12: Motion Detected Example 12

13 With the full implementation of the Server Software seen in Figure 1.13, a new test case is needed, as it implements the motion logging table (Figure 1.7). Upon detecting movement, the currently logged times are pushed down a position in the table, putting the newly detected date into row #1. Testing of these features requires the tester to be testing both locally, due to the two meter limitation of the PIR sensor, as well as remotely via the website to see the table update. A successful test can be seen in Figure Figure 1.13: Successful Test of Server Software with Logging. 13

14 2. Maintenance Instructions 2.1 Developers Instructions The hardware needs to be setup as follows: Step 1: Plug Ethernet cable into Arduino Ethernet Shield Port and into Internet capable Ethernet port. Step 2: Plug power cable into Arduino Device. For developing on the Arduino please see reference [2]. 2.2 Operating Instructions The following steps show how to operate the device remotely: Step 1: Open a web browser. Step 2: Enter IP address into address bar. Step 3: Click the Sense Motion On button. 14

15 3. Troubleshooting The following are possible issues that can be encountered and, if possible, a resolution. 1. Arduino does not immediately update movement for a short moment after losing movement. It is suggested that putting a resistor between the HR-501 sensor and the PIN2 on the Arduino should help to reduce lag from inputs. 2. The PIR sensor has a limited range of around two meters. This can be an issue for larger rooms. Even if there are people in the same room as the PIR sensor, it would not be able to pick them up if they are outside of the mentioned two meter range. Some solutions would be to have multiple PIR sensors or to use PIR sensors with a larger radius. Another method would be to keep a sensor near the entrance of a door which could log when a person entered the room and at what time rather than posting real time data (log table can be seen in Figure 1.7). 3. If the web page is down, but the Arduino is online two things may have happened. The first issue would be that the Arduino, on initialization of the web server, did not establish a connection with the time.nist.gov server to synchronize system time with real time. This is caused by the following unopened ports: TCP/UDP 123, TCP/UDP 13 and TCP/UDP 37. The second issue would be that TCP/UDP port 80 is unopened and is disabling the web server from being accessed. 15

16 4. Conclusion The Arduino PIR sensor software is suitable for small rooms that require real time motion detection. This is provided that the device, as mentioned in the part two of the troubleshooting section, be setup as suggested. The design meets all requirements as described in the Software Requirements Specification section. However, just because requirements are met, does not mean that there is no room for improvement. Further maintenance reports could incorporate more powerful hardware which would allow for expansion of project features. A suggestion would be to use a Raspberry Pi to host instead of an Arduino. This would give the developer a more powerful device capable of hosting dynamic web pages as well as having larger logs. 16

17 5. References [1] Serrano, Jessel. Using Arduino for Room Monitoring via Web. Ft. Myers, FL: Florida Gulf Coast University Computer Science & Software Engineering, [2] "Arduino How To." Arduino. Arduino, n.d. Web. 18 February < 17

18 6. Appendix The following (Pages 18-23) is the code for the full implementation of the updated Server Software. It is loaded directly onto the Arduino via instructions available in section 2.1. // this program uses an Arduino and an Arduino Ethernet Shield to host // a web page that displays if there is movement in a room. It detects // movement by reading the digital signal given off by a PIR sensor on // PIN2. #include <Time.h> #include <SPI.h> #include <Ethernet.h> #include <EthernetUdp.h> //Time Setup unsigned int localport = 8888; // local port to listen for UDP packets char timeserver[] = " "; // time.nist.gov NTP server const int timezone = -5; const int NTP_PACKET_SIZE= 48; // NTP time stamp is in the first 48 bytes of the message byte packetbuffer[ NTP_PACKET_SIZE]; //buffer to hold incoming and outgoing packets String timestring; const int loggersize = 15; class dateholder{ public: int s = 0; int m = 0; int h = 0; int d = 0; int mn = 0; int y = 0; dateholder(){ dateholder(int s, int m, int h, int d, int mn, int y){ this->s = s; this->m = m; this->h = h; this->d = d; this->mn = mn; this->y = y; ; 18

19 // ethernet configuration byte mac[] = { 0x90, 0xA2, 0xDA, 0x0E, 0xD0, 0xE6 ; IPAddress ip(69,88,163,52); // IP address of Arduino EthernetServer server(80); // port 80 is default for HTTP EthernetUDP Udp; // initial int LED = 7; // led is connected to digital pin 7 int PIR = 2; // PIR sensor is connected to digital pin 2 int PIRstate = 0; // variable for PIR sensor status char c = 0; // received data char command[2] = "\0"; // command char onoffswitch = 1; // switch for motion sensor // send an NTP request to the time server at the given address unsigned long sendntppacket(char* address) { // set all bytes in the buffer to 0 memset(packetbuffer, 0, NTP_PACKET_SIZE); // Initialize values needed to form NTP request packetbuffer[0] = 0b ; // LI, Version, Mode packetbuffer[1] = 0; // Stratum, or type of clock packetbuffer[2] = 6; // Polling Interval packetbuffer[3] = 0xEC; // Peer Clock Precision // 8 bytes of zero for Root Delay & Root Dispersion packetbuffer[12] = 49; packetbuffer[13] = 0x4E; packetbuffer[14] = 49; packetbuffer[15] = 52; // all NTP fields have been given values, now // you can send a packet requesting a timestamp: Udp.beginPacket(address, 123); //NTP requests are to port 123 Udp.write(packetBuffer, NTP_PACKET_SIZE); Udp.endPacket(); void setup(){ Serial.begin(9600); Ethernet.begin(mac, ip); Serial.println(Ethernet.localIP()); Udp.begin(localPort); sendntppacket(timeserver); // send an NTP packet to a time server // wait to see if a reply is available delay(1000); if ( Udp.parsePacket() ) { 19

20 // We've received a packet, read the data from it Udp.read(packetBuffer, NTP_PACKET_SIZE); // read the packet into the buffer //the timestamp starts at byte 40 of the received packet and is four bytes, // or two words, long. First, esxtract the two words: unsigned long highword = word(packetbuffer[40], packetbuffer[41]); unsigned long lowword = word(packetbuffer[42], packetbuffer[43]); // combine the four bytes (two words) into a long integer // this is NTP time (seconds since Jan ): unsigned long secssince1900 = highword << 16 lowword; Serial.print("Seconds since Jan = " ); Serial.println(secsSince1900); // now convert NTP time into everyday time: Serial.print("Unix time = "); // Unix time starts on Jan In seconds, that's : const unsigned long seventyyears = UL; // subtract seventy years: unsigned long epoch = secssince seventyyears; // print Unix time: Serial.println(epoch); settime(epoch);//set Arduino system time to current time in UTC // print the hour, minute and second: Serial.print("The UTC time is "); // UTC is the time at Greenwich Meridian (GMT) Serial.print((epoch % 86400L) / 3600); // print the hour (86400 equals secs per day) Serial.print(':'); if ( ((epoch % 3600) / 60) < 10 ) { // In the first 10 minutes of each hour, we'll want a leading '0' Serial.print('0'); Serial.print((epoch % 3600) / 60); // print the minute (3600 equals secs per minute) Serial.print(':'); if ( (epoch % 60) < 10 ) { // In the first 10 seconds of each minute, we'll want a leading '0' Serial.print('0'); Serial.println(epoch % 60); // print the second Udp.stop(); server.begin(); pinmode(led, OUTPUT); pinmode(pir, INPUT); bool once = true; 20

21 time_t t; dateholder detections[loggersize]; void loop(){ if(once){ for(int n = 0; n < loggersize; n++){ detections[n] = dateholder(); once = false; EthernetClient client = server.available(); // detect if current is the first line boolean current_line_is_first = true; if (client) { // an http request ends with a blank line boolean current_line_is_blank = true; while (client.connected()) { if (client.available()) { char c = client.read(); // if we've gotten to the end of the line (received a newline // character) and the line is blank, the http request has ended, // so we can send a reply if (c == '\n' && current_line_is_blank) { // send a standard http response header client.println("http/ OK"); client.println("content-type: text/html"); client.println(); Serial.println(); // auto reload webpage every 2 second client.println("<meta HTTP-EQUIV=REFRESH CONTENT=4 URL=>"); webpage title client.println("<center><p><h1>room Monitoring Web Server </h1></p><center><hr><br />"); //latest detection client.print("<p>last Detected "); client.print(detections[0].mn); client.print("/");client.print(detections[0].d); client.print("/");client.print(detections[0].y); "); client.print(detections[0].h);client.print(":"); client.print(detections[0].m); client.print(":"); client.print(detections[0].s); client.print(" UTC</p>"); // motion sensor is on if (onoffswitch == HIGH) { // read digital pin 13 for the state of PIR sensor PIRstate = digitalread(2); if (PIRstate == HIGH) { // PIR sensor detected movement client.println("<p><h2><font color=red>motion Detected!</font></h2></p>"); else{ // No movement is detected 21

22 client.println("<p><h2><font color=green>no Movement</font></h2></p>"); digitalwrite(led, LOW); else{ client.println("<p><h2><font color=black>motion Sensor Off</font></h2></p>"); // button functions client.println("<form method=get name=form>"); client.println("<button name=b value=1 type=submit style=height:80px;width:150px>sense Motion ON</button>"); client.println("<button name=b value=2 type=submit style=height:80px;width:150px>sense Motion OFF</button>"); client.println("</form><br />"); // webpage footer client.println("<table border=\"1\">"); client.println("<tr>"); client.println("<th>previous Detection #</th>"); client.println("<th>date</th>"); client.println("<th>time</th>"); client.println("</tr>"); for(int i = 0; i < loggersize; i++){ client.println("<tr>"); client.print("<td>");client.print("<center>"); client.print(i+1); client.print("</center>");client.print("</td>"); client.println(); client.print("<td>"); client.print(detections[i].mn); client.print("/");client.print(detections[i].d); client.print("/");client.print(detections[i].y); client.print("</td>"); client.println(); client.print("<td>"); client.print(detections[i].h);client.print(":"); client.print(detections[i].m); client.print(":"); client.print(detections[i].s); client.println("</td>"); client.println("</tr>"); client.println("</table>"); client.println("<hr><center>fgcu Software Engineering in Networking Project - November Updated March 2015<br />"); client.println("<p>this page will automatically refresh every 2 seconds.</p></center>"); break; 22

23 if (c == '\n') { // we're starting a new line current_line_is_first = false; current_line_is_blank = true; else if (c!= '\r') { // received a character that's a blank line current_line_is_blank = false; // get the first http request if (current_line_is_first && c == '=') { for (int i = 0; i < 1; i++) { c = client.read(); command[i] = c; // Motion Sensor control if (!strcmp(command, "1")) { onoffswitch = 1; else if (!strcmp(command, "2")) { onoffswitch = 0; // give the web browser time to receive the data delay(1); client.stop(); else{ PIRstate = digitalread(2); if (PIRstate == HIGH && onoffbutton == 1) { digitalwrite(led, HIGH); for (int i = loggersize - 1; i > 0; i--){ if( t+2 <= now() ){ detections[i] = detections[i - 1]; Serial.println(t); t = now(); detections[0] = dateholder(second(), minute(), hour(), day(), month(), year()); else{ // No movement is detected digitalwrite(led, LOW); delay(3); 23

ANDROID BASED FARM AUTOMATION USING GR-SAKURA

ANDROID BASED FARM AUTOMATION USING GR-SAKURA ANDROID BASED FARM AUTOMATION USING GR-SAKURA INTRODUCTION AND MOTIVATION With the world s population growing day by day, and land resources remaining unchanged, there is a growing need in optimization

More information

1 /*ora sincrinizzata con NTP. Inserendo codice OTP si attiva un servo che ruota di 95 grad. Per chiudere il servo premere 2 "*" mentre per azzerrare

1 /*ora sincrinizzata con NTP. Inserendo codice OTP si attiva un servo che ruota di 95 grad. Per chiudere il servo premere 2 * mentre per azzerrare 1 /*ora sincrinizzata con NTP. Inserendo codice OTP si attiva un servo che ruota di 95 grad. Per chiudere il servo premere 2 "*" mentre per azzerrare il codice premenre "#" 3 */ 4 #include 5 #include

More information

Ethernet. Customer Provided Equipment Configuring the Ethernet port.

Ethernet. Customer Provided Equipment Configuring the Ethernet port. Installing the RDSP-3000A-NIST Master Clock. Ethernet Connect the RJ-45 connector to a TCP/IP network. Equipment The following equipment comes with the clock system: RDSP-3000A-NIST Master Clock Module.

More information

Starting Guide - Poseidon 3265 First steps for remote monitoring with Poseidon & GSM

Starting Guide - Poseidon 3265 First steps for remote monitoring with Poseidon & GSM Poseidon 3265 starting guide Poseidon 3265 Starting Guide - Poseidon 3265 First steps for remote monitoring with Poseidon & GSM 1) Connecting Poseidon 3265 1.1) Check DIP switches settings. For installation

More information

Arduino Lesson 5. The Serial Monitor

Arduino Lesson 5. The Serial Monitor Arduino Lesson 5. The Serial Monitor Created by Simon Monk Last updated on 2013-06-22 08:00:27 PM EDT Guide Contents Guide Contents Overview The Serial Monitor Arduino Code Other Things to Do 2 3 4 7 10

More information

GPS NTP Time Server for Intranet Networks DIN RAIL Version

GPS NTP Time Server for Intranet Networks DIN RAIL Version GPS NTP Time Server for Intranet Networks DIN RAIL Version Description: GPS NTP time server is very simple low cost solution for Ethernet / Intranet time synchronization. Each computer or devices with

More information

Ethernet Port Quick Start Manual

Ethernet Port Quick Start Manual Ethernet Port Quick Start Manual THIS MANUAL CONTAINS TECHNICAL INFORMATION FOR THE ETHERNET PORT OF EDI SIGNAL MONITORS with Ethernet Version 1.5 firmware. DETAILS OF THE ECCOM OPERATION ARE DESCRIBED

More information

User s Manual Network Management Card

User s Manual Network Management Card User s Manual Network Management Card RMCARD202 Intelligent Network Management Card allows a UPS system to be managed, monitored, and configured Version 1.0 E-K01-SNMP005-0 TABLE OF CONTENTS Introduction

More information

Arduino Wifi shield And reciever. 5V adapter. Connecting wifi module on shield: Make sure the wifi unit is connected the following way on the shield:

Arduino Wifi shield And reciever. 5V adapter. Connecting wifi module on shield: Make sure the wifi unit is connected the following way on the shield: the following parts are needed to test the unit: Arduino UNO R3 Arduino Wifi shield And reciever 5V adapter Connecting wifi module on shield: Make sure the wifi unit is connected the following way on the

More information

www.css-timemachines.com Precision Clocks When you absolutely can't afford a time shift Installation and Operation Manual

www.css-timemachines.com Precision Clocks When you absolutely can't afford a time shift Installation and Operation Manual www.css-timemachines.com Precision Clocks When you absolutely can't afford a time shift Installation and Operation Manual Table of Contents 1. Introduction...1 2. Initial Setup...2 2.1 PoE...2 2.2 Network...2

More information

Wireless Communication With Arduino

Wireless Communication With Arduino Wireless Communication With Arduino Using the RN-XV to communicate over WiFi Seth Hardy shardy@asymptotic.ca Last Updated: Nov 2012 Overview Radio: Roving Networks RN-XV XBee replacement : fits in the

More information

www.dragino.com Yun Shield Quick Start Guide VERSION: 1.0 Version Description Date 1.0 Release 2014-Jul-08 Yun Shield Quick Start Guide 1 / 14

www.dragino.com Yun Shield Quick Start Guide VERSION: 1.0 Version Description Date 1.0 Release 2014-Jul-08 Yun Shield Quick Start Guide 1 / 14 Yun Shield Quick Start Guide VERSION: 1.0 Version Description Date 1.0 Release 2014-Jul-08 Yun Shield Quick Start Guide 1 / 14 Index: 1 Introduction... 3 1.1 About this quick start guide... 3 1.2 What

More information

Modbus and ION Technology

Modbus and ION Technology 70072-0104-14 TECHNICAL 06/2009 Modbus and ION Technology Modicon Modbus is a communications protocol widely used in process control industries such as manufacturing. PowerLogic ION meters are compatible

More information

User manual BS1000 LAN base station

User manual BS1000 LAN base station 1/18 Contents 1.Introduction 2.Package of the LAN Base Station 3.Software installation 4.Installation of the Receiver 5.Sensor operation 6.Software operation Introduction The BS1000 is a receiver station

More information

Olson Electronics Remote Power Monitoring Meter

Olson Electronics Remote Power Monitoring Meter Olson Electronics Remote Power Monitoring Meter Operation Guide Key Features Amps: 00.00 to 32.00A True RMS (rated short period to 40A) Volts: 200.0 to 250.0V True RMS Watts: 0000 to 9999W KWh: 000000.0

More information

Time Synchronization & Timekeeping

Time Synchronization & Timekeeping 70072-0111-14 TECHNICAL NOTE 06/2009 Time Synchronization & Timekeeping Time synchronization lets you synchronize the internal clocks of all networked PowerLogic ION meters and devices. Once synchronized,

More information

Release Notes: J-Web Application Package Release 15.1A1 for Juniper Networks EX Series Ethernet Switches

Release Notes: J-Web Application Package Release 15.1A1 for Juniper Networks EX Series Ethernet Switches Release Notes: J-Web Application Package Release 15.1A1 for Juniper Networks EX Series Ethernet Switches Release 15.1A1 4 June 2015 Revision 1 Contents Release Notes: J-Web Application Package Release

More information

3.1 RS-232/422/485 Pinout:PORT1-4(RJ-45) RJ-45 RS-232 RS-422 RS-485 PIN1 TXD PIN2 RXD PIN3 GND PIN4 PIN5 T+ 485+ PIN6 T- 485- PIN7 R+ PIN8 R-

3.1 RS-232/422/485 Pinout:PORT1-4(RJ-45) RJ-45 RS-232 RS-422 RS-485 PIN1 TXD PIN2 RXD PIN3 GND PIN4 PIN5 T+ 485+ PIN6 T- 485- PIN7 R+ PIN8 R- MODEL ATC-2004 TCP/IP TO RS-232/422/485 CONVERTER User s Manual 1.1 Introduction The ATC-2004 is a 4 Port RS232/RS485 to TCP/IP converter integrated with a robust system and network management features

More information

User s Manual TCP/IP TO RS-232/422/485 CONVERTER. 1.1 Introduction. 1.2 Main features. Dynamic DNS

User s Manual TCP/IP TO RS-232/422/485 CONVERTER. 1.1 Introduction. 1.2 Main features. Dynamic DNS MODEL ATC-2000 TCP/IP TO RS-232/422/485 CONVERTER User s Manual 1.1 Introduction The ATC-2000 is a RS232/RS485 to TCP/IP converter integrated with a robust system and network management features designed

More information

IP Filter/Firewall Setup

IP Filter/Firewall Setup IP Filter/Firewall Setup Introduction The IP Filter/Firewall function helps protect your local network against attack from outside. It also provides a method of restricting users on the local network from

More information

Device Log Export ENGLISH

Device Log Export ENGLISH Figure 14: Topic Selection Page Device Log Export This option allows you to export device logs in three ways: by E-Mail, FTP, or HTTP. Each method is described in the following sections. NOTE: If the E-Mail,

More information

KM-Net ServiceGateway Quick Start Guide. Version #1.0.1118 November 2004

KM-Net ServiceGateway Quick Start Guide. Version #1.0.1118 November 2004 KM-Net ServiceGateway Quick Start Guide Version #1.0.1118 November 2004 Revision History: No. Description Date Version 1.0.1118 Changed the brand name from Kyocera Mita to Kyocera. In the Step 6 section,

More information

IDDERO TOUCH PANELS. Video door phone configuration. www.iddero.com 120130-02

IDDERO TOUCH PANELS. Video door phone configuration. www.iddero.com 120130-02 IDDERO TOUCH PANELS Video door phone configuration www.iddero.com 120130-02 TABLE OF CONTENTS 1 INTRODUCTION... 3 2 INSTALLATION... 3 3 INITIAL CONFIGURATION... 4 4 2N HELIOS IP VIDEO DOOR PHONES... 5

More information

VisorALARM-Manager Application Quick Guide. (Ver. 1.3) Dm 380-I. V:3.0

VisorALARM-Manager Application Quick Guide. (Ver. 1.3) Dm 380-I. V:3.0 VisorALARM-Manager Application Quick Guide. (Ver. 1.3) Dm 380-I. V:3.0 1. Installation Requirements 1.1. PC Pentium III processor or higher. Minimum RAM memory: 128 Mbytes Operating system: Windows XP

More information

Different Ways of Connecting to. 3DLevelScanner II. A.P.M Automation Solutions LTD. www.apm-solutions.com Version 3.0

Different Ways of Connecting to. 3DLevelScanner II. A.P.M Automation Solutions LTD. www.apm-solutions.com Version 3.0 3DLevelScanner II Different Ways of Connecting to 3DLevelScanner II A.P.M Automation Solutions LTD. www.apm-solutions.com Version 3.0 2 Different Ways of Connecting to 3DLevelScanner II Version 3.0 Table

More information

Introduction to Wireshark Network Analysis

Introduction to Wireshark Network Analysis Introduction to Wireshark Network Analysis Page 2 of 24 Table of Contents INTRODUCTION 4 Overview 4 CAPTURING LIVE DATA 5 Preface 6 Capture Interfaces 6 Capture Options 6 Performing the Capture 8 ANALYZING

More information

Arduino Lesson 1. Blink

Arduino Lesson 1. Blink Arduino Lesson 1. Blink Created by Simon Monk Last updated on 2015-01-15 09:45:38 PM EST Guide Contents Guide Contents Overview Parts Part Qty The 'L' LED Loading the 'Blink' Example Saving a Copy of 'Blink'

More information

Eric Carestia. Dr. Janusz Zalewski. Florida Gulf Coast University. Ft. Myers, Florida. April 2011

Eric Carestia. Dr. Janusz Zalewski. Florida Gulf Coast University. Ft. Myers, Florida. April 2011 Wireless Network Security System Programmed in LabVIEW Eric Carestia Dr. Janusz Zalewski CEN 4931 Spring 2011 Independent Study Florida Gulf Coast University Ft. Myers, Florida April 2011 Eric Carestia

More information

Manual. IP Sensor and Watchdog IPSW2210. I P S W 2 2 1 0 M a n u a l P a g e 1. Relay Output. Power input. 12VDC adapter LED Indicators. 2 Dry.

Manual. IP Sensor and Watchdog IPSW2210. I P S W 2 2 1 0 M a n u a l P a g e 1. Relay Output. Power input. 12VDC adapter LED Indicators. 2 Dry. IP Sensor and Watchdog IPSW2210 Manual Relay Output Power input 12VDC adapter LED Indicators 1 wire 2 Dry Output Green : Power Yellow: Link temperature & humidity contact inputs LED indicator sensor input

More information

User s Manual UPS SERIES. Network Interface Card UPS-IPCARD. I-00453 Rev B

User s Manual UPS SERIES. Network Interface Card UPS-IPCARD. I-00453 Rev B User s Manual UPS SERIES Network Interface Card UPS-IPCARD I-00453 Rev B TABLE OF CONTENTS INTRODUCTION............................................................. 3-4 INSTALLATION GUIDE.......................................................

More information

On the M-BUS Interface you can add up to 60 M-BUS Devices (60 unit loads).

On the M-BUS Interface you can add up to 60 M-BUS Devices (60 unit loads). EMU M-BUS Logger Index Introduction... 3 Installation... 3 M-BUS Interface... 3 Power supply... 3 LAN... 3 Beginning of operation... 4 Configuration... 7 General Settings... 7 M-BUS Configuration... 9

More information

NetworkCam. MZ-3333-01 User's Manual

NetworkCam. MZ-3333-01 User's Manual NetworkCam MZ-3333-01 User's Manual Package Contents Network Camera Power adapter - 1 - Installation Hardware Installation Please verify that your product package contains all the accessories listed in

More information

WA Manager Alarming System Management Software Windows 98, NT, XP, 2000 User Guide

WA Manager Alarming System Management Software Windows 98, NT, XP, 2000 User Guide WA Manager Alarming System Management Software Windows 98, NT, XP, 2000 User Guide Version 2.1, 4/2010 Disclaimer While every effort has been made to ensure that the information in this guide is accurate

More information

User Manual Network Interface

User Manual Network Interface User Manual Network Interface Rev. 1.00 SRP-350plusll SRP-352plusll http://www.bixolon.com Table of Contents 1. Manual Information...3 2. Specifications...3 2-1 Hardware version...3 2-2 Configuration Tool...3

More information

ACCESS 9340 and 9360 Meter Ethernet Communications Card 9340-60-ETHER

ACCESS 9340 and 9360 Meter Ethernet Communications Card 9340-60-ETHER User s Guide PMCM-ETHCC-0208 2/2008 ACCESS 9340 and 9360 Meter Ethernet Communications Card 9340-60-ETHER TABLE OF CONTENTS INTRODUCTION... 2 Supported Ethernet Protocols... 2 Hardware... 2 Meter Firmware...

More information

This section will focus on basic operation of the interface including pan/tilt, video, audio, etc.

This section will focus on basic operation of the interface including pan/tilt, video, audio, etc. Catalogue Basic Operation... 2 For Internet Explorer... 2 For Other Non-IE Web Browsers... 5 Camera Settings... 6 System... 6 About... 6 PT Setting... 7 Backup and Restore Setup... 8 NTP Setting... 8 System

More information

BS1000 command and backlog protocol

BS1000 command and backlog protocol BS1000 command and backlog protocol V0.3 2013/5/31 1 / 6 BS1000 command and backlog protocol Introduction When the bs1000 is updating a website, measurement data is transferred to the site using a http

More information

TENVIS Technology Co., Ltd. User Manual. For H.264 Cameras. Version 2.0.0

TENVIS Technology Co., Ltd. User Manual. For H.264 Cameras. Version 2.0.0 TENVIS Technology Co., Ltd User Manual For H.264 Cameras Version 2.0.0 Catalogue Basic Operation... 3 Hardware Installation... 3 Search Camera... 3 Get live video... 5 Camera Settings... 8 System... 8

More information

TCP/IP Network Connectivity and ION Meters

TCP/IP Network Connectivity and ION Meters 70072-0170-04 TECHNICAL NOTE 12/2007 TCP/IP Network Connectivity and ION Meters This technical note describes how PowerLogic ION8800, ION8600, ION7550 and ION7650 meters are able to interact with several

More information

IP Power Stone 4000 User Manual

IP Power Stone 4000 User Manual IP Power Stone 4000 User Manual Two Outlet Remote AC Power Controller Multi Link, Inc. 122 Dewey Drive Nicholasville, KY 40356 USA Sales and Tech Support 800.535.4651 FAX 859.885.6619 techsupport@multi

More information

Online Monitoring User Guide

Online Monitoring User Guide High Resolution Temperature Sensing Strip Online Monitoring User Guide 888.637.3282 www.nerdata.com Page 1 of 26 Contents The Aurora Online Monitoring System... 3 1. Creating an Account on the Aurora Online

More information

E-Blocks Easy Internet Bundle

E-Blocks Easy Internet Bundle Page 1 Cover Page Page 2 Flowcode Installing Flowcode Instruction for installing Flowcode can be found inside the installation booklet located inside the Flowcode DVD case. Before starting with the course

More information

Turn on all of your network devices and then check to see if the LEDs on the Access Point display normally as the diagram below describes.

Turn on all of your network devices and then check to see if the LEDs on the Access Point display normally as the diagram below describes. Connect to the Access Point with the Ethernet cable or via wireless. The default SSID of the Access Point is TP-LINK_ XXXXXX. The XXXXXX is the last 6 characters of the Access Point s MAC address. Plug

More information

TUTORIAL FOR INITIALIZING BLUETOOTH COMMUNICATION BETWEEN ANDROID AND ARDUINO

TUTORIAL FOR INITIALIZING BLUETOOTH COMMUNICATION BETWEEN ANDROID AND ARDUINO TUTORIAL FOR INITIALIZING BLUETOOTH COMMUNICATION BETWEEN ANDROID AND ARDUINO some pre requirements by :-Lohit Jain *First of all download arduino software from www.arduino.cc *download software serial

More information

Broadband Phone Gateway BPG510 Technical Users Guide

Broadband Phone Gateway BPG510 Technical Users Guide Broadband Phone Gateway BPG510 Technical Users Guide (Firmware version 0.14.1 and later) Revision 1.0 2006, 8x8 Inc. Table of Contents About your Broadband Phone Gateway (BPG510)... 4 Opening the BPG510's

More information

Savvius Insight Initial Configuration

Savvius Insight Initial Configuration The configuration utility on Savvius Insight lets you configure device, network, and time settings. Additionally, if you are forwarding your data from Savvius Insight to a Splunk server, You can configure

More information

The data between TC Monitor and remote devices is exchanged using HTTP protocol. Monitored devices operate either as server or client mode.

The data between TC Monitor and remote devices is exchanged using HTTP protocol. Monitored devices operate either as server or client mode. 1. Introduction TC Monitor is easy to use Windows application for monitoring and control of some Teracom Ethernet (TCW) and GSM/GPRS (TCG) controllers. The supported devices are TCW122B-CM, TCW181B- CM,

More information

Emerald. Network Collector Version 4.0. Emerald Management Suite IEA Software, Inc.

Emerald. Network Collector Version 4.0. Emerald Management Suite IEA Software, Inc. Emerald Network Collector Version 4.0 Emerald Management Suite IEA Software, Inc. Table Of Contents Purpose... 3 Overview... 3 Modules... 3 Installation... 3 Configuration... 3 Filter Definitions... 4

More information

Ethernet Interface Manual Thermal / Label Printer. Rev. 1.01 Metapace T-1. Metapace T-2 Metapace L-1 Metapace L-2

Ethernet Interface Manual Thermal / Label Printer. Rev. 1.01 Metapace T-1. Metapace T-2 Metapace L-1 Metapace L-2 Ethernet Interface Manual Thermal / Label Printer Rev. 1.01 Metapace T-1 Metapace T-2 Metapace L-1 Metapace L-2 Table of contents 1. Interface setting Guiding...3 2. Manual Information...4 3. Interface

More information

Lab 6 Introduction to Serial and Wireless Communication

Lab 6 Introduction to Serial and Wireless Communication University of Pennsylvania Department of Electrical and Systems Engineering ESE 111 Intro to Elec/Comp/Sys Engineering Lab 6 Introduction to Serial and Wireless Communication Introduction: Up to this point,

More information

VIRTUAL LABORATORY: MULTI-STYLE CODE EDITOR

VIRTUAL LABORATORY: MULTI-STYLE CODE EDITOR VIRTUAL LABORATORY: MULTI-STYLE CODE EDITOR Andrey V.Lyamin, State University of IT, Mechanics and Optics St. Petersburg, Russia Oleg E.Vashenkov, State University of IT, Mechanics and Optics, St.Petersburg,

More information

QNAP SYSTEMS INC. QNAP Digital Signage Player Web Console Manual

QNAP SYSTEMS INC. QNAP Digital Signage Player Web Console Manual QNAP SYSTEMS INC. QNAP Digital Signage Player Web Console Manual Table of Content 1 Introduction... 3 1.1 Purpose... 3 1.2 Support Browser... 3 2 System Administration... 3 2.1 Login Page... 3 2.2 Overview

More information

IDDERO TOUCH PANELS. Video door phone configuration. www.iddero.com 120719-02

IDDERO TOUCH PANELS. Video door phone configuration. www.iddero.com 120719-02 IDDERO TOUCH PANELS Video door phone configuration www.iddero.com 120719-02 TABLE OF CONTENTS 1 INTRODUCTION... 3 2 INSTALLATION... 3 3 INITIAL CONFIGURATION... 4 4 2N HELIOS IP VIDEO DOOR PHONES... 5

More information

IN5100 Series Networking Guide

IN5100 Series Networking Guide IN5100 Series Networking Guide This guide is only intended to explain Network Functions. For safety, operations or any other issues, refer to the projector s User s Guide or Safety Booklet. TABLE OF CONTENTS

More information

USER MANUAL GUIMGR Graphical User Interface Manager for FRM301/FRM401 Media Racks

USER MANUAL GUIMGR Graphical User Interface Manager for FRM301/FRM401 Media Racks USER MANUAL GUIMGR Graphical User Interface Manager for FRM301/FRM401 Media Racks CTC Union Technologies Co., Ltd. Far Eastern Vienna Technology Center (Neihu Technology Park) 8F, No. 60 Zhouzi St. Neihu,

More information

Modbus and ION Technology

Modbus and ION Technology Modbus and ION Technology Modicon Modbus is a communications protocol widely used in process control industries such as manufacturing. ACCESS meters are compatible with Modbus networks as both slaves and

More information

UvA facelab 5 extension for Presentation

UvA facelab 5 extension for Presentation UvA facelab 5 extension for Presentation a Presentation IEyeTracker2 interface Filename : UvA EyeTracker Author : B. Molenkamp 1/7 UvA facelab IEyeTracker2 interface for Presentation Installation of the

More information

This document explains how to use your Web Browser to configure the 100BaseT Print Server models

This document explains how to use your Web Browser to configure the 100BaseT Print Server models Web Browser This document explains how to use your Web Browser to configure the 100BaseT Print Server models Overview 100BaseT Print Server models incorporate a HTTP server. This allows you to connect

More information

mysensors mysensors Wireless Sensors and and Cellular Gateway Quick Start Guide Information to Users Inside the Box

mysensors mysensors Wireless Sensors and and Cellular Gateway Quick Start Guide Information to Users Inside the Box mysensors mysensors Wireless Sensors and and Cellular Gateway Quick Start Guide Information to Users The mysensors wireless products referenced in this Quick Start Guide have been tested to comply with

More information

P160S SIP Phone Quick User Guide

P160S SIP Phone Quick User Guide P160S SIP Phone Quick User Guide Version 2.2 TABLE OF CONTENTS 1.0 INTRODUCTION... 1 2.0 PACKAGE CONTENT... 1 3.0 LIST OF FIGURES... 2 4.0 SUMMARY OF KEY FUNCTIONS... 3 5.0 CONNECTING THE IP PHONE... 4

More information

English version. LW320/LW321 Sweex Wireless 300N Router. Package Contents. Terminology list

English version. LW320/LW321 Sweex Wireless 300N Router. Package Contents. Terminology list LW320/LW321 Sweex Wireless 300N Router Do not expose the Sweex Wireless 300N Router to extreme temperatures. Do not place the device in direct sunlight or in the direct vicinity of heating elements. Do

More information

R&S AFQ100A, R&S AFQ100B I/Q Modulation Generator Supplement

R&S AFQ100A, R&S AFQ100B I/Q Modulation Generator Supplement I/Q Modulation Generator Supplement The following description relates to the Operating Manuals, version 03 of R&S AFQ100A, and version 01 of R&S AFQ100B. It encloses the following topics: LXI features,

More information

UIP1868P User Interface Guide

UIP1868P User Interface Guide UIP1868P User Interface Guide (Firmware version 0.13.4 and later) V1.1 Monday, July 8, 2005 Table of Contents Opening the UIP1868P's Configuration Utility... 3 Connecting to Your Broadband Modem... 4 Setting

More information

GreenEye Monitor Setup Guide V1.0 Brultech Research Inc.

GreenEye Monitor Setup Guide V1.0 Brultech Research Inc. GreenEye Monitor Setup Guide V1.0 Brultech Research Inc. Latest GEM Software and Manuals: - http://www.brultech.com/gem/files/gem_files.zip - NOTE: To run GEM Setup, the JRE (Java Run-Time Engine) must

More information

Movie Cube. User s Guide to Wireless Function

Movie Cube. User s Guide to Wireless Function Movie Cube User s Guide to Wireless Function Table of Contents 1. WLAN USB Adapter Connection...3 2. Wireless Setup...4 2.1 Infrastructure (AP)...5 2.2 Peer to Peer (Ad Hoc)...7 2.3 Settings for PC...8

More information

Honeywell Internet Connection Module

Honeywell Internet Connection Module Honeywell Internet Connection Module Setup Guide Version 1.0 - Page 1 of 18 - ICM Setup Guide Technical Support Setup - Guide Table of Contents Introduction... 3 Network Setup and Configuration... 4 Setting

More information

R&S AFQ100A, R&S AFQ100B I/Q Modulation Generator Supplement

R&S AFQ100A, R&S AFQ100B I/Q Modulation Generator Supplement I/Q Modulation Generator Supplement The following description relates to the Operating Manuals, version 03 of R&S AFQ100A, and version 01 of R&S AFQ100B. It encloses the following topics: LXI features,

More information

APPLICATION NOTE. CC5MPX Digital Camera and IPn3Gb Cellular Modem 10/14. App. Note Code: 3T-Z

APPLICATION NOTE. CC5MPX Digital Camera and IPn3Gb Cellular Modem 10/14. App. Note Code: 3T-Z APPLICATION NOTE App. Note Code: 3T-Z CC5MPX Digital Camera and IPn3Gb Cellular Modem 10/14 C o p y r i g h t 2 0 1 3-2 0 1 4 C a m p b e l l S c i e n t i f i c ( C a n a d a ) C o r p. Table of Contents

More information

TDP43ME NetPS. Network Printer Server. Control Center. for Ethernet Module

TDP43ME NetPS. Network Printer Server. Control Center. for Ethernet Module Panduit Corp. 2010 TDP43ME NetPS PA26306A01 Rev. 01 11-2010 Network Printer Server Control Center for Ethernet Module NOTE: In the interest of higher quality and value, Panduit products are continually

More information

Sending Data from a computer to a microcontroller using a UART (Universal Asynchronous Receiver/Transmitter)

Sending Data from a computer to a microcontroller using a UART (Universal Asynchronous Receiver/Transmitter) Sending Data from a computer to a microcontroller using a UART (Universal Asynchronous Receiver/Transmitter) Eric Bell 04/05/2013 Abstract: Serial communication is the main method used for communication

More information

Profinet to EDV111 Series LED Signs Siemens Function Block Software Manual

Profinet to EDV111 Series LED Signs Siemens Function Block Software Manual Electronic Displays, Inc. EDV111 Series LED Signs Siemens TIA Portal 11, Step 7 Pro Function Block Version Control Version Date Author Change Description 1.0 11/21/2014 d.fox Initial release EDV111 Series

More information

LabVIEW Internet Toolkit User Guide

LabVIEW Internet Toolkit User Guide LabVIEW Internet Toolkit User Guide Version 6.0 Contents The LabVIEW Internet Toolkit provides you with the ability to incorporate Internet capabilities into VIs. You can use LabVIEW to work with XML documents,

More information

Application Note: AN00141 xcore-xa - Application Development

Application Note: AN00141 xcore-xa - Application Development Application Note: AN00141 xcore-xa - Application Development This application note shows how to create a simple example which targets the XMOS xcore-xa device and demonstrates how to build and run this

More information

This document is intended to make you familiar with the ServersCheck Monitoring Appliance

This document is intended to make you familiar with the ServersCheck Monitoring Appliance ServersCheck Monitoring Appliance Quick Overview This document is intended to make you familiar with the ServersCheck Monitoring Appliance Although it is possible, we highly recommend not to install other

More information

Lecture 7: Programming for the Arduino

Lecture 7: Programming for the Arduino Lecture 7: Programming for the Arduino - The hardware - The programming environment - Binary world, from Assembler to C - - Programming C for the Arduino: more - Programming style Lect7-Page1 The hardware

More information

DPH-140S SIP Phone Quick User Guide

DPH-140S SIP Phone Quick User Guide DPH-140S SIP Phone Quick User Guide Version 1.0 TABLE OF CONTENTS 1.0 INTRODUCTION... 1 2.0 PACKAGE CONTENT... 1 3.0 LIST OF FIGURES... 2 4.0 SUMMARY OF KEY FUNCTIONS... 3 5.0 CONNECTING THE IP PHONE...

More information

Vertex VoIP Caller ID (Version 1.5)

Vertex VoIP Caller ID (Version 1.5) Vertex VoIP Caller ID (Version 1.5) Introduction The Vertex unit is designed to capture Caller ID and other telephony signaling on VoIP phone calls and send this information to computers. Depending on

More information

Network Management Card. User Manual

Network Management Card. User Manual User Manual 1 Contents Contents 2 Chapter 1 Overview 3 1.1 NMC package contents 4 1.2 NMC CD Resources 4 1.3 Features 4 1.4 NMC Applications 5 Chapter 2 NMC parameters setting via serial COM port 6 2.1

More information

The Answer to the 14 Most Frequently Asked Modbus Questions

The Answer to the 14 Most Frequently Asked Modbus Questions Modbus Frequently Asked Questions WP-34-REV0-0609-1/7 The Answer to the 14 Most Frequently Asked Modbus Questions Exactly what is Modbus? Modbus is an open serial communications protocol widely used in

More information

Application Note: AN00121 Using XMOS TCP/IP Library for UDP-based Networking

Application Note: AN00121 Using XMOS TCP/IP Library for UDP-based Networking Application Note: AN00121 Using XMOS TCP/IP Library for UDP-based Networking This application note demonstrates the use of XMOS TCP/IP stack on an XMOS multicore micro controller to communicate on an ethernet-based

More information

L5354 ControlNet Communications Interface

L5354 ControlNet Communications Interface L5354 ControlNet Communications Interface Technical Manual HA470733 Issue 2 Copyright SSD Drives Inc 2005 All rights strictly reserved. No part of this document may be stored in a retrieval system, or

More information

Streaming Media System Requirements and Troubleshooting Assistance

Streaming Media System Requirements and Troubleshooting Assistance Test Your System Streaming Media System Requirements and Troubleshooting Assistance Test your system to determine if you can receive streaming media. This may help identify why you are having problems,

More information

Lab Configuring Syslog and NTP (Instructor Version)

Lab Configuring Syslog and NTP (Instructor Version) (Instructor Version) Instructor Note: Red font color or Gray highlights indicate text that appears in the instructor copy only. Topology Addressing Table Objectives Device Interface IP Address Subnet Mask

More information

alternative solutions, including: STRONG SECURITY for managing these security concerns. PLATFORM CHOICE LOW TOTAL COST OF OWNERSHIP

alternative solutions, including: STRONG SECURITY for managing these security concerns. PLATFORM CHOICE LOW TOTAL COST OF OWNERSHIP 9.0 Welcome to FirstClass 9.0, the latest and most powerful version of the one of the industry s leading solutions for communication, collaboration, content management, and online networking. This document

More information

C-GEP 100 Monitoring application user manual

C-GEP 100 Monitoring application user manual C-GEP 100 Monitoring application user manual 1 Introduction: C-GEP is a very versatile platform for network monitoring applications. The ever growing need for network bandwith like HD video streaming and

More information

R&S AFQ100A, R&S AFQ100B I/Q Modulation Generator Supplement

R&S AFQ100A, R&S AFQ100B I/Q Modulation Generator Supplement I/Q Modulation Generator Supplement The following description relates to the Operating Manuals, version 03 of R&S AFQ100A, and version 01 of R&S AFQ100B. It encloses the following topics: LXI features,

More information

A REST API for Arduino & the CC3000 WiFi Chip

A REST API for Arduino & the CC3000 WiFi Chip A REST API for Arduino & the CC3000 WiFi Chip Created by Marc-Olivier Schwartz Last updated on 2014-04-22 03:01:12 PM EDT Guide Contents Guide Contents Overview Hardware configuration Installing the library

More information

SETTING MANUAL. Refer to the provided INSTALLATION MANUAL for complete information regarding this system.

SETTING MANUAL. Refer to the provided INSTALLATION MANUAL for complete information regarding this system. FK69 B 08YZ IS SERIES Commercial & Security IP Video Intercom system Network Direct System SETTING MANUAL Thank you for selecting Aiphone for your communication and security needs. Please read this manual

More information

Assign a static IP address 192.168.1.100 for your computer. Please refer to the T3 in Troubleshooting guide if you need assistance.

Assign a static IP address 192.168.1.100 for your computer. Please refer to the T3 in Troubleshooting guide if you need assistance. Note The product model shown in this QIG is TL-WA701ND, as an example. Assign a static IP address 192.168.1.100 for your computer. Please refer to the T3 in Troubleshooting guide if you need assistance.

More information

H0/H2/H4 -ECOM100 DHCP & HTML Configuration. H0/H2/H4--ECOM100 DHCP Disabling DHCP and Assigning a Static IP Address Using HTML Configuration

H0/H2/H4 -ECOM100 DHCP & HTML Configuration. H0/H2/H4--ECOM100 DHCP Disabling DHCP and Assigning a Static IP Address Using HTML Configuration H0/H2/H4 -ECOM100 DHCP & HTML 6 H0/H2/H4--ECOM100 DHCP Disabling DHCP and Assigning a Static IP Address Using HTML 6-2 H0/H2/H4 -ECOM100 DHCP DHCP Issues The H0/H2/H4--ECOM100 is configured at the factory

More information

Intel Retail Client Manager Audience Analytics

Intel Retail Client Manager Audience Analytics Intel Retail Client Manager Audience Analytics By using this document, in addition to any agreements you have with Intel, you accept the terms set forth below. You may not use or facilitate the use of

More information

Follow these steps to prepare the module and evaluation board for testing.

Follow these steps to prepare the module and evaluation board for testing. 2 Getting Started 2.1. Hardware Installation Procedure Follow these steps to prepare the module and evaluation board for testing. STEP1: Plug the EG-SR-7100A module into the sockets on the test board.

More information

SNAP Printer Web Server Users Manual

SNAP Printer Web Server Users Manual User s Manual SNAP Printer Web Server Users Manual AVERY DENNISON 29 April 2013 Version 1.2 Change List Version Description 1.0 Initial Release 1.1 Updated to add the Batch ID and Batch Count to the main

More information

Configuring System Message Logging

Configuring System Message Logging CHAPTER 1 This chapter describes how to configure system message logging on the Cisco 4700 Series Application Control Engine (ACE) appliance. Each ACE contains a number of log files that retain records

More information

Assign a static IP address 192.168.1.100 for your computer. Please refer to the T3 in Troubleshooting guide if you need assistance.

Assign a static IP address 192.168.1.100 for your computer. Please refer to the T3 in Troubleshooting guide if you need assistance. Assign a static IP address 192.168.1.100 for your computer. Please refer to the T3 in Troubleshooting guide if you need assistance. Connect to the Access Point with the Ethernet cable or via wireless.the

More information

CHAPTER 7. E-Mailing with CGI

CHAPTER 7. E-Mailing with CGI CHAPTER 7 E-Mailing with CGI OVERVIEW One of the most important tasks of any CGI program is ultimately to let someone know that something has happened. The most convenient way for users is to have this

More information

IPRS-7 IP/GPRS PC Receiver Software Quick Start V1.2

IPRS-7 IP/GPRS PC Receiver Software Quick Start V1.2 IPRS-7 IP/GPRS PC Receiver Software Quick Start V1.2 Overview Introduction Before You Begin Installation The IPRS-7 Main Page Configuring the IPRS-7 (IPRS-7 splash screen pictured) Introduction The IPRS-7

More information

CCNA Discovery 4.0.3.0 Networking for Homes and Small Businesses Student Packet Tracer Lab Manual

CCNA Discovery 4.0.3.0 Networking for Homes and Small Businesses Student Packet Tracer Lab Manual 4.0.3.0 Networking for Homes and Small Businesses Student Packet Tracer Lab Manual This document is exclusive property of Cisco Systems, Inc. Permission is granted to print and copy this document for non-commercial

More information

Hands-on MESH Network Exercise Workbook

Hands-on MESH Network Exercise Workbook Hands-on MESH Network Exercise Workbook Santa Clara County RACES Date: 18 March 2015 Version: 1.0 scco_wifi_intro_exonly_v150318.docx 1 Table of Contents HANDS ON! Exercise #1: Looking at your Network

More information

MAX T1/E1. Quick Start Guide. VoIP Gateway. Version 1.0

MAX T1/E1. Quick Start Guide. VoIP Gateway. Version 1.0 MAX T1/E1 TM VoIP Gateway Quick Start Guide Version 1.0 Contents INTRODUCTION 1 Hardware Needed Software Needed 1 1 NET2PHONE MAX SET UP Hardware Set Up Software Set Up Set Up Internet Protocol (IP) Address

More information