ANDROID BASED FARM AUTOMATION USING GR-SAKURA

Size: px
Start display at page:

Download "ANDROID BASED FARM AUTOMATION USING GR-SAKURA"

Transcription

1 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 of agricultural productivity, and this can be achieved by automation of agriculture. Farmers are already using computers on tractors to make agriculture more efficient. So called i-farming' uses GPS to tell tractors where less pesticide is needed, therefore reducing the usage of pesticide. But still there has not been any autonomous process where the farmer need not spend more time in his farm, and lands controlling the action of fertilizers and pesticides, the harvesting of fruits, the irrigation, the management of power or the maintenance of plants. Our system aims at automating the agricultural, by availing the farmers a portable and an easy tool to use that will automate the various processes that the farmer does. OUR GOAL Our goal is to develop a portable system, with one end being a Smart Phone with an Android application, and the other end being a monitoring system using GR-SAKURA interfaced with LabVIEW, which commands a wireless controlled robot that performs the tasks of the famer such as applying pesticides and fertilizer, maintaining the plants, harvesting fruits, analysing the conditions of crops, managing the power being used in the farm, and controlling the irrigation. THE CHALLENGE The challenges of this project are: - To implement a Real Image Processing based system that will send real time field images from a wireless camera to a base station. - To integrate a Robotic Arm to a wireless robot, whose operation will be controlled remotely from an Android application, and which has the capability to identify and track a targeted object, such as a fruit on a tree. - To integrate pesticide and fertilizer spraying mechanisms on the wireless controlled robot. - To control the generation of energy using solar power; the power system needs to switch to this source, whenever the energy from it is sufficient. - To control the irrigation process, by recycling the used waters.

2 THE SOLUTION To the above mentioned problems, we propose a remote controlled robot equipped with a robotic arm and a wireless camera, whose operation will be controlled by an android application through GR-SAKURA interfaced to the base station to make easier the task of the farmer by using the various tools of the robot. This remote controlled robot will include the following modules: - A solar panel that recharges the battery of the Robot, and ensures large power autonomy of the Robot. - An on-board wireless camera that acquire the field image, and transmit them to the base station, processes the acquired images, and gives results such as crop quality, insects found, whether a fruit is ripened or not, etc. - An on board robotic arm used for picking fruits from trees, and some other farm products,and ultimately can be used to pick various plastic and non-alterable dirtiness on the way when developed. - A mechanism for assuring an accurate spraying of fertilizer and pesticides. - Monitoring and management of power sources. It will monitor the solar energy source, and will switch to it whenever its energy is sufficient to power the farm robot. UTILIZATION OF GR-SAKURA IN THE PROJECT The GR-SAKURA provided an excellent platform for building our prototype utilizing all the features on the SAKURA board like its Ethernet, SD memory card slot and the arduino compatible pins. The following is the explanation on how the board features were utilized. Arduino Compatible Pins: All the real time parameters and its values from the field were fed into the GR-SAKURA by the sensors. The various parameters are soil moisture content, temperature, security alarm to monitor if animals intrude into the farm, rainfall, humidity, light intensity, wind direction and speed monitoring. All these are continuously monitored and GR-SAKURA with its Arduino compatible pins aids in this process. Ethernet slot: Using this feature we are able to make the GR-SAKURA act as a server thereby gaining access to it and controlling the farm activities just by typing the public IP address of the router present there. Thus through the web farm can be controlled.the port forwarding has been configured in the router so as to access the SAKURA which is a server. The IP address of the SAKURA is also configured by us in the range of the router.

3 Micro SD card slot: Farmers can use this feature to retrieve stored data in it, may it be temperature, humidity, rainfall, etc. The data are stored for prescribed number of days in the memory card. The sdmmc header file is included in the program to include the SD feature into the project. The base station monitors the internet database for new updates from the android application, based on the updates from the android application; the LabVIEW station controls the remote Robot actions. The station also analyses the images acquired from the wireless camera on the remote Robot. Apart from these, the LabVIEW station is also equipped with a sensor network with the GR-SAKURA that monitors the weather, the temperature and the quality of soil and water; The LabVIEW station transmits the various data that it has acquired from the farm to an internet database, which the farmer can monitor using his android application, and from which he can enable some actions remotely such as the spray of fertilizer, irrigation, fruit picking, etc. Our project also includes DTMF based control system to control the farm activities in places which is void of internet. Thus GSM based technology can be used to activate and deactivate irrigation, fertilizer and other activities. Images of our project:

4

5 APPLICATIONS This system may find extensive application in agriculture and farming; this concept may further be applied in areas such as industry, and urban cleaning and maintenance. It also finds an application in power management, by managing the use of alternative source of energy.

6 CONCLUSION AND FUTURE DEVELOPMENT If implemented, this system may improve the way agriculture is done all over the world by helping the farmer to save money, time and energy, by doing some of the tasks the farmer usually does or for which he needs workers. This system may monitor and report real time situation of the farm in an accurate manner to the famer s mobile, thus helping the farmer to be aware of the condition of the crops and plants, whether they have been infected by any insects, whether the soil condition is good, etc. This system also gives to the farmer a tool to activate the spraying of fertilizer and pesticides, to harvest fruits, to control the irrigation process by recycling used water, to remove unwanted elements and other dirtiness from the ground, and finally to manage the usage of power. In future development, a web site can be included in this system, where farm products order can be placed, and from which order can be processed, packed and made ready for delivery. Note: Project demonstration video link :

7 Appendix I Source code 1 ( For automation system ) /*GR-SAKURA Sketch Template Version: V1.06*/ /*GR-SAKURA Sketch Template Version: V1.06*/ #include <rxduino.h> #include <serial.h> #include <string.h> #include <sdmmc.h> #include <servo.h> // To do serial communication via usb port // To do string manupulation // To do file access using sd card- external memory // To do servo control #include <stdio.h> #include <stdlib.h> SDMMC mysd; using namespace std; // Function declarations void myfileaccess(); void writeserial(); void readserial(); void irrigateservo(int i);

8 #define INTERVAL 100 int temppin = A0; // Analog Pin for temperature sensor int windpin = A1; // Analog Pin for wind speed sensor int wind_dir_pin = A2 ;// Analog Pin for wind direction sensor int battery_pin = A3 ;// Analog Pin for battery voltage sensor int solar_pin = A4 ;// Analog Pin for solar voltage sensor int grid_pin = A5 ;// Analog Pin for grid pwer sensor int moisture_pin = A6 ;// Analog Pin moisture sensor int waterenable = 1; // Digital Pin int robotenable = 2; // Digital Pin int alarmenable = 3; // Digital Pin int solartrackerenable = 4; // Digital Pin int fertilizerenable = 5; // Digital Pin int tankenable = 9; // Digital Pin, PWM pin for servo of irrigation int opened = 0; Servo myservo; // create servo object to control a servo // Identification header letters for each sensor value String strt = "T",strw = "W",strd = "D",strb = "B"; String strs = "S",strg = "G",strm = "M";

9 int val; String temp_val,wind_val,wind_dir_val,battery_val,solar_val,grid_val,moisture_val; void setup () pinmode ( PIN_LED0, OUTPUT ); pinmode ( PIN_LED1, OUTPUT ); pinmode ( PIN_LED2, OUTPUT ); pinmode ( PIN_LED3, OUTPUT ); pinmode ( waterenable, OUTPUT ); pinmode ( robotenable, OUTPUT ); pinmode ( alarmenable, OUTPUT ); pinmode ( solartrackerenable, OUTPUT ); pinmode ( fertilizerenable, OUTPUT ); pinmode ( tankenable, OUTPUT ); pinmode ( temppin, INPUT ); pinmode ( windpin, INPUT); pinmode ( wind_dir_pin, INPUT); pinmode ( battery_pin, INPUT);

10 pinmode ( solar_pin, INPUT); pinmode ( grid_pin, INPUT); pinmode ( moisture_pin, INPUT); mysd.begin(); //Start file access from sd card myservo.attach(9); myservo.write(0); Serial.begin (19200,SCI_AUTO); // Open a communication port with PC Serial.setDefault(); // Set default output stream to the Serial port Serial1.begin (19200,SCI_USB1); //string convertint (int number ); void loop ()

11 writeserial(); // calling function writeserial() readserial(); // calling function readserial() Serial.println(val); // Function for read a file and show the file contet void myfileaccess() digitalwrite(pin_led2, 1); File myfile = mysd.open("sample.txt", FILE_WRITE); if(myfile == false) Serial.println("Fail to access MMC"); digitalwrite(pin_led2, 0); //goto nextstate;

12 else //Read myfile = mysd.open("sample.txt", FILE_READ); while(myfile.available()) Serial.print((char)myFile.read()); delay(50); delay(200); myfile.close(); digitalwrite(pin_led2, 0); // End of myfileaccess() // Function for getting analog sensor values and writing them into serial void writeserial() // Reading Temperature Sensor value and write into serial port

13 temp_val = String(analogRead(tempPin )); Serial.println((strt+temp_val)); delay(10); // Reading Wind Speed Sensor value and write into serial port wind_val = String(analogRead( windpin )); Serial.println((strw+wind_val)); delay(10); // Reading Wind Direction Sensor value and write into serial port wind_dir_val = String(analogRead( wind_dir_pin )); Serial.println((strd+wind_Dir_val)); delay(10); // Reading battery voltage Sensor value and write into serial port battery_val = String(analogRead( battery_pin )); Serial.println((strb+battery_val)); delay(10); // Reading solar voltage Sensor value and write into serial port solar_val = String(analogRead( solar_pin )); Serial.println((strs+solar_val)); delay(10); // Reading grid power voltage Sensor value and write into serial port grid_val = String(analogRead( grid_pin ));

14 Serial.println((strg+grid_val)); delay(10); // Reading grid moisture Sensor value and write into serial port moisture_val = String(analogRead( moisture_pin )); Serial.println((strm+moisture_val)); delay(10); // End of writeserial() // Function for read serial data and activate actuators based on that void readserial() if ( Serial.available()>0) delay(10); val = int(serial.read()); if ( val == 49) digitalwrite ( PIN_LED0, 1); digitalwrite ( waterenable, 1);

15 else if ( val == 50 ) digitalwrite ( PIN_LED0, 0); digitalwrite ( waterenable, 0); else if ( val == 51 ) digitalwrite ( PIN_LED1, 1); digitalwrite ( robotenable, 1); else if ( val == 52 ) digitalwrite ( PIN_LED1, 0); digitalwrite ( robotenable, 0); else if ( val == 53 ) digitalwrite ( PIN_LED2, 1); myfileaccess(); digitalwrite ( PIN_LED2, 0); else if ( val == 54 ) digitalwrite ( PIN_LED3, 1);

16 digitalwrite ( solartrackerenable, 0); else if ( val == 55 ) digitalwrite ( PIN_LED3, 0); digitalwrite ( solartrackerenable, 0); else if ( val == 56 ) digitalwrite ( fertilizerenable, 1); else if ( val == 56 ) digitalwrite ( fertilizerenable, 0); else if ( val == 65 ) irrigateservo(1); else if ( val == 66 ) irrigateservo(0); else

17 // End of readserial() void irrigateservo(int enable) int pos1 = 0; // variable to store the servo position int pos2 = 75; if (enable==1 && opened == 0) opened = 1; for(pos1 = 0; pos1 <= 75; pos1 += 1) // goes from 0 degrees to 75 degrees // in steps of 1 degree myservo.write(pos1); delay(15); // tell servo to go to position in variable 'pos' // waits 15ms for the servo to reach the position

18 if (enable==0 && opened == 1 ) opened = 0; for(pos2 = 75; pos2 >=0; pos2 -=1) // goes from 75 degrees to 0 degrees myservo.write(pos2); delay(15); // tell servo to go to position in variable 'pos' // waits 15ms for the servo to reach the position digitalwrite(13,high); Source code 2 ( For web server configuration ) /*GR-SAKURA Sketch Template Version: V1.08*/ #include <rxduino.h> #include <SPI.h> #include <Ethernet.h> TEthernet Ethernet;

19 // Enter a MAC address and IP address for your controller below. // The IP address will be dependent on your local network: byte mac[] = 0xDE, 0xAD, 0xBE, 0xEF, 0xFE, 0xED; byte ip[] = 192,168,2,109; // Initialize the Ethernet server library // with the IP address and port you want to use // (port 80 is default for HTTP): EthernetServer server(80); EthernetClient client = 0; int val; char query; int home_page = 1; int temperature = 0; int light_1; int light_2; void setup() pinmode(pin_led0,output); pinmode(pin_led1,output); pinmode(6,output); pinmode(7,output); pinmode(8,output); pinmode(9,output);

20 digitalwrite(7, 0); digitalwrite(9, 0); digitalwrite(6, 0); digitalwrite(8, 0); // start the Ethernet connection and the server: Ethernet.begin(mac, ip); server.begin(); delay(500); digitalwrite(pin_led0, 1); void loop() client = server.available(); if (client) while (!client.connected()); digitalwrite(pin_led1, 1); if(home_page) client.println("<html>"); client.println("<head>");

21 client.println("<style type=\"text/css\">"); client.println("a padding: 5px 5px; background:#f33; color: #FFF;"); client.println("</style>"); client.println("<title>gr SAKURA</title>"); client.println("</head>"); client.println("<body>"); client.println("<div align=\"center\"><span style=\"font-family:rockwell; fontsize:48px; color:#3fa9f5;\"> Emtronizian</span><span style=\"font-family:rockwell; fontsize:48px; color:#595959;\"> - SCT </span>"); client.println("</div>"); client.println("<div align=\"center\" style=\"font-size:32px; color:#60f; margin:20px;\"><b>android BASED FARM AUTOMATION USING GR SAKURA</b>"); client.println("</div>"); client.println("<div align=\"center\" style=\"font-size:24px; color:#060; margin:20px;\">this is a front panel of the farm automation system using GR SAKURA board to control irrigation and read temperature of a field, using internet connected device from anywhere around the world.<br>"); client.println("</div>"); client.println("<div align=\"center\" style=\"font-size:24px; color:#040; margin:20px;\">gr SAKURA board is configured as a webserver for the farm automation.<br>"); client.println("</div>"); client.println("<center><a href=\" client.println("</body>"); client.println("</html>"); else home_page = 0;

22 Ethernet.processPackets(); query = client.read(); Ethernet.processPackets(); query = client.read(); Ethernet.processPackets(); query = client.read(); Ethernet.processPackets(); query = client.read(); Ethernet.processPackets(); query = client.read(); Ethernet.processPackets(); query = client.read(); if(query == 'a') digitalwrite(6, 1); digitalwrite(8, 0); light_1 = 1; light_2 = 0; client.println("<html>"); client.println("<head>"); client.println("<title>my Page</title>"); client.println("</head>");

23 client.println("<body bgcolor=\"#3fa9f5\">"); client.println("<div align=\"center\">"); client.println("<form action=\" client.println("<input type=\"submit\" value=\"light1\">"); client.println("</form>"); if(light_1) client.println("irrigation system is activated"); else client.println("irrigation system is deactivatedf"); client.println("<form action=\" client.println("<input type=\"submit\" value=\"light2\">"); client.println("</form>"); if(light_2) client.println("fertilizer system is activated"); else client.println("fertilizer system is deactivated"); client.println("<form action=\" client.println("<input type=\"submit\" value=\"temperature\">"); client.println("</form>"); client.println("no TEMPERATURE DATA"); client.println("</div>"); client.println("</body>"); client.println("</html>"); else if(query == 'b')

24 digitalwrite(6, 0); digitalwrite(8, 1); light_1 = 0; light_2 = 1; client.println("<html>"); client.println("<head>"); client.println("<title>my Page</title>"); client.println("</head>"); client.println("<body bgcolor=\"#3fa9f5\">"); client.println("<div align=\"center\">"); client.println("<form action=\" client.println("<input type=\"submit\" value=\"light1\">"); client.println("</form>"); if(light_1) client.println("irrigation system is activated"); else client.println("irrigation system is deactivated"); client.println("<form action=\" client.println("<input type=\"submit\" value=\"light2\">"); client.println("</form>"); if(light_2) client.println("fertilizer system is activated"); else client.println("fertilizer system is deactivated"); client.println("<form action=\"

25 client.println("<input type=\"submit\" value=\"temperature\">"); client.println("</form>"); client.println("no TEMPERATURE DATA"); client.println("</div>"); client.println("</body>"); client.println("</html>"); client.println(); else if(query == 'c') temperature = (5.0 * analogread(a0) * 100.0) / 1024; client.println("<html>"); client.println("<head>"); client.println("<title>my Page</title>"); client.println("</head>"); client.println("<body bgcolor=\"#3fa9f5\">"); client.println("<div align=\"center\">"); client.println("<form action=\" client.println("<input type=\"submit\" value=\"light1\">"); client.println("</form>"); if(light_1) client.println("irrigation system is activated"); else client.println("irrigation system is deactivated"); client.println("<form action=\" client.println("<input type=\"submit\" value=\"light2\">");

26 client.println("</form>"); if(light_2) client.println("fertilizer system is activated"); else client.println("fertilizer system is deactivated"); client.println("<form action=\" client.println("<input type=\"submit\" value=\"temperature\">"); client.println("</form>"); client.println("field TEMPERATURE = "); client.print(temperature); client.print(" Degrees"); client.println("</div>"); client.println("</body>"); client.println("</html>"); client.println(); client.stop(); // send FIN packet delay(500); client = 0; digitalwrite(pin_led1, 0); else;

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

Arduino Internet Connectivity: Maintenance Manual Julian Ryan Draft No. 7 April 24, 2015 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

More information

Eric Mitchell April 2, 2012 Application Note: Control of a 180 Servo Motor with Arduino UNO Development Board

Eric Mitchell April 2, 2012 Application Note: Control of a 180 Servo Motor with Arduino UNO Development Board Eric Mitchell April 2, 2012 Application Note: Control of a 180 Servo Motor with Arduino UNO Development Board Abstract This application note is a tutorial of how to use an Arduino UNO microcontroller to

More information

Microcontroller Programming Beginning with Arduino. Charlie Mooney

Microcontroller Programming Beginning with Arduino. Charlie Mooney Microcontroller Programming Beginning with Arduino Charlie Mooney Microcontrollers Tiny, self contained computers in an IC Often contain peripherals Different packages availible Vast array of size and

More information

Modern Robotics, Inc Core Device Discovery Utility. Modern Robotics Inc, 2015

Modern Robotics, Inc Core Device Discovery Utility. Modern Robotics Inc, 2015 Modern Robotics, Inc Core Device Discovery Utility Modern Robotics Inc, 2015 Version 1.0.1 October 27, 2015 Core Device Discovery Application Guide The Core Device Discovery utility allows you to retrieve

More information

Developing apps for Android OS: Develop an app for interfacing Arduino with Android OS for home automation

Developing apps for Android OS: Develop an app for interfacing Arduino with Android OS for home automation Developing apps for Android OS: Develop an app for interfacing Arduino with Android OS for home automation Author: Aron NEAGU Professor: Martin TIMMERMAN Table of contents 1. Introduction.2 2. Android

More information

Firmware version: 1.10 Issue: 7 AUTODIALER GD30.2. Instruction Manual

Firmware version: 1.10 Issue: 7 AUTODIALER GD30.2. Instruction Manual Firmware version: 1.10 Issue: 7 AUTODIALER GD30.2 Instruction Manual Firmware version: 2.0.1 Issue: 0.6 Version of the GPRS transmitters configurator: 1.3.6.3 Date of issue: 07.03.2012 TABLE OF CONTENTS

More information

Wireless Security Camera with the Arduino Yun

Wireless Security Camera with the Arduino Yun Wireless Security Camera with the Arduino Yun Created by Marc-Olivier Schwartz Last updated on 2014-08-13 08:30:11 AM EDT Guide Contents Guide Contents Introduction Connections Setting up your Temboo &

More information

Home Passport Gateway Series Simplify your Life with Smart Solutions

Home Passport Gateway Series Simplify your Life with Smart Solutions Home Passport Gateway Series Simplify your Life with Smart Solutions HPGW Series - Home Passport Gateway Series HPGW Series is Home Passport Gateway, representing a breakthrough product in the intrusion

More information

SMS GSM Alarm Messenger

SMS GSM Alarm Messenger SMS GSM Alarm Messenger Data Logging Alarm Input Relay Output Voice Temperature Humidity Analog Input Capture and Send Data via SMS Report triggered alarm via SMS Output triggered via SMS Auto pick up

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

securityprobe 5E Standard

securityprobe 5E Standard securityprobe 5E Standard securityprobe 5E Standard Monitor the physical environment and receive alerts of any disturbances, such as unauthorized intruders, security breaches, high temperatures, smoke,

More information

SIP Protocol as a Communication Bus to Control Embedded Devices

SIP Protocol as a Communication Bus to Control Embedded Devices 229 SIP Protocol as a Communication Bus to Control Embedded Devices Ramunas DZINDZALIETA Institute of Mathematics and Informatics Akademijos str. 4, Vilnius Lithuania ramunas.dzindzalieta@gmail.com Abstract.

More information

USB GSM 3G modem RMS-U-GSM-3G. Manual (PDF) Version 1.0, 2014.8.1

USB GSM 3G modem RMS-U-GSM-3G. Manual (PDF) Version 1.0, 2014.8.1 USB GSM 3G modem RMS-U-GSM-3G Manual (PDF) Version 1.0, 2014.8.1 2014 CONTEG, spol. s r.o. All rights reserved. No part of this publication may be used, reproduced, photocopied, transmitted or stored in

More information

Network Enabled Battery Health Monitoring System

Network Enabled Battery Health Monitoring System Network Enabled Battery Health Monitoring System Research Team: Fan Yang Zhengyang Liu Supervisor: Advisor: Hanlei Zhang (PhD Student) Wencong Su (PhD Student) Dr. Mo-Yuen Chow Presentation Outline Project

More information

SMS Alarm Messenger. Setup Software Guide. SMSPro_Setup. Revision 090210 [Version 2.2]

SMS Alarm Messenger. Setup Software Guide. SMSPro_Setup. Revision 090210 [Version 2.2] SMS Alarm Messenger SMSPro_Setup Revision 090210 [Version 2.2] ~ 1 ~ Contents 1. How to setup SMS Alarm Messenger?... 3 2. Install the SMSPro_Setup software... 5 3. Connection Type... 6 4. Connection Port

More information

MeshBee Open Source ZigBee RF Module CookBook

MeshBee Open Source ZigBee RF Module CookBook MeshBee Open Source ZigBee RF Module CookBook 2014 Seeed Technology Inc. www.seeedstudio.com 1 Doc Version Date Author Remark v0.1 2014/05/07 Created 2 Table of contents Table of contents Chapter 1: Getting

More information

Next Gen Platform: Team & Mentor Guide

Next Gen Platform: Team & Mentor Guide Next Gen Platform: Team & Mentor Guide 1 Introduction For the 2015-2016 season, the FIRST Tech Challenge (FTC) will be adopting a new controller for its robot competitions. The new platform, which will

More information

GPS Vehicle and personal location tracker. User manual

GPS Vehicle and personal location tracker. User manual GPS Vehicle and personal location tracker User manual 1 Contents 1. Product overview... 2 2. Safety instruction... 3 3. Specification and parameters... 3 4. Getting started... 4 4.1 Hardware and accessories...

More information

Wireless Sensor Network Based Low Power Embedded System Design For Automated Irrigation System Using MSP430

Wireless Sensor Network Based Low Power Embedded System Design For Automated Irrigation System Using MSP430 Wireless Sensor Network Based Low Power Embedded System Design For Automated Irrigation System Using MSP430 Mr. Patil Vikas Anandrao. M Tech. Student (Digital Systems) Rajarambapu Institute of Technology,

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

Business/Home GSM Alarm System. Installation and User Manual

Business/Home GSM Alarm System. Installation and User Manual Business/Home GSM Alarm System Installation and User Manual Brief Introduction: GSM 900/1800/1900 bands, can be used in most parts of the world Full duplex communication with the host Monitor the scene

More information

SCADA and Monitoring for Solar Energy Plant

SCADA and Monitoring for Solar Energy Plant SCADA and Monitoring for Solar Energy Plant Segment: Industry Country: Thailand Author: Ranon Satitpanyapan Products: NI LabVIEW with LabVIEW Real-Time Module crio Real-Time controller 8 slot with 16 current

More information

Compatible with all of the Ravica range of Intelligent Sensors it provides a complete environmental, access control and security monitoring solution.

Compatible with all of the Ravica range of Intelligent Sensors it provides a complete environmental, access control and security monitoring solution. Sensor Control... Control... Sensor Control... Access securityprobe 5E Standard securityprobe 5E Standard Monitor the physical environment and receive alerts of any disturbances, such as unauthorized intruders,

More information

SOLARCARE SERIES PRODUCT AND APPLICATION GUIDE

SOLARCARE SERIES PRODUCT AND APPLICATION GUIDE SOLARCARE SERIES PRODUCT AND APPLICATION GUIDE for solar energy management LEATEC Delivering Solutions for Energy Management SOLAR ENERGY DATA CENTER BUILDING 4 to8 String Monitoring with 0.% Accuracy

More information

GM862 Arduino Shield

GM862 Arduino Shield User s Manual GM862 Arduino Shield Rev. 1.3 MCI-MA-0063 MCI Electronics Luis Thayer Ojeda 0115. Of. 402 Santiago, Chile Tel. +56 2 3339579 info@olimex.cl MCI Ltda. Luis Thayer Ojeda 0115. Of. 402 Santiago,

More information

Arduino Lesson 13. DC Motors. Created by Simon Monk

Arduino Lesson 13. DC Motors. Created by Simon Monk Arduino Lesson 13. DC Motors Created by Simon Monk Guide Contents Guide Contents Overview Parts Part Qty Breadboard Layout Arduino Code Transistors Other Things to Do 2 3 4 4 4 6 7 9 11 Adafruit Industries

More information

Temperature & Humidity SMS Alert Controller

Temperature & Humidity SMS Alert Controller Temperature & Humidity Alert Controller METERS 3 simple steps starting the unit: Insert the SIM card Plug in the sensors connectors Connect the AC power cord. Specifications: AC 90~260V Auto Select Internal

More information

WeatherLink for Alarm Output. Introduction. Hardware Installation and Requirements. Addendum

WeatherLink for Alarm Output. Introduction. Hardware Installation and Requirements. Addendum WeatherLink for Alarm Output Addendum Introduction This Streaming Data Logger is designed to provide an electrical interface between a Vantage Pro2, Vantage Vue, or Vantage Pro weather station console

More information

PART 1 CONFIGURATION 1.1 Installing Dashboard Software Dashboardxxx.exe Administration Rights Prerequisite Wizard

PART 1 CONFIGURATION 1.1 Installing Dashboard Software Dashboardxxx.exe Administration Rights Prerequisite Wizard Omega Dashboard 1 PART 1 CONFIGURATION 1.1 Installing Dashboard Software Find the Dashboardxxx.exe in the accompanying CD or on the web. Double click that to install it. The setup process is typical to

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

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

POPP Hub Gateway. Manual

POPP Hub Gateway. Manual POPP Hub Gateway Manual 008900 POPP Hub Gateway Manual Quick Start... 2 Hardware... 2 Smart Home User Interface... 2 Applications (Apps) realize the intelligence of your Smart Home... 3 Functions of the

More information

My2B. MyALARM2 GSM/GPRS Datalogger with Alarm Management

My2B. MyALARM2 GSM/GPRS Datalogger with Alarm Management My2B GSM/GPRS Datalogger with Alarm Management 100% Made & Designed in Italy My2B GSM/GPRS Datalogger with Alarm Management MY2B ( Standard / Datalogger) is a GSM / GPRS telecontrol unit for home & building

More information

DEPARTMENT OF ELECTRONICS ENGINEERING

DEPARTMENT OF ELECTRONICS ENGINEERING UNIVERSITY OF MUMBAI A PROJECT REPORT ON Home Security Alarm System Using Arduino SUBMITTED BY- Suman Pandit Shakyanand Kamble Vinit Vasudevan (13103A0011) (13103A0012) (13103A0018) UNDER THE GUIDANCE

More information

Product Introduction and Setup Examples. RS232 to WIFI Converter

Product Introduction and Setup Examples. RS232 to WIFI Converter Product Introduction and Setup Examples RS232 to WIFI Converter Part WF5000B U.S. Converters LLC page 1 of 12 Content Product Introduction. 3 AP and STA Modes. 3 Auto- Frequency Function. 3 Security..

More information

ABB solar inverters. User s manual ABB Remote monitoring portal

ABB solar inverters. User s manual ABB Remote monitoring portal ABB solar inverters User s manual ABB Remote monitoring portal List of related manuals Title Code (English) ABB Remote monitoring portal user s manual 3AUA0000098904 NETA-01 Ethernet adapter module user

More information

GSM based Remote Sensing and Control of an Irrigation System using WSN: a Survey

GSM based Remote Sensing and Control of an Irrigation System using WSN: a Survey GSM based Remote Sensing and Control of an Irrigation System using WSN: a Survey Nilesh S. Bhaltadak 1, Hemant T. Ingale 2, S.K. Chaudhari 3 P.G. Student, Department of E&TC, Godavari College of Engineering,

More information

Product Specification instalert Rapid Messenger Variable Message Sign

Product Specification instalert Rapid Messenger Variable Message Sign instalert 2 units to cover any application instalert 18 (ia18): 18 x 28 full matrix instalert 24: (ia24): 24 x 60 full matrix Size, Weight without battery ia18: 30 x 20 x 2.74, 29 lbs ia24: Folds to fits

More information

Gauge Drawing Tool... 8. Slider Drawing Tool... 8. Toggle Button Drawing Tool... 8. One-Way List Drawing Tool... 8

Gauge Drawing Tool... 8. Slider Drawing Tool... 8. Toggle Button Drawing Tool... 8. One-Way List Drawing Tool... 8 v. 20120510 Table of Contents RTiPanel Overview and Requirements... 3 Software Requirements:... 3 Hardware Requirements:... 3 Network Requirements:... 3 Licensing Requirements:... 4 Basic Integration Designer

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

T-BOXN12R. First steps with T-BOXN12R. You can make it wireless. Date: 2004-07-16 Version 1.0

T-BOXN12R. First steps with T-BOXN12R. You can make it wireless. Date: 2004-07-16 Version 1.0 T-BOXN12R You can make it wireless First steps with T-BOXN12R Date: 2004-07-16 Version 1.0 Content 1. Purpose of this document... 3 2. T-BoxN12R overview... 4 3. First step... 5 3.1. Preparing your workshop

More information

Getting Started Guide with WIZ550web

Getting Started Guide with WIZ550web 1/21 WIZ550web is an embedded Web server module based on WIZnet s W5500 hardwired TCP/IP chip, Users can control & monitor the 16-configurable digital I/O and 4-ADC inputs on module via web pages. WIZ550web

More information

Electronic Brick of Current Sensor

Electronic Brick of Current Sensor Electronic Brick of Current Sensor Overview What is an electronic brick? An electronic brick is an electronic module which can be assembled like Lego bricks simply by plugging in and pulling out. Compared

More information

Alberding precision agriculture solutions

Alberding precision agriculture solutions Alberding precision agriculture solutions Alberding GmbH AGRITECHNICA 2015, 8 14 November 2015, Hanover, Germany Presentation by: Tamás Horváth & Katrin Arendholz Alberding GmbH - Precision agriculture

More information

Arduino Shield Manual

Arduino Shield Manual Arduino Shield Manual Version 1.4 www.dfrobot.com Copyright 2010 by DFRobot.com Table of Contents Arduino I/O Expansion Shield... 4 Introduction... 4 Diagram... 4 Sample Code... 4 Arduino Motor Shield...

More information

FLIR M-Series and NavNet TZtouch

FLIR M-Series and NavNet TZtouch FLIR M-Series and NavNet TZtouch Overview The following example illustrates the integration of the FLIR M-Series into a NavNet network. The M- Series and the JCU controller are set with a fix IP address

More information

Sensor Devices and Sensor Network Applications for the Smart Grid/Smart Cities. Dr. William Kao

Sensor Devices and Sensor Network Applications for the Smart Grid/Smart Cities. Dr. William Kao Sensor Devices and Sensor Network Applications for the Smart Grid/Smart Cities Dr. William Kao Agenda Introduction - Sensors, Actuators, Transducers Sensor Types, Classification Wireless Sensor Networks

More information

GSM ATT Modules Simply effective remote control

GSM ATT Modules Simply effective remote control GSM ATT Modules Simply effective remote control To control electrical loads via mobile phone The benefits Remote management of electrical devices is an increasingly widespread requirement in residential

More information

Climate Ready Shade Operating Systems for residential applications.

Climate Ready Shade Operating Systems for residential applications. Climate Ready Shade Operating Systems for residential applications. This brochure contains examples of home plan configurations and how Climate Ready Shade Operating Systems can be applied and what is

More information

Other 555 based and 8051 based projects...

Other 555 based and 8051 based projects... Dear Engineer, We at ARK Technosolutions try to bring out the Innovative side in budding engineers by providing them workshops, which emphasise on Practical Knowledge which they do not seek in their daily

More information

Technical Information POWER PLANT CONTROLLER

Technical Information POWER PLANT CONTROLLER Technical Information POWER PLANT CONTROLLER Content The Power Plant Controller offers intelligent and flexible solutions for the control of all PV power plants in the megawatt range. It is suitable for

More information

Using Arduino Microcontrollers to Sense DC Motor Speed and Position

Using Arduino Microcontrollers to Sense DC Motor Speed and Position ECE480 Design Team 3 Using Arduino Microcontrollers to Sense DC Motor Speed and Position Tom Manner April 4, 2011 page 1 of 7 Table of Contents 1. Introduction ----------------------------------------------------------

More information

Intro to Intel Galileo - IoT Apps GERARDO CARMONA

Intro to Intel Galileo - IoT Apps GERARDO CARMONA Intro to Intel Galileo - IoT Apps GERARDO CARMONA IRVING LLAMAS Welcome! Campus Party Guadalajara 2015 Introduction In this course we will focus on how to get started with the Intel Galileo Gen 2 development

More information

Controller board and power supply for vivimat III systems

Controller board and power supply for vivimat III systems Controller board and power supply for vivimat III systems Ref: VIVIMAT-3.0 The controller board and power supply vivimat 3.0, is the central core of the vivimat III home automation system. The vivimat

More information

Cypress Semiconductor: Arduino Friendly PSoC Shield

Cypress Semiconductor: Arduino Friendly PSoC Shield Cypress Semiconductor: Arduino Friendly PSoC Shield Design Presentation ECE 480 Design Team 1 Cecilia Acosta Brett Donlon Matt Durak Aaron Thompson Nathan Ward Faculty Facilitator Dr. Robert McGough Sponsor

More information

Applications > Robotics research and education > Assistant robot at home > Surveillance > Tele-presence > Entertainment/Education > Cleaning

Applications > Robotics research and education > Assistant robot at home > Surveillance > Tele-presence > Entertainment/Education > Cleaning Introduction robulab 10 is a multi-purpose mobile robot designed for various indoor applications, such as research and education, tele-presence, assistance to people staying at home. robulab 10 is a generic

More information

19 LCD / 8 CHANNEL DVR COMBO WITH 160GB HDD & 4 CAMERAS

19 LCD / 8 CHANNEL DVR COMBO WITH 160GB HDD & 4 CAMERAS 19 LCD / 8 CHANNEL DVR COMBO WITH 160GB HDD & 4 CAMERAS Overview - Remote Viewing MODEL: SG19LD804-161 www.lorexcctv.com Copyright 2007 LOREX Technology Inc. Remote Viewing Overview Remote Viewing Overview

More information

EDK 350 (868 MHz) EDK 350U (902 MHz) EnOcean Developer Kit

EDK 350 (868 MHz) EDK 350U (902 MHz) EnOcean Developer Kit EDK 350 (868 MHz) EDK 350U (902 MHz) EnOcean Developer Kit EDK 350 User Manual Important Notes This information describes the type of component and shall not be considered as assured characteristics. No

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

L11 - New Techniques to Increase Efficiency with PanelView Plus 6 Applications Wil Mattheis Commercial Engineer

L11 - New Techniques to Increase Efficiency with PanelView Plus 6 Applications Wil Mattheis Commercial Engineer L11 - New Techniques to Increase Efficiency with PanelView Plus 6 Applications Wil Mattheis Commercial Engineer November 2012 Rev 5058-CO900C Agenda Product Overview Device Connectivity Design-time Improvements

More information

Internet of Things with the Arduino Yún

Internet of Things with the Arduino Yún Internet of Things with the Arduino Yún Marco Schwartz Chapter No. 1 "Building a Weather Station Connected to the Cloud" In this package, you will find: A Biography of the author of the book A preview

More information

Still Images or Video. Long Battery Life. Easy and Quick to Setup. How do they work?

Still Images or Video. Long Battery Life. Easy and Quick to Setup. How do they work? Motion Activated Still Images or Video View on Smartphone or PC Long Range Wireless Long Battery Life Free RF Transmission Invisible IR Flash at Night Easy and Quick to Setup Add up to 254 Cameras How

More information

AutoLog ControlMan. Remote Monitoring & Controlling Service

AutoLog ControlMan. Remote Monitoring & Controlling Service AutoLog 1 AutoLog ControlMan Remote Monitoring & Controlling Service Web browser based HMI / SCADA interface Server is hosted by Internet server hosting company Control units communicate wirelessly via

More information

Fieldservers as Real-time Monitoring Tools for Ubiquitous Sensor Networks

Fieldservers as Real-time Monitoring Tools for Ubiquitous Sensor Networks Fieldservers as Real-time Monitoring Tools for Ubiquitous Sensor Networks Aadit Shrestha, Rassarin Ch., HONDA Kiyoshi, Apichon Witayangkurn Asian Institute of Technology Hiroshi SHIMAMURA elab experience

More information

ModBus Server - KNX. Gateway for integration of KNX equipment into Modbus (RTU and TCP) control systems.

ModBus Server - KNX. Gateway for integration of KNX equipment into Modbus (RTU and TCP) control systems. IntesisBox ModBus Server - KNX Gateway for integration of KNX equipment into Modbus (RTU and TCP) control systems. Integrate KNX based lighting control into your SCADA, BMS, PLC "talking" Modbus. Master

More information

Names of Parts. English. Mic. Record Button. Status Indicator Micro SD Card Slot Speaker Micro USB Port Strap Hook

Names of Parts. English. Mic. Record Button. Status Indicator Micro SD Card Slot Speaker Micro USB Port Strap Hook User Manual Names of Parts Record Button Mic Status Indicator Micro SD Card Slot Speaker Micro USB Port Strap Hook Video Mode Photo Mode Local Mode Cloud Mode Mode Button Power Button Tripod Mount Clip

More information

Notification messages

Notification messages AXIS P8221 Network I/O Audio Module TECHNICAL NOTE Notification messages How to integrate AXIS P8221 Updated: August 19, 2011 Rev: 1.1 TABLE OF CONTENTS 1 INTRODUCTION 3 1.1 HTTP and TCP 3 1.2 VAPIX 3

More information

Board also Supports MicroBridge

Board also Supports MicroBridge This product is ATmega2560 based Freeduino-Mega with USB Host Interface to Communicate with Android Powered Devices* like Android Phone or Tab using Android Open Accessory API and Development Kit (ADK)

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

Green House Monitoring and Controlling Using Android Mobile Application

Green House Monitoring and Controlling Using Android Mobile Application Green House Monitoring and Controlling Using Android Mobile Application Aji Hanggoro aji.hanggoro@ui.ac.id Mahesa Adhitya Putra mahesa.adhitya91@ui.ac.id Rizki Reynaldo rizki.reynaldo@ui.ac.id Riri Fitri

More information

IDD-213T User Manual. (Rev. 1.0) China Aerospace Telecommunications Limited

IDD-213T User Manual. (Rev. 1.0) China Aerospace Telecommunications Limited (Rev. 1.0) China Aerospace Telecommunications Limited Contents 1. Introduction......3 2. Specifications...4 2.1 External Interface... 4 2.2 Status Indicator...... 5 2.3 Technical Parameters... 6 3. Device

More information

Smarter Security Solutions

Smarter Security Solutions www.smartwitness.com Smarter Security Solutions 2011 Range INTRODUCING THE WORLD S SMALLEST WIFI IP CAMERA! Laptop/PC Wireless CCTV System Digital Recording Wireless CCTV System WiFi IP Cameras Spy Camera

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

Monitoring solar PV output

Monitoring solar PV output Monitoring solar PV output Introduction Monitoring of your solar PV output is useful to see the actual outputs. This can be measured from the inverter and/or mains using current clamps or pulse meters

More information

WISE-4000 Series. WISE IoT Wireless I/O Modules

WISE-4000 Series. WISE IoT Wireless I/O Modules WISE-4000 Series WISE IoT Wireless I/O Modules Bring Everything into World of the IoT WISE IoT Ethernet I/O Architecture Public Cloud App Big Data New WISE DNA Data Center Smart Configure File-based Cloud

More information

Digital Video Recorder

Digital Video Recorder EN Digital Video Recorder Hardware Quick Start Guide Welcome! Lets get started. QH16_42000914E Swann 2014 1 1 Getting to know your DVR Congratulations on your purchase of Swann s latest DVR security system!

More information

Overview. 1. GPS data tracking via GSM SMS / GPRS. 2. GPS data logging in internal memory. 3. Alarm alert via GSM SMS / Dialing / GPRS

Overview. 1. GPS data tracking via GSM SMS / GPRS. 2. GPS data logging in internal memory. 3. Alarm alert via GSM SMS / Dialing / GPRS Vehicle or Personal Position Tracking Vehicle Status and Speed Tracking Auto Accident Report Global Position System (GPS) Navigation System Anti theft Alarm System Overview 1. GPS data tracking via GSM

More information

LB Sky Global. 92 Lobachevskogo St, Bld 92, Office 5, Moscow, Russia 119454 Tel/Fax 7(495)229-39-78, E-mail: office@grouplb.com, Site: www.grouplb.

LB Sky Global. 92 Lobachevskogo St, Bld 92, Office 5, Moscow, Russia 119454 Tel/Fax 7(495)229-39-78, E-mail: office@grouplb.com, Site: www.grouplb. Perimeter security system T-REX Moscow, 2011 Table of content 1. Introduction... 3 2. Main features of the T-REX system... 3 3. Structure of the system... 5 4. SL-6000 system sensors... 6 5. Signal processing

More information

KACO-monitoring. onlinecomponents.com. Integrated monitoring available. Monitor up to 32 inverters per prolog. Reliable and accurate data

KACO-monitoring. onlinecomponents.com. Integrated monitoring available. Monitor up to 32 inverters per prolog. Reliable and accurate data KACO-monitoring watchdog insight prolog Integrated monitoring available Monitor up to 32 inverters per prolog Reliable and accurate data Email alarms to maximize uptime Historical, current and production

More information

YM.SW.105.UM.EN.D00REV25072008.FH11 Fri Jul 25 16:00:01 2008 Page 1

YM.SW.105.UM.EN.D00REV25072008.FH11 Fri Jul 25 16:00:01 2008 Page 1 YM.SW.105.UM.EN.D00REV25072008.FH11 Fri Jul 25 16:00:01 2008 Page 1 5 port 10/100 Mbps Ethernet Switch USER MANUEL YM.SW.105.UM.EN.D00REV25072008.FH11 Fri Jul 25 16:00:01 2008 Page 2 This manual has been

More information

Intelligent Monitoring Configuration Tool

Intelligent Monitoring Configuration Tool Intelligent Monitoring Configuration Tool User Guide Software Version 1.0 and above EZPlugger 2004 Sony Corporation Copyright Notice 2004 Sony Corporation. All rights reserved. This manual may not be

More information

EDM Cloud Remote Monitoring Solutions. Crystal Instruments, January 2014

EDM Cloud Remote Monitoring Solutions. Crystal Instruments, January 2014 EDM Cloud Remote Monitoring Solutions Crystal Instruments, January 2014 Architecture 1: EDM Cloud runs on the Internet Spiders at multiple locations Client Browser EDM Data Server Ethernet or Wireless

More information

Hardware & Software Solutions

Hardware & Software Solutions Hardware & Software Solutions Introduction About Proemion - Overview Capabilities - Customers 1986 RM Michaelides 2002 Proemion 2007 Production plant Introduction About RM Overview Capabilities Customers

More information

Hills Professional Series NVRs and Cameras

Hills Professional Series NVRs and Cameras FAQs Hills Professional Series NVRs and Cameras (V1.1) 1. What is the default NVR resolution? By Default NVR video output resolution is 1080P. Resolution may be changed if necessary to suit the attached

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

MONITORING SOLUTION FOR IMPROVED CROP MANAGEMENT

MONITORING SOLUTION FOR IMPROVED CROP MANAGEMENT MONITORING SOLUTION FOR IMPROVED CROP MANAGEMENT COMPREHENSIVE, REAL-TIME INFORMATION SYSTEM FOR DECISION MAKING 01-0113-WTS-BR-0099-EN GROW MORE WITH LESS WWW.NETAFIM.COM REAL-TIME MONITORING AND DECISION

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

What communication protocols are used to discover Tesira servers on a network?

What communication protocols are used to discover Tesira servers on a network? Understanding device discovery methods in Tesira OBJECTIVES In this application note, basic networking concepts will be summarized to better understand how Tesira servers are discovered over networks.

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

PowerShield SNMP Adaptor

PowerShield SNMP Adaptor PowerShield SNMP Adaptor This manual describes the setup and operation of the PowerShield SNMP adaptor for the Sentinel battery monitoring system 6300-079A SNMP User Manual Page 1 of 9 1. Connecting the

More information

Home Security System for Automatic Doors

Home Security System for Automatic Doors ABDUL S. RATTU Home Security System for Automatic Doors Capstone Design Project Final Report Spring 2013 School of Engineering The State University of New Jersey, USA May 1st, 2013 ECE 468 Advisor: Prof.

More information

Installation Steps Follow these steps to install the network camera on your local network (LAN):

Installation Steps Follow these steps to install the network camera on your local network (LAN): 1. Description The Network Camera supports the network service for a sensor image with progressive scan, which can be monitored on a real-time screen regardless of distances and locations. By using its

More information

Agricultural Robot (Irrigation System, Weeding, Monitoring of Field, Disease Detection)

Agricultural Robot (Irrigation System, Weeding, Monitoring of Field, Disease Detection) Agricultural Robot (Irrigation System, Weeding, Monitoring of Field, Disease Detection) Bhagyalaxmi k 1, Jagtap Komal K 2, Nikam Nakusa S 2, Nikam Karuna K 2, Sutar Snehal S 2. Asst. Professor, Dept. of

More information

Arduino ADK Back. For information on using the board with the Android OS, see Google's ADK documentation.

Arduino ADK Back. For information on using the board with the Android OS, see Google's ADK documentation. Arduino ADK Arduino ADK R3 Front Arduino ADK R3 Back Arduino ADK Front Arduino ADK Back Overview The Arduino ADK is a microcontroller board based on the ATmega2560 (datasheet). It has a USB host interface

More information

APR-PRT3 Printer Module: C-Bus Programming Instructions

APR-PRT3 Printer Module: C-Bus Programming Instructions APR-PRT3 Printer Module: C-Bus Programming Instructions We hope this product performs to your complete satisfaction. Should you have any questions or comments, please visit www.paradox.com and send us

More information

WeatherLink for Emergency Response Teams Addendum

WeatherLink for Emergency Response Teams Addendum WeatherLink for Emergency Response Teams Addendum Introduction This Streaming Data Logger is designed for use with the free CAMEO software developed by National Oceanic and Atmospheric Administration (NOAA)

More information

Building a Basic Communication Network using XBee DigiMesh. Keywords: XBee, Networking, Zigbee, Digimesh, Mesh, Python, Smart Home

Building a Basic Communication Network using XBee DigiMesh. Keywords: XBee, Networking, Zigbee, Digimesh, Mesh, Python, Smart Home Building a Basic Communication Network using XBee DigiMesh Jennifer Byford April 5, 2013 Keywords: XBee, Networking, Zigbee, Digimesh, Mesh, Python, Smart Home Abstract: Using Digi International s in-house

More information

Qvis Security Technical Support Field Manual LX Series

Qvis Security Technical Support Field Manual LX Series Table of Contents Page 1: Motion Detection 1.0 Configuring Motion Detection for LX Apollo / LX Zeus DVRs 2 1.1 Motion Playback on LX Apollo / LX Zeus DVRs 3 1.2 Scheduling Motion and Continuous Recording

More information

Testbed implementation of cloud based energy management system with ZigBee sensor networks

Testbed implementation of cloud based energy management system with ZigBee sensor networks Testbed implementation of cloud based energy management system with ZigBee sensor networks Katsuhiro Naito, Kazuo Mori, and Hideo Kobayashi Department of Electrical and Electronic Engineering, Mie University,

More information

Bluetooth + USB 16 Servo Controller [RKI-1005 & RKI-1205]

Bluetooth + USB 16 Servo Controller [RKI-1005 & RKI-1205] Bluetooth + USB 16 Servo Controller [RKI-1005 & RKI-1205] Users Manual Robokits India info@robokits.co.in http://www.robokitsworld.com Page 1 Bluetooth + USB 16 Servo Controller is used to control up to

More information