CHAPTER 5 IMPLEMENTATION AND TESTING

Size: px
Start display at page:

Download "CHAPTER 5 IMPLEMENTATION AND TESTING"

Transcription

1 CHAPTER 5 IMPLEMENTATION AND TESTING 5.1 Implementation In this Medical Devices project using IoT System programming is used on Arduino IDE microcontroller. The results of this project contains four designs, namely: 1. MAX MLX ESP SIM900A MAX30100 Results of the design of heartbeat series MAX30100 series on Arduino Uno can be seen in the following figure: Illustration 5.1: MAX

2 22 The heart rate sensor of the MAX30100 series uses a positive voltage of 3.3 volts and a negative voltage coming from Arduino Uno in the GND port. Then both cables are connected to port A4 which means SDA and port A5 which means SCL in Arduino Uno. SDA is serial data, while SCL is synchronous clock path. After that, because the MAX30100 requires a voltage to communicate I2C then the pull up is connected to 5V arduino uno directly and given the resistance(resistor) equal to 10K on SDA and SCL in the sensor MLX90614 The design results of infrared body temperature sensor series MLX90614 on Arduino can be seen in the following figure: Illustration 5.2: MLX90614

3 23 The MLX90614 series body temperature sensor uses a 5 volt positive voltage and a negative voltage coming from Arduino Uno in GND port. Then means SDA and port A5 which means SCL in Arduino Uno. SDA is serial data, while SCL is synchronous ctwo cables taken from the SDA and SCL sensors are connected to port A4 which lock path ESP8266 Results of ESP8266 serial wifi design module on Arduino can be seen in the following figure: Illustration 5.3: ESP8266 On ESP8266 it takes 3.3 volt voltage. In addition, ESP8266 also requires RX and TX. Here RX and TX on ESP8266 are connected on pins 10 and 11 as communication between ESP8266 and Arduino Uno.

4 SIM900A Results of GSM Shield SIM900 series design on Arduino can be seen in the following figure: Illustration 5.4: SIM900A In series GSM Shield 900A connected with 5 volt voltage and negative voltage coming from Arduino Uno in GND port. Here ESP8266 is also connected simultaneously with SIM900 which usually receive data. ESP8266 and SIM900 both require TX and RX, but the serial hardware contained in the Arduino has only one pair. The devices in Arduino Uno are actually only recommended for use on one module only. If in one

5 25 module using two serial software at once classified as ineffective in the process. 5.2 Testing In this testing, experiments were carried out on the heartbeat of the MAX30100 series, the MLX90614 body temperature sensor, the ESP8266 wifi module, and the GSM Shield SIM900A. In this project there are three testing, namely: Functional testing The results of the heart rate test rate of MAX30100 compared with manual experiment with pulse in hand, infrared temperature sensor series MLX90614 compared with thermometer experiment up to 10 respondents. The ESP8266 data transmission experiments connect on wifi and send data to the thingspeak server' and hosting server. Send an SMS experiment to a different provider using Modul GSM SIM900A series. Trial server system. 1. Results of body temperature measurement MLX90614 Table 5.1: Measurement Results of MLX90614 Responden 1 Responden 2 Responden 3 Responden 4 Sensor 0,5 cm= 36 C 1 cm= 33 C 1,5 cm= 32 C 0,5 cm= 36 C 1 cm= 33 C 1,5 cm= 32 C 0,5 cm= 35 C 1 cm= 33 C 1,5 cm= 32 C 0,5 cm= 36 C 1 cm= 33 C Termometer 35,90 C 35,60 C 35C 36,10C

6 26 1,5 cm= 32 C 0,5 cm= 35 C Responden 5 35,20 C 1 cm= 34 C 1,5 cm= 33 C 0,5 cm= 36 C Responden 6 35,40 C 1 cm= 35 C 1,5 cm= 34 C 0,5 cm= 36 C Responden 7 36,20 C 1 cm= 33 C 1,5 cm= 31 C 0,5 cm= 35 C Responden 8 35,30 C 1 cm= 34 C 1,5 cm= 33 C 0,5 cm= 35 C Responden 9 35,20 C 1 cm= 33 C 1,5 cm= 32 C 0,5 cm= 36 C Responden 10 35,80 C 1 cm= 33 C 1,5 cm= 32 C Conclusion: There is a difference of 0.81% to the experimental results of the sensor and thermometer at an optimal distance of 0.5 cm. 2. Results of heart rate measurement MAX30100 Table 5.2: Measurement Results of MAX30100 Responden Manual Sensor Responden 1 72 BPM 78 BPM Responden 2 81 BPM 83 BPM Responden BPM 111 BPM Responden 4 70 BPM 75 BPM Responden 5 71 BPM 75 BPM Responden 6 82 BPM 88 BPM Responden BPM 116 BPM

7 27 Responden 8 96 BPM 96 BPM Responden 9 75 BPM 75 BPM Responden BPM 75 BPM Conclusion: There is a difference of 0.50% against the results of manual experiments and sensors. 3. Result of ESP8266 send data to thingspeak server and hosting server using wireless connection. Table 5.3: Result of Send Data to Thingspeak Server No Wifi Send to thingspeak (second) 1 MNC Play 20 2 MNC Play 21 3 MNC Play 21 4 MNC Play 20 5 MNC Play 21 Table 5.4: Result of Send Data to Hosting Server No Wifi Send to thingspeak (second) 1 MNC Play 20 2 MNC Play 20 3 MNC Play 20 4 MNC Play 21 5 MNC Play 20 Source code for connection to wireless: 1.void ESPSet() { 2. myserial.print("at+cwmode=1\r\n"); /*Mode 1 jadi station(menggunakan wifi sekitar)*/ 3. delay(300); 4. myserial.print("at+cwjap=\""); /*Prints the SSID and pass of Access Point ESP8266 is connected to*/ 5. myserial.print("locked"); 6. myserial.print("\",\""); 7. myserial.print("yammie456");

8 28 8. myserial.print("\"\r\nc"); 9. myserial.print("at+cifsr\r"); /*mengecek IP LOCAL ADDRESS*/ 10. delay(3000); 11. } Source code delivery to the thingspeak server: 1. String kirimts = "AT+CIPSTART=\"TCP\",\"api.thingspeak.com\",80\r\n"; 2.void kirimthingspeak() { 3. url = "GET /update?api_key=dpd85bsxiqw1n2fz"; 4. url = url + "&field1=" + suhu; 5. url = url + "&field2=" + jantungrata; 6. url = url + " HTTP/1.1\r\nHost: api.thingspeak.com\r\nconnection: close\r\n\r\n"; 7. pengirimandata(url, kirimts); 8. } 9.void pengirimandata(string url, String kirim) { 10. Serial.println("1. Ukur Panjang dan Connect ke TCP"); 11. panjang = url.length(); 12. myserial.print(kirim); 13. delay(5000); 14. Serial.println("2. Kirim panjang ke ESP"); 15. myserial.print("at+cipsend="); 16. myserial.print(panjang); 17. myserial.print("\r\n"); 18. delay(200); 19. Serial.println("3. Eksekusi URL"); 20. myserial.print(url); 21. Serial.println(url); 22. delay(200); 23. } Source code for connection to wifi. 1.void ESPSet() { 2. myserial.print("at+cwmode=1\r\n"); /*Mode 1 jadi station(menggunakan wifi sekitar)*/ 3. delay(300); 4. myserial.print("at+cwjap=\""); /*Prints the SSID and pass of Access Point ESP8266 is connected to*/ 5. myserial.print("locked"); 6. myserial.print("\",\""); 7. myserial.print("yammie456"); 8. myserial.print("\"\r\nc"); 9. myserial.print("at+cifsr\r"); /*mengecek IP LOCAL ADDRESS*/ 10. delay(3000); 11. }

9 29 Source code delivery to server hosting: 1. String kirimht = "AT+CIPSTART=\"TCP\",\"medicaliot.xyz\",80\r\n"; 2.void kirimhosting() { 3. url = "GET /ambildata.php?data="; 4. url = url + suhu + "-" + jantungrata + "-" + pasien; 5. url = url + " HTTP/1.1\r\nHost: medicaliot.xyz\r\nconnection: close\r\n\r\n"; 6. pengirimandata(url, kirimht); 7. } 8.void pengirimandata(string url, String kirim) { 9. Serial.println("1. Ukur Panjang dan Connect ke TCP"); 10. panjang = url.length(); 11. myserial.print(kirim); 12. delay(5000); 13. Serial.println("2. Kirim panjang ke ESP"); 14. myserial.print("at+cipsend="); 15. myserial.print(panjang); 16. myserial.print("\r\n"); 17. delay(200); 18. Serial.println("3. Eksekusi URL"); 19. myserial.print(url); 20. Serial.println(url); 21. delay(200); 22. } 4. The test results of sending SMS to different destination provider with GSM Shield SIM900A series to different destination numbers. No Table 5.5: Result of Send SMS to Different Number Send SMS Provider (seconds) (Recieve) 1 2 Simpati 2 4 Mentari 3 4 Indosat IM3 Conclusion: The best provider used to be sent is Simpati. Source code checks the patient's situation: 1.if (suhu >= batassuhu suhu <= batasbawahsuhu jantung >= batasatasjantung jantung <= batasbawahjantung ) { 2. Serial.println ("Status: Keadaan Berbahaya"); 3. if (pengiriman == 0) { 4. SendMessage();

10 30 5. pengiriman = 1; 6. } 7. } else { 8. pengiriman = 0; 9. Serial.println("Status: Normal"); 10. } Source code sends SMS to destination number if patient condition is not normal: 11. void SendMessage() 12. { 13. Serial.println ("Sending Message..."); 14. Serial3.println("AT+CMGF=1"); //Sets the GSM Module in Text Mode 15. delay(1000); 16. //Serial.println ("Set SMS Number"); 17. Serial3.println("AT+CMGS=\"" + nomor + "\"\r"); //Mobile phone number to send message 18. delay(1000); 19. //Serial.println ("Set SMS Content"); 20. String datasuhu; 21. datasuhu = String(suhu); 22. String SMS = "Pasien 1: Tercy, Status: Berbahaya, Suhu: " + datasuhu + " Celcius, " + " Jantung: " + jantung + " BPM"; 23. Serial.println(var[3]); 24. Serial3.println(SMS); 25. delay(100); 26. Serial3.println((char)26);// ASCII code of CTRL+Z 27. delay(1000); 28. //Serial.println ("Message has been sent ->SMS Selesai dikirim"); } 5. Result of system trial on the hosting server: Table 5.6: Result of Server System. No System Response 1 Login Doctor Success 2 Show Patient s Data Success 3 Show State Patient s Data Success 4 Alarm on when patient s condition abnormal Success

11 31 5 Login Admin Success 6 Input Patient s Data Success 7 Input Doctor s Data Success 8 Input Doctor s in Charge Data Success 9 Input Patient s Handler Success 10 Show Patient s Data Success 11 Show Doctor s Data Success 12 Show Doctor s in Charge Success Data 13 Show Patient s Handler Data Success 14 Open system without login Failed Conclusion: This system already good to use Performance Testing The testing of the time of delivery of 10 data, 100 data, 1000 data at once, then do the testing time of acceptance and acceptance of data and how the amount of incoming data on the hosting server and thingspeak server. The results of the experiment are:

12 32 Illustration 5.5: Send 10 Data to Hosting Server Illustration 5.6: Result of send 10 data to hosting server

13 33 Illustration 5.7: Send 100 Data to Hosting Server Illustration 5.8: Result of send 100 data to hosting server

14 34 Illustration 5.9: Send 1000 Data to Hosting Server Illustration 5.10: Result of send 1000 data to hosting server(1)

15 35 Illustration 5.11: Result of send 1000 data to hosting server(2) Illustration 5.12: Send 10 Data to Thingspeak Server

16 36 Illustration 5.13: Result of send 10 Data to Thingspeak Server Illustration 5.14: Send 100 Data to Thingspeak Server

17 37 Illustration 5.15: Result of send 100 Data to Thingspeak Server Illustration 5.16: Send 1000 Data to Thingspeak Server

18 38 Illustration 5.17: Result of send 1000 Data to Thingspeak Server Table 5.7: Send Directly Data Simultaneously to Thingspeak Server. No Send Data Data Send Data Received Result (Data (second) (second) Received) 1 10 data data data data data data Conclusion: The thingspeak server only can accept 1 data per 15 seconds. Table 5.8: Send Directly Data Simultaneously to Hosting Server. No Send Data Data Send Data Received Result (Data (second) (second) Received) 1 10 data data data data data data Conclusion: The hosting server only can accept 1 data within a period of

19 to 2 seconds Perceptional testing Has done the division of questionnaire and answer 10 respondents to testing the body temperature sensor series MLX90614 and heartbeat sensor series MAX30100 that has been done. The result is the following: Table 5.9: Respondents answer about questionnaire NO DESKRIPSI TANGGAPAN YA TIDAK 1 Jari tangan yang ditempelkan pada sensor detak jantung nyaman? 100% 0% 2 Apakah alat pendeteksi detak jantung mempunyai bentuk yang cocok pada jari? 60% 40% 3 Apakah alat pendeteksi detak jantung memliki kelemahan? 50% 50% 4 Apakah alat pendeteksi detak jantung tidak menghantarkan aliran listrik dijari? 5 Apakah alat pendeteksi detak jantung ini memancarkan sinar yang membuat mata silau? 6 Apakah alat pendeteksi suhu tubuh cocok digunakan untuk masa depan? 7 Apakah alat pendeteksi suhu tubuh ini tergolong praktis tanpa sentuhan langsung? 70% 30% 60% 40% 80% 20% 60% 40% 8 Apakah alat pendeteksi suhu tubuh ini memiliki kelemahan? 40% 60% 9 Apakah ukuran alat pendeteksi suhu tubuh kecil? 80% 20% 10 Apakah alat pendeteksi suhu tubuh memancarkan inframerah yang tidak terlihat oleh mata? 80% 20% Conclusion: Based on the respondent answer sensors MAX30100 suitable for use as a heart rate sensor and sensor MLX90614 is also suitable for use as a body

20 temperature sensor. 40

An IoT Based Real-Time Environmental Monitoring System Using Arduino and Cloud Service

An IoT Based Real-Time Environmental Monitoring System Using Arduino and Cloud Service Engineering, Technology & Applied Science Research Vol. 8, No. 4, 2018, 3238-3242 3238 An IoT Based Real-Time Environmental Monitoring System Using Arduino and Cloud Service Saima Zafar Emerging Sciences,

More information

VMA205 WIFI ESP8266 SHIELD

VMA205 WIFI ESP8266 SHIELD WIFI ESP8266 SHIELD USER MANUAL USER MANUAL 1. Introduction To all residents of the European Union Important environmental information about this product This symbol on the device or the package indicates

More information

GetTutorialized Workshops Brochure-2017

GetTutorialized Workshops Brochure-2017 GetTutorialized Workshops Brochure-2017 Internet of Things with Arduino Workshop course Content: 1. Introduction to Internet of Things 2. Introduction to Microcontrollers and Microprocessors 3. Microcontrollers

More information

DESCRIPTION DOCUMENT FOR WIFI / BT HEAVY DUTY RELAY BOARD HARDWARE REVISION 0.1

DESCRIPTION DOCUMENT FOR WIFI / BT HEAVY DUTY RELAY BOARD HARDWARE REVISION 0.1 DESCRIPTION DOCUMENT FOR WIFI / BT HEAVY DUTY RELAY BOARD HARDWARE REVISION 0.1 Department Name Signature Date Author Reviewer Approver Revision History Rev Description of Change A Initial Release Effective

More information

CHAPTER 4 ANALYSIS AND DESIGN

CHAPTER 4 ANALYSIS AND DESIGN CHAPTER 4 ANALYSIS AND DESIGN 4.1 General Explanation This chapter discusses the five main parts of the Fire Detection project in detail: 1. Fire detection part. 2. The location determination part (GPS

More information

DESCRIPTION DOCUMENT FOR WIFI SINGLE DIMMER ONE AMPERE BOARD HARDWARE REVISION 0.3

DESCRIPTION DOCUMENT FOR WIFI SINGLE DIMMER ONE AMPERE BOARD HARDWARE REVISION 0.3 DOCUMENT NAME: DESIGN DESCRIPTION, WIFI SINGLE DIMMER BOARD DESCRIPTION DOCUMENT FOR WIFI SINGLE DIMMER ONE AMPERE BOARD HARDWARE REVISION 0.3 Department Name Signature Date Author Reviewer Approver Revision

More information

IoT based Heart Attack Detection, Heart Rate and Temperature Monitor

IoT based Heart Attack Detection, Heart Rate and Temperature Monitor IoT based Heart Attack Detection, Heart Rate and Temperature Monitor Gowrishankar S., PhD Professor Department of CSE B.M.S. College of Engineering Prachita M. Y. Student Department of CSE B.M.S. College

More information

Monitoring System Heartbeat and Body Temperature Using Raspberry Pi

Monitoring System Heartbeat and Body Temperature Using Raspberry Pi E3S Web of Conferences 73, 123 (218) https://doi.org/1.151/e3sconf/21873123 ICENIS 218 Monitoring System Heartbeat and Body Temperature Using Raspberry Pi Tan Suryani Sollu 1, *, Alamsyah 1, Muhammad Bachtiar

More information

GSM BASED PATIENT MONITORING SYSTEM

GSM BASED PATIENT MONITORING SYSTEM GSM BASED PATIENT MONITORING SYSTEM ABSTRACT This project deals with the monitoring of the patient parameters such as humidity, temperature and heartbeat. Here we have designed a microcontroller based

More information

IMPLEMENTATION OF ACCELEROMETER SENSOR AND GPS MODULE FOR SMART BIKE DESIGN

IMPLEMENTATION OF ACCELEROMETER SENSOR AND GPS MODULE FOR SMART BIKE DESIGN 299 IMPLEMENTATION OF ACCELEROMETER SENSOR AND GPS MODULE FOR SMART BIKE DESIGN Faisal Alfaeru a, Aries Boedi Setiawan a, Nachrowi a,rachmat Hidayat S.* a aelectrical Engineering Department, University

More information

Internet of Things (Winter Training Program) 6 Weeks/45 Days

Internet of Things (Winter Training Program) 6 Weeks/45 Days (Winter Training Program) 6 Weeks/45 Days PRESENTED BY RoboSpecies Technologies Pvt. Ltd. Office: W-53g, Sec- 11, Noida, UP Contact us: Email: stp@robospecies.com Website: www.robospecies.com Office: +91-120-4245860

More information

Lesson 3: Arduino. Goals

Lesson 3: Arduino. Goals Introduction: This project introduces you to the wonderful world of Arduino and how to program physical devices. In this lesson you will learn how to write code and make an LED flash. Goals 1 - Get to

More information

Android Mobile Application for Heart Rate Measurement and Monitoring

Android Mobile Application for Heart Rate Measurement and Monitoring IOP Conference Series: Materials Science and Engineering PAPER OPEN ACCESS Android Mobile Application for Heart Rate Measurement and Monitoring To cite this article: A I S Hamdani et al 2018 IOP Conf.

More information

GSM based Patient monitoring system

GSM based Patient monitoring system For more Project details visit: http://www.projectsof8051.com/patient-monitoring-through-gsm-modem/ Code Project Title 1615 GSM based Patient monitoring system Synopsis for GSM based Patient monitoring

More information

ZX Distance and Gesture Sensor Hookup Guide

ZX Distance and Gesture Sensor Hookup Guide Page 1 of 13 ZX Distance and Gesture Sensor Hookup Guide Introduction The ZX Distance and Gesture Sensor is a collaboration product with XYZ Interactive. The very smart people at XYZ Interactive have created

More information

Arduino Microcontroller Processing for Everyone!: Third Edition / Steven F. Barrett

Arduino Microcontroller Processing for Everyone!: Third Edition / Steven F. Barrett Arduino Microcontroller Processing for Everyone!: Third Edition / Steven F. Barrett Anatomy of a Program Programs written for a microcontroller have a fairly repeatable format. Slight variations exist

More information

TWEAK THE ARDUINO LOGO

TWEAK THE ARDUINO LOGO TWEAK THE ARDUINO LOGO Using serial communication, you'll use your Arduino to control a program on your computer Discover : serial communication with a computer program, Processing Time : 45 minutes Level

More information

Design and implementation of GSM based and PID assisted speed control of DC motor

Design and implementation of GSM based and PID assisted speed control of DC motor Design and implementation of GSM based and PID assisted speed control of DC motor Prithviraj Shetti 1, Shital S. Bhosale 2, Amrut Ubare 3 Lecturer, Dept. of ECE, Ashokrao Mane Polytechnic, Wathar, Kolhapur-416

More information

ARDUINO BASED WATER LEVEL MONITOR- ING AND CONTROL VIA CAN BUS TUAN ABU BAKAR BIN TUAN ISMAIL UNIVERSITI MALAYSIA PAHANG

ARDUINO BASED WATER LEVEL MONITOR- ING AND CONTROL VIA CAN BUS TUAN ABU BAKAR BIN TUAN ISMAIL UNIVERSITI MALAYSIA PAHANG ARDUINO BASED WATER LEVEL MONITOR- ING AND CONTROL VIA CAN BUS TUAN ABU BAKAR BIN TUAN ISMAIL UNIVERSITI MALAYSIA PAHANG ARDUINO BASED WATER LEVEL MONITORING AND CONTROL VIA CAN BUS TUAN ABU BAKAR BIN

More information

Understanding the Arduino to LabVIEW Interface

Understanding the Arduino to LabVIEW Interface E-122 Design II Understanding the Arduino to LabVIEW Interface Overview The Arduino microcontroller introduced in Design I will be used as a LabVIEW data acquisition (DAQ) device/controller for Experiments

More information

HUMAN BODY MONITORING SYSTEM USING WSN WITH GSM AND GPS

HUMAN BODY MONITORING SYSTEM USING WSN WITH GSM AND GPS HUMAN BODY MONITORING SYSTEM USING WSN WITH GSM AND GPS Mr. Sunil L. Rahane Department of E & TC Amrutvahini College of Engineering Sangmaner, India Prof. Ramesh S. Pawase Department of E & TC Amrutvahini

More information

Unit D. Serial Interfaces. Serial vs. Parallel. Serial Interfaces. Serial Communications

Unit D. Serial Interfaces. Serial vs. Parallel. Serial Interfaces. Serial Communications D.1 Serial Interfaces D.2 Unit D Embedded systems often use a serial interface to communicate with other devices. Serial implies that it sends or receives one bit at a time. Serial Communications Serial

More information

medlab Two Channel Invasive Blood Pressure OEM board EG 02000

medlab Two Channel Invasive Blood Pressure OEM board EG 02000 medlab Two Channel Invasive Blood Pressure OEM board EG 02000 Technical Manual Copyright Medlab 2003-2014 1 Version 2.02 01.04.2014 Contents: Mechanical dimensions, overview 3 Specifications 5 Connector

More information

THERMAL ANALYSIS OF H.V INSULATION OIL DURING PARTIAL DISCHARGE DETECTION RASOOL ABDELFADIL GATEA UNIVERSITI TEKNOLOGI MALAYSIA

THERMAL ANALYSIS OF H.V INSULATION OIL DURING PARTIAL DISCHARGE DETECTION RASOOL ABDELFADIL GATEA UNIVERSITI TEKNOLOGI MALAYSIA 1 THERMAL ANALYSIS OF H.V INSULATION OIL DURING PARTIAL DISCHARGE DETECTION RASOOL ABDELFADIL GATEA UNIVERSITI TEKNOLOGI MALAYSIA 4 THERMAL ANALYSIS OF H.V INSULATION OIL DURING PARTIAL DISCHARGE DETECTION

More information

DFRduino Romeo All in one Controller V1.1(SKU:DFR0004)

DFRduino Romeo All in one Controller V1.1(SKU:DFR0004) DFRduino Romeo All in one Controller V1.1(SKU:DFR0004) DFRduino RoMeo V1.1 Contents 1 Introduction 2 Specification 3 DFRduino RoMeo Pinout 4 Before you start 4.1 Applying Power 4.2 Software 5 Romeo Configuration

More information

Arduino and Nagios integration for monitoring

Arduino and Nagios integration for monitoring Arduino and Nagios integration for monitoring V Fernández, A Pazos, J Saborido and M Seco Instituto Galego de Física de Altas Enerxías (IGFAE), Universidad de Santiago de Compostela, Santiago de Compostela,

More information

Development of a Real Time Trains Monitoring System:Case Study of Tanzania Zambia Railway Authority

Development of a Real Time Trains Monitoring System:Case Study of Tanzania Zambia Railway Authority ZAMBIA INFORMATION COMMUNICATION TECHNOLOGY (ICT) JOURNAL Volume 1 (Issue 1) (2017) Pages 25-29 Development of a Real Time Trains Monitoring System:Case Study of Tanzania Zambia Railway Authority Prof.

More information

IoT based Health Monitoring System for Elderly People

IoT based Health Monitoring System for Elderly People IoT based Health Monitoring System for Elderly People Submission Date: 18 th April 2017 Mohammed Fathe Mubin (13101216) Faysal Ahmed (13101225) Md. Rafiul Islam (13101172) Department of Computer Science

More information

APDS-9960 RGB and Gesture Sensor Hookup Guide

APDS-9960 RGB and Gesture Sensor Hookup Guide Page 1 of 12 APDS-9960 RGB and Gesture Sensor Hookup Guide Introduction Touchless gestures are the new frontier in the world of human-machine interfaces. By swiping your hand over a sensor, you can control

More information

JOURNAL OF ADVANCEMENT IN ENGINEERING AND TECHNOLOGY

JOURNAL OF ADVANCEMENT IN ENGINEERING AND TECHNOLOGY Research Article JOURNAL OF ADVANCEMENT IN ENGINEERING AND TECHNOLOGY Journal homepage: http://scienceq.org/journals/jaet.php Development of a GSM Based Health Monitoring System for Elderly People Ahmed

More information

GNSS 5 click PID: MIKROE Weight: 30 g

GNSS 5 click PID: MIKROE Weight: 30 g GNSS 5 click PID: MIKROE-2670 Weight: 30 g Determine your current position with GNSS 5 click. It carries the NEO M8N GNSS receiver module from u blox. GNSS 5 click is designed to run on a 3.3V power supply.

More information

ISSN: [Singh* et al., 6(6): June, 2017] Impact Factor: 4.116

ISSN: [Singh* et al., 6(6): June, 2017] Impact Factor: 4.116 IJESRT INTERNATIONAL JOURNAL OF ENGINEERING SCIENCES & RESEARCH TECHNOLOGY WORKING, OPERATION AND TYPES OF ARDUINO MICROCONTROLLER Bhupender Singh, Manisha Verma Assistant Professor, Electrical Department,

More information

EGG 101L INTRODUCTION TO ENGINEERING EXPERIENCE

EGG 101L INTRODUCTION TO ENGINEERING EXPERIENCE EGG 101L INTRODUCTION TO ENGINEERING EXPERIENCE LABORATORY 7: IR SENSORS AND DISTANCE DEPARTMENT OF ELECTRICAL AND COMPUTER ENGINEERING UNIVERSITY OF NEVADA, LAS VEGAS GOAL: This section will introduce

More information

An IoT based Remote HRV Monitoring System for Hypertensive Patients

An IoT based Remote HRV Monitoring System for Hypertensive Patients An IoT based Remote HRV Monitoring System for Hypertensive Patients M.Chandana 1, S.P Siva Reddy 2, N.Niranjan Reddy 3, C.Dharma Teja 4, M.Roshini 5 1234 Student, Dept. Of Computer Science & Engineering,

More information

Monitoring and Protection of Distribution Transformer Using GSM Module Jenifer A 1, Bharathi B R 2, Shanthi Mounika B 3

Monitoring and Protection of Distribution Transformer Using GSM Module Jenifer A 1, Bharathi B R 2, Shanthi Mounika B 3 RESEARCH ARTICLE International Journal of Engineering and Techniques - Volume 4 Issue 1, Jan Feb 2018 Monitoring and Protection of Distribution Transformer Using GSM Module Jenifer A 1, Bharathi B R 2,

More information

Features Ÿ Ÿ Ÿ Ÿ Ÿ Ÿ Ÿ Ÿ Ÿ

Features Ÿ Ÿ Ÿ Ÿ Ÿ Ÿ Ÿ Ÿ Ÿ FTLAB DESCRIPTION Features Solid state sensor : sensitive PIN Photodiode 10pc Sensitivity : 12cpm/μSv/h Measurement Range : 0.01 ~ 200μSv/h Linearity error : ±5% up to 100μSv/h Calibration free Supply

More information

GNSS 5 click PID: MIKROE-2670

GNSS 5 click PID: MIKROE-2670 GNSS 5 click PID: MIKROE-2670 Determine your current position with GNSS 5 click. It carries the NEO- M8N GNSS receiver module from u-blox. GNSS 5 click is designed to run on a 3.3V power supply. The click

More information

Real Time Transformer Health Monitoring System using IOT

Real Time Transformer Health Monitoring System using IOT Real Time Transformer Health Monitoring System using IOT D.Sarathkumar, Uvaraj.M, Kabilesh Kumar C V, Kalaiselvi A Assistant Professor, Department of Electrical and Electronics Engineering, 4 Kongu Engineering

More information

Wireless Heartbeat Monitoring System Using Android

Wireless Heartbeat Monitoring System Using Android Wireless Heartbeat Monitoring System Using Android ANITHA.A 1, SUDHARSHAN BANAKAR 2, TEJASHWINI A. I. 3 1,2 Department of ECE, Rao Bahadur Y Mahabaleshwarappa Engineering College, Ballari, India 3 Dept

More information

PIR Motion Detector Experiment. In today s crime infested society, security systems have become a much more

PIR Motion Detector Experiment. In today s crime infested society, security systems have become a much more PIR Motion Detector Experiment I. Rationale In today s crime infested society, security systems have become a much more necessary and sought out addition to homes or stores. Motion detectors provide a

More information

Total Hours Registration through Website or for further details please visit (Refer Upcoming Events Section)

Total Hours Registration through Website or for further details please visit   (Refer Upcoming Events Section) Total Hours 110-150 Registration Q R Code Registration through Website or for further details please visit http://www.rknec.edu/ (Refer Upcoming Events Section) Module 1: Basics of Microprocessor & Microcontroller

More information

BlinkRC User Manual. 21 December Hardware Version 1.1. Manual Version 2.0. Copyright 2010, Blink Gear LLC. All rights reserved.

BlinkRC User Manual. 21 December Hardware Version 1.1. Manual Version 2.0. Copyright 2010, Blink Gear LLC. All rights reserved. BlinkRC 802.11b/g WiFi Servo Controller with Analog Feedback BlinkRC User Manual 21 December 2010 Hardware Version 1.1 Manual Version 2.0 Copyright 2010, Blink Gear LLC. All rights reserved. http://blinkgear.com

More information

Experiment 5.B. Multifunction Wireless Control. ECEN 2270 Electronics Design Laboratory 1

Experiment 5.B. Multifunction Wireless Control. ECEN 2270 Electronics Design Laboratory 1 .B Multifunction Wireless Control Electronics Design Laboratory 1 Procedures 5.B.0 5.B.1 5.B.2 5.B.3 5.B.4 Turn in your pre-lab before doing anything else. Check that Part A is in working order Wirelessly

More information

Coal Dust Controller on Indramayu Power Plants Conveyor Lane Based IoT

Coal Dust Controller on Indramayu Power Plants Conveyor Lane Based IoT Journal of Telematics and Informatics (JTI) Vol.6, No.1, March 2018, pp. 21~26 ISSN: 2303-3703 21 Coal Dust Controller on Indramayu Power Plants Conveyor Lane Based IoT Reza Yoga Diputra, Arief Marwanto,

More information

Robotics & Embedded Systems (Summer Training Program) 4 Weeks/30 Days

Robotics & Embedded Systems (Summer Training Program) 4 Weeks/30 Days (Summer Training Program) 4 Weeks/30 Days PRESENTED BY RoboSpecies Technologies Pvt. Ltd. Office: D-66, First Floor, Sector- 07, Noida, UP Contact us: Email: stp@robospecies.com Website: www.robospecies.com

More information

Welcome to Arduino Day 2016

Welcome to Arduino Day 2016 Welcome to Arduino Day 2016 An Intro to Arduino From Zero to Hero in an Hour! Paul Court (aka @Courty) Welcome to the SLMS Arduino Day 2016 Arduino / Genuino?! What?? Part 1 Intro Quick Look at the Uno

More information

1 P a g e A n I S O 9 0 0 1-2 0 0 8 C e r t i f i e d C o m p a n y Digital Heart Beat Sensor This heart beat sensor is designed to give digital output of heart beat when a finger is placed on it. When

More information

Cloud Based LightSwitch Edgar Lopez Garcia Professor Kastner CSE 145 Spring 2016

Cloud Based LightSwitch Edgar Lopez Garcia Professor Kastner CSE 145 Spring 2016 Cloud Based LightSwitch Edgar Lopez Garcia Professor Kastner CSE 145 Spring 2016 Abstract This paper discusses the research, implementation, and contributions achieved from the Cloud Based LightSwitch

More information

SMART GARBAGE BIN SYSTEM

SMART GARBAGE BIN SYSTEM International Journal of Computer Engineering & Technology (IJCET) Volume 9, Issue 6, November-December 2018, pp. 155 166, Article ID: IJCET_09_06_017 Available online at http://www.iaeme.com/ijcet/issues.asp?jtype=ijcet&vtype=9&itype=6

More information

LaserPING Rangefinder Module (#28041)

LaserPING Rangefinder Module (#28041) Web Site: www.parallax.com Forums: forums.parallax.com Sales: sales@parallax.com Technical:support@parallax.com Office: (916) 624-8333 Fax: (916) 624-8003 Sales: (888) 512-1024 Tech Support: (888) 997-8267

More information

Dynamic Wireless Decorative Lights

Dynamic Wireless Decorative Lights Dynamic Wireless Decorative Lights John W. Peterson March 6 th, 2008 Updated August 2014 Overview Strings of holiday lights add a nice accent to indoor and outdoor spaces. Many businesses use them to create

More information

Smart Garden Inc. Auto Watering System

Smart Garden Inc. Auto Watering System Smart Garden Inc. Auto Watering System Outline Team members Video Introduction Schedule Finance Overview of system Hardware design Firmware design Encloser design Web design Future plan Conclusion Team

More information

WifiBotics. An Arduino Based Robotics Workshop

WifiBotics. An Arduino Based Robotics Workshop WifiBotics An Arduino Based Robotics Workshop WifiBotics is the workshop designed by RoboKart group pioneers in this field way back in 2014 and copied by many competitors. This workshop is based on the

More information

IOT BASED AUTOMATIC VEHICLE ACCIDENT DETECTIONANDRESCUE INFORMATION SYSTEM

IOT BASED AUTOMATIC VEHICLE ACCIDENT DETECTIONANDRESCUE INFORMATION SYSTEM IOT BASED AUTOMATIC VEHICLE ACCIDENT DETECTIONANDRESCUE INFORMATION SYSTEM Supriya 1, Ajayakumar Gooli 2, Harshitha.R 3, Harshitha S 4, Dilip Chandra E 5 12345 Electronics and Communication Engineering,

More information

Functional Specification for Wireless Ultrasonic Waterflow Monitoring System Project Team: Timbo Yuen Eric Lo Ehsan Arman Ye Lin Babak Razzaghi

Functional Specification for Wireless Ultrasonic Waterflow Monitoring System Project Team: Timbo Yuen Eric Lo Ehsan Arman Ye Lin Babak Razzaghi Functional Specification for Wireless Ultrasonic Project Team: Timbo Yuen Eric Lo Ehsan Arman Ye Lin Babak Razzaghi Contact Person: Ehsan Arman eaa14@sfu.ca Submitted to: Dr. Andrew Rawicz ENSC 440 Steve

More information

DASL 120 Introduction to Microcontrollers

DASL 120 Introduction to Microcontrollers DASL 120 Introduction to Microcontrollers Lecture 2 Introduction to 8-bit Microcontrollers Introduction to 8-bit Microcontrollers Introduction to 8-bit Microcontrollers Introduction to Atmel Atmega328

More information

GPS Vehicle tracker. GT06F User Manual (Version V1.1)

GPS Vehicle tracker. GT06F User Manual (Version V1.1) GPS Vehicle tracker GT06F User Manual (Version V1.1) This user manual has been specially designed to guide you through the functions and features of your GPS vehicle tracker. 1.Start Guide 1.1 Accessories

More information

Smart Monitoring and Power Factor Correction of Distribution Transformer using IOT

Smart Monitoring and Power Factor Correction of Distribution Transformer using IOT GRD Journals Global Research and Development Journal for Engineering National Conference on Emerging Research Trend in Electrical and Electronics Engineering (ERTEE-2018) March 2018 e-issn: 2455-5703 Smart

More information

ECONOMICAL HEART RATE MEASUREMENT DEVICE WITH REMOTE MONITORING USING FINGERTIP

ECONOMICAL HEART RATE MEASUREMENT DEVICE WITH REMOTE MONITORING USING FINGERTIP ECONOMICAL HEART RATE MEASUREMENT DEVICE WITH REMOTE MONITORING USING FINGERTIP PROJECT REFERENCE NO. : 37S1390 COLLEGE : SRI SIDDHARTHA INSTITUTE OF TECHNOLOGY, TUMKUR. BRANCH : TELECOMMUNICATION ENGINEERING

More information

Wireless Sensor Network for Intra-Venous Fluid Level Indicator Application

Wireless Sensor Network for Intra-Venous Fluid Level Indicator Application Wireless Sensor Network for Intra-Venous Fluid Level Indicator Application Abstract Wireless sensor networks use small, low-cost embedded devices for a wide range of applications such as industrial data

More information

EM Arduino 4-20mA Shield Documentation. Version 1.5.0

EM Arduino 4-20mA Shield Documentation. Version 1.5.0 EM Arduino 4-20mA Shield Documentation Version 1.5.0 Erdos Miller October 22, 2014 1 Contents 1 Power... 3 2 Connecting Sensors... 3 3 Scaling ADC Readings to Current in ma... 4 4 Using with a 3.3V Arduino...

More information

USER MANUAL SERIAL IR SENSOR ARRAY5

USER MANUAL SERIAL IR SENSOR ARRAY5 USER MANUAL SERIAL IR SENSOR ARRAY5 25mm (Serial Communication Based Automatic Line Position Detection Sensor using 5 TCRT5000 IR sensors) Description: You can now build a line follower robot without writing

More information

LED Driver 5 click. PID: MIKROE 3297 Weight: 25 g

LED Driver 5 click. PID: MIKROE 3297 Weight: 25 g LED Driver 5 click PID: MIKROE 3297 Weight: 25 g LED Driver 5 click is a Click board capable of driving an array of high-power LEDs with constant current, up to 1.5A. This Click board features the TPS54200,

More information

Weighing Type Rain Gauge with Weather Monitoring System

Weighing Type Rain Gauge with Weather Monitoring System Weighing Type Rain Gauge with Weather Monitoring System Rajkumar.R 1, Prof.Vanmathi.C 2 1, 2 School of Information Technology and Engineering, Vellore Institute of Technology, Vellore, Tamil Nadu, India

More information

EE-110 Introduction to Engineering & Laboratory Experience Saeid Rahimi, Ph.D. Labs Introduction to Arduino

EE-110 Introduction to Engineering & Laboratory Experience Saeid Rahimi, Ph.D. Labs Introduction to Arduino EE-110 Introduction to Engineering & Laboratory Experience Saeid Rahimi, Ph.D. Labs 10-11 Introduction to Arduino In this lab we will introduce the idea of using a microcontroller as a tool for controlling

More information

Arduino Digital Out_QUICK RECAP

Arduino Digital Out_QUICK RECAP Arduino Digital Out_QUICK RECAP BLINK File> Examples>Digital>Blink int ledpin = 13; // LED connected to digital pin 13 // The setup() method runs once, when the sketch starts void setup() // initialize

More information

ROBOTICS & IOT. Workshop Module

ROBOTICS & IOT. Workshop Module ROBOTICS & IOT Workshop Module CURRICULUM STRUCTURE DURATION : 2 day (16 hours) Session 1 Let's Learn Embedded System & Robotics Description Under this topic, we will discuss basics and give brief idea

More information

ROBOTICS & IOT. Workshop Module

ROBOTICS & IOT. Workshop Module ROBOTICS & IOT Workshop Module CURRICULUM STRUCTURE DURATION : 2 day (16 hours) Session 1 Let's Learn Embedded System & Robotics Description Under this topic, we will discuss basics and give brief idea

More information

IoT Based Base Transceiver Station Health Monitoring for Smart Mobile Communication System

IoT Based Base Transceiver Station Health Monitoring for Smart Mobile Communication System IoT Based Base Transceiver Station Health Monitoring for Smart Mobile Communication System 1 G.Lavanya, 2 Dr.M.Shanmuga Priya, 3 Dr.M.A.Bhagyaveni 1 Department of ECE, College of Engineering Guindy Anna

More information

RY836AI. High Performance GPS & Glonass / GPS & BeiDou Parallel mode antenna module with Compass, Gyroscope, Accelerometer, Pressure Sensor.

RY836AI. High Performance GPS & Glonass / GPS & BeiDou Parallel mode antenna module with Compass, Gyroscope, Accelerometer, Pressure Sensor. 27-OCT-2017 56312E31 High Performance GPS & Glonass / GPS & BeiDou Parallel mode antenna module with Compass, Gyroscope, Accelerometer, Pressure Sensor Datasheet PRODUCT DESCRIPTION The REYAX GNSS receiver

More information

Touch Potentiometer Hookup Guide

Touch Potentiometer Hookup Guide Page 1 of 14 Touch Potentiometer Hookup Guide Introduction The Touch Potentiometer, or Touch Pot for short, is an intelligent, linear capacitive touch sensor that implements potentiometer functionality

More information

Serial Servo Controller

Serial Servo Controller Document : Datasheet Model # : ROB - 1185 Date : 16-Mar -07 Serial Servo Controller - USART/I 2 C with ADC Rhydo Technologies (P) Ltd. (An ISO 9001:2008 Certified R&D Company) Golden Plaza, Chitoor Road,

More information

Arduino and Servo Motor

Arduino and Servo Motor Arduino and Servo Motor 1. Basics of the Arduino Board and Arduino a. Arduino is a mini computer that can input and output data using the digital and analog pins b. Arduino Shield: mounts on top of Arduino

More information

BEYOND TOYS. Wireless sensor extension pack. Tom Frissen s

BEYOND TOYS. Wireless sensor extension pack. Tom Frissen s LEGO BEYOND TOYS Wireless sensor extension pack Tom Frissen s040915 t.e.l.n.frissen@student.tue.nl December 2008 Faculty of Industrial Design Eindhoven University of Technology 1 2 TABLE OF CONTENT CLASS

More information

RELAY AND HIGH VOLTAGE LAB MANUALS EBOOK

RELAY AND HIGH VOLTAGE LAB MANUALS EBOOK 02 May, 2018 RELAY AND HIGH VOLTAGE LAB MANUALS EBOOK Document Filetype: PDF 197.76 KB 0 RELAY AND HIGH VOLTAGE LAB MANUALS EBOOK High Voltage Circuits (1) History. 2N2222 555 IC 555 timer 8085 lab manual

More information

Patient Monitoring System Using LabVIEW

Patient Monitoring System Using LabVIEW International Journal of Emerging Technology in Computer Science & Electronics (IJETCSE) ISSN: 0976-1353 Volume 24 Issue 4 MARCH 2017. Patient Monitoring System Using LabVIEW Mohanraj T #1 and Keshore

More information

Soldier Tracking and Health Indication System Using ARM7 LPC-2148

Soldier Tracking and Health Indication System Using ARM7 LPC-2148 Soldier Tracking and Health Indication System Using ARM7 LPC-2148 Shraddha Mahale, Ekta Bari, Kajal Jha Mechanism under Guidance of Prof. Elahi Shaikh (HOD) Electronics Engineering, Mumbai University Email:

More information

Boeing NFC Project Team #43 Shao-Chi Ou Yang James Kim Neil Misak

Boeing NFC Project Team #43 Shao-Chi Ou Yang James Kim Neil Misak Boeing NFC Project Team #43 Shao-Chi Ou Yang James Kim Neil Misak ECE 445-Senior Design Spring 2013 Neil Misak James Kim Shao-Chi Ou Yang Team Members Collaboration with Our 6 team members visited Boeing's

More information

Design of WSN for Environmental Monitoring Using IoT Application

Design of WSN for Environmental Monitoring Using IoT Application Design of WSN for Environmental Monitoring Using IoT Application Sarika Shinde 1, Prof. Venkat N. Ghodke 2 P.G. Student, Department of E and TC Engineering, DPCOE Engineering College, Pune, Maharashtra,

More information

Web Based Smart Real Time Health Care Monitoring and Alert System Using Internet of Things (IOT)

Web Based Smart Real Time Health Care Monitoring and Alert System Using Internet of Things (IOT) RESEARCH ARTICLE OPEN ACCESS Web Based Smart Real Time Health Care Monitoring and Alert System Using Internet of Things (IOT) Sammeta Lalitha [1], Mr.D.Shekar Goud [2] M.Tech Student [1], Assistant Professor

More information

Portland State University MICROCONTROLLERS

Portland State University MICROCONTROLLERS PH-315 MICROCONTROLLERS INTERRUPTS and ACCURATE TIMING I Portland State University OBJECTIVE We aim at becoming familiar with the concept of interrupt, and, through a specific example, learn how to implement

More information

RC-WIFI CONTROLLER USER MANUAL

RC-WIFI CONTROLLER USER MANUAL RC-WIFI CONTROLLER USER MANUAL In the rapidly growing Internet of Things (IoT), applications from personal electronics to industrial machines and sensors are getting wirelessly connected to the Internet.

More information

Embedded & Robotics Training

Embedded & Robotics Training Embedded & Robotics Training WebTek Labs creates and delivers high-impact solutions, enabling our clients to achieve their business goals and enhance their competitiveness. With over 13+ years of experience,

More information

MICROCONTROLLER BASED ULTRASONIC STICK FOR VISUALLY IMPAIRED

MICROCONTROLLER BASED ULTRASONIC STICK FOR VISUALLY IMPAIRED MICROCONTROLLER BASED ULTRASONIC STICK FOR VISUALLY IMPAIRED AN INTERNSHIP REPORT Submitted by CALEB RUBIN S P (2016105022) PRASANTH V (2016105059) THEYANESHWARAN J (2016105075) DIVAKAR M (2016105525)

More information

Accident Sensor with Google Map Locator

Accident Sensor with Google Map Locator IJIRST International Journal for Innovative Research in Science & Technology Volume 2 Issue 10 March 2016 ISSN (online): 2349-6010 Accident Sensor with Google Map Locator Steffie Tom Keval Velip Aparna

More information

Carbon Dioxide (Tiny CO2) Gas Sensor. Rev TG400 User Manual

Carbon Dioxide (Tiny CO2) Gas Sensor. Rev TG400 User Manual Carbon Dioxide (Tiny CO2) Gas Sensor Rev. 1.2 TG400 User Manual The TG400 measuring carbon dioxide (chemical formula CO2) is a NDIR (Non-Dispersive Infrared) gas sensor. As it is contactless, it has high

More information

XT-4850C FCC ID: GKM-XT4850C IC: IC: 10281A-XT4850C

XT-4850C FCC ID: GKM-XT4850C IC: IC: 10281A-XT4850C XT-4850C User Guide Model: XT-4850C FCC ID: GKM-XT4850C IC: IC: 10281A-XT4850C Version 2 1 Table of Contents Document Change History... 3 1 Introduction... 4 1.1 Feature Matrix... 4 2 Hardware Description...

More information

RFID Integrated Teacher Monitoring

RFID Integrated Teacher Monitoring RFID Integrated Teacher Monitoring Introduction Article by Adewopo Adeniyi M.Sc, Texila American University, Nigeria Email: preciousadewopon@yahoo.com Radio Frequency Identification (RFID) is a generic

More information

BOAT LOCALIZATION AND WARNING SYSTEM FOR BORDER IDENTIFICATION

BOAT LOCALIZATION AND WARNING SYSTEM FOR BORDER IDENTIFICATION BOAT LOCALIZATION AND WARNING SYSTEM FOR BORDER IDENTIFICATION Mr.Vasudevan, Ms.Aarthi.C, Ms.Arunthathi.M, Ms.Durgakalaimathi.L.T, Ms.Evangelin Darvia.P 1Professor, Dept. of ECE, Panimalar Engineering

More information

Shenzhen ATC Technology CO.,LTD ATC. A-1 Serial Remote I/O Module. User Manual. V1.13 Edit:2018/01/

Shenzhen ATC Technology CO.,LTD ATC. A-1 Serial Remote I/O Module. User Manual. V1.13 Edit:2018/01/ ATC A-1 Serial Remote I/O Module User Manual V1.13 Edit:2018/01/30-1 - Catalogue 1.The introduction of Modbus protocol...- 3-1.1 Modbus protocol master-slave response process... - 3-1.2 Modbus register

More information

USING ARDUINO AND WIFI WITH RSSI TO CONTROL LED: AN IOT BASED APPROACH

USING ARDUINO AND WIFI WITH RSSI TO CONTROL LED: AN IOT BASED APPROACH USING ARDUINO AND WIFI WITH RSSI TO CONTROL LED: AN IOT BASED APPROACH Rahul Raikwar, Dr. V.K. Pachghare Teaching and Research Assistant, Department of Computer Engineering Associate Professor, Department

More information

M.A.D. Dog. Nicholas Maddy Timothy Dayley Kevin Liou. ECE 189, 2013 UC Santa Barbara Mobile Area Defense

M.A.D. Dog. Nicholas Maddy Timothy Dayley Kevin Liou. ECE 189, 2013 UC Santa Barbara Mobile Area Defense Mobile Area Defense Nicholas Maddy Timothy Dayley Kevin Liou ECE 189, 2013 UC Santa Barbara 1 24 Table Of Contents Page Introduction... 3 Controls, Indicators, and Interconnects... 4 Device Description...

More information

Harris IRT Enterprises Multi-Channel Digital Resistance Tester Model XR

Harris IRT Enterprises Multi-Channel Digital Resistance Tester Model XR Harris IRT Enterprises Multi-Channel Digital Resistance Tester Model 6012-06XR Specifications & Dimensions 2 Theory of Operation 3 System Block Diagram 4 Operator Controls & Connectors 5 Test Connections

More information

Bluetooth Based IOT through Arduino

Bluetooth Based IOT through Arduino 1 Bluetooth Based IOT through Arduino G V V Sharma Fig. 1: Breadboard 1 Measuring the resistance Problem 1. Connect the 5V pin of the Arduino to an extreme pin of the Breadboard shown in Fig. 1. Let this

More information

Controlling LED Smartphone using Arduino

Controlling LED Smartphone using Arduino ISSN(Online) : 9-875 ISSN (Print) : 7-670 (An ISO 97: 007 Certified Organization) Vol. 6, Issue 7, July 07 Controlling LED Smartphone using Arduino and Wifi with RSSI Rahul Raikwar Teaching and Research

More information

HAW-Arduino. Sensors and Arduino F. Schubert HAW - Arduino 1

HAW-Arduino. Sensors and Arduino F. Schubert HAW - Arduino 1 HAW-Arduino Sensors and Arduino 14.10.2010 F. Schubert HAW - Arduino 1 Content of the USB-Stick PDF-File of this script Arduino-software Source-codes Helpful links 14.10.2010 HAW - Arduino 2 Report for

More information

IoT Based Child and Woman Safety

IoT Based Child and Woman Safety Available Online at www.ijcsmc.com International Journal of Computer Science and Mobile Computing A Monthly Journal of Computer Science and Information Technology ISSN 2320 088X IMPACT FACTOR: 6.017 IJCSMC,

More information

Embedded Systems & Robotics (Winter Training Program) 6 Weeks/45 Days

Embedded Systems & Robotics (Winter Training Program) 6 Weeks/45 Days Embedded Systems & Robotics (Winter Training Program) 6 Weeks/45 Days PRESENTED BY RoboSpecies Technologies Pvt. Ltd. Office: W-53G, Sector-11, Noida-201301, U.P. Contact us: Email: stp@robospecies.com

More information

A Wireless Mesh IoT sensor system FEATURES DESCRIPTION. Vicotee Njord series Nodes

A Wireless Mesh IoT sensor system FEATURES DESCRIPTION. Vicotee Njord series Nodes A Wireless Mesh IoT sensor system Vicotee Njord series Nodes FEATURES A SmartMesh IP network consists of a highly scalable self-forming multi-hop mesh of wireless nodes, known as motes, which collect and

More information

BUS ALERT SYSTEM (BAS) MOHAMMAD AZIMI BIN BASARY

BUS ALERT SYSTEM (BAS) MOHAMMAD AZIMI BIN BASARY BUS ALERT SYSTEM (BAS) MOHAMMAD AZIMI BIN BASARY This Report is Submitted in Partial Fulfillment of Requirements for The Bachelor Degree of Electronic Engineering (Telecommunication Electronic) Fakulti

More information