Assignment 4. Developing Operational Profiles. Due Date: November 21, Group Number: 6

Size: px
Start display at page:

Download "Assignment 4. Developing Operational Profiles. Due Date: November 21, Group Number: 6"

Transcription

1 Assignment 4 Developing Operational Profiles Due Date: November 21, 2016 Group Number: 6 Members: Brandon Lee, , btlee@ucalgary.ca Veronica Eaton, , veaton@ucalgary.ca Dominic Hul, , dahul@ucalgary.ca Reid Sigsworth, , rsigswor@ucalgary.ca

2 Executive Summary This report will provide a brief specification for the project at hand, along with the finalized requirements of the system and the operational modes. The project to be developed involves a cloud based solution, monitoring information sent from a vehicle to a database server. The data is to be analyzed in order to improve driver safety in the future. The user s vehicle will report data from an OBD-II (On-Board Diagnostics system), through a Raspberry Pi via ethernet, and transfer it to a database server over the Raspberry Pi s Wi-Fi adapter. Since we will be using a Wi-Fi connection, data may only be sent from the RPi when a wireless connection can be made with the server. If there is no connection available, the Raspberry Pi will store data within its SD card until a connection is made. While storing data may be useful for later analysis; we want to make this data easily available to the user as well. To solve this, an Android app will be developed to allow for easy viewing by the user. The app will report any vehicle errors/warnings to the user. The user will also be able to view all current and previous trip data. If a connection to the server is unavailable through the mobile app, the user may still view previous trip data through a local cache on their phone. In order to have a better understanding we will set our operational modes and represent them in a tabular form. Project Specification The objectives of our developed project are to acquire precise data, process it and utilize it for the user or owner s benefit. The following is a diagram of the four separate hardware modules that we plan to use and implement in our design. Figure 1.0: System Hardware Model

3 Figure 1.1: Data Flow Diagram Figure 1.2: ER Diagram

4 Requirements Data Acquisition Unit (OBDII, RPi, and Database Server) Functional Requirements OBDII input data is to be filtered/parsed by desired status codes before storing on Raspberry Pi s SD card Data to be stored: Cylinder Misfire (P P0312) Fuel Pump Status (P P1239) Engine RPM/Speed limiter reached (P1270) Seat Belt Status (B B1430) Brake Pedal Status (B B1486) ABS Status (C C1103) Power Steering Failure (C1778) Heater System Failure (C1776) OBDII data is stored on the RPi on an SD card OBDII data is transferred to the backend server through RPi s Wi-Fi adapter OBDII is stored on a database on the backend server OBDII data is transferred from the SD card automatically when the RPi is within range of the server s Wi-Fi connection OBDII data is transferred to the RPi at 10 second samples OBDII data is not modified/deleted before it is transferred to the server Hardware Requirements OBDII is connected physically through an RS232 to USB adapter Raspberry Pi should be powered through an adapter connected to the vehicle s electric system SD card may be replaced at any time System must be compatible with Ford F150 System must be able to run for 12 hours at a time without failure Data is transferred from Rpi to DBMS through ethernet cable User Interface Application Unit Functional Requirements The mobile application connects to the database through WiFi or LTE, to read data and display the status of each data field sent by the RPi Data to be sent to the database server: Time X coordinate Y coordinate Speed

5 All data received and sent by the phone should be stored on the phone locally and grouped in trips (user determines manually when to complete a trip) Application should issue a warning to the user when an error code is read from the database Maintain local database for all collected data Ability to search database for previous trips and display all of its data Operate in offline mode by displaying locally collected data Non Functional A maximum latency of 50ms when querying database on WiFi and 200ms when querying database on a cellular network Simple UX (user experience) Developing Operational Profiles 1. What factors are likely to yield different operational modes for your system? Different factors will affect the operational modes we have chosen in our three different modules.the following are the operational modes and their factors taken into account. Overall system modes: Mode 1. Active Trip (Online) - When the driver is in an active trip Mode 2. Viewing Mode (Online) - When the user views previous trip data, not while driving or in vehicle Mode 3. Offline Mode (Offline) - When the Android application is on but not viewing previous trip data nor in an active trip. User may view locally cached data in Android application Separate modes for each component: Raspberry Pi (2 modes): 1. Connected to Wi-Fi access point -> Required for Modes 1, 2 2. Disconnected from Wi-Fi access point -> Prevents Mode 1. Modes 2, 3 still possible Database Server (2 operational modes)

6 1. During a driver s trip -> Active in Mode 1 2. User requesting previous trip data -> Active in Mode 2 Android Application (3 operational modes) 1. During an active trip -> Mode 1 2. Viewing mode (not in active trip) -> Mode 2 3. Offline mode -> Mode 3 2. Pick one operational mode of the product of broad scope and identify its operation initiators. With three components to the system, we can select a default operational mode for each of them. The default operations will not succeed if any of the following operational modes fail. The default operational mode will be defined as when the driver is in an active trip. In order to fulfill this requirement, the following operational modes must be active. Raspberry Pi -> Must have an active connection to the designated wireless access point. Without it, the driver will not receive error codes in real time Database server -> Current operational mode must be in an active trip. It is difficult to set operational modes for the database server, as it simply processes and sends data based on received queries. The only requirement for the database server is for it to be available to the android application within a trip. Android Application -> the main operational mode will be during a trip. The mode s initiator is the driver. The driver must select the Start Trip button within the application. This will trigger the operational mode. Once the user ends a trip by selecting the End Trip button, the operational mode returns to offline mode. 3. Decide between tabular or graphical representation for the operational profile.

7 Tabular representation will be used. Tabular representation provides a clean visual of operational modes, sub functions, the number of their transactions and probability of the transactions occurring. 4. If you are using the tabular representation, list the operations for the operational mode you have selected. Consider the different initiators to generate the list for each operational mode. For the operational mode selected above of Active Trip mode. A list of operations will be divided into three components of Android application operations, database server operations and Raspberry Pi operations. Raspberry Pi Operations -> Must be in the operational mode of connected to Wi-Fi - If any error codes exist in SD card memory, send all to database server. - Receive error code data from OBDII by CSV file. - Parse for valid error codes required by the Android Application. - Attach a timestamp to the table of valid codes. - Send a query to the database server, storing the table of valid codes along with their timestamps. Database Server Operations -> Must be in the operational mode of in active trip - Receives table of valid error codes from the RPi. - Stores the table of valid error codes into its own table. - Sends valid codes to Android application through requests received by the application on a timely basis. - Receives location, time and speed data from Android application on a timely basis. Android Application Operations -> Must be in active trip mode (e.g., Start Trip button) - Application sends requests for new valid error codes held by the database server. - Alert user if one or more error codes are found. Displayed in table of error codes with associated timestamp. - Send location, time, and speed data to the database on a timely basis - User terminates mode by pressing End Trip. 5. No graphical representation needed. 6. How will you determine occurrence rates and occurrence probabilities for the operational profile of the operational mode you have selected? 1 2 Is it

8 possible to estimate them? Can you obtain any data from already available resources, log files, project documentation, etc.? In either case represent the occurrence probabilities using simple numbers. Raspberry Pi Operation Occurrence Rate (operations per hour) Occurrence Probability Reasoning Connected to WiFi Disconnect ed from WiFi -Send saved error code 2 -receive error code 360 -parse for valid errors 360 -attach timestamp 360 -send 360 5% Send saved error code only occurs when starting the WiFi mode and the rest happen every ten seconds Only time it will be connected to WiFi is when the car is on and at home which will only be a small amount of the time 95% Most of the time spent on will be while on a trip away from WiFi Database Server Operation Occurrence Rate (operations per hour) Occurrence Probability Reasoning During active trip User requested trip -Receive error codes 360 -Store error codes 360 -Send any error codes requested by the app 360 -Receive data from phone % During a trip data is created every ten seconds and then will be sent to the database Most operations to the database will be writes from the trip since there will be so a data dump every five seconds 25% We assume users will not look at every trip and those they do will only be looked up Android Operation Occurrence Rate Occurrence Reasoning

9 During active trip Viewing mode (online) Viewing mode (Offline) (operations per hour) -Send database request for new error codes 360 -Alert user of error codes 360 -Send phone data to database 360 Probability 75% During a trip data is created every ten seconds and then will be sent to the database The app will be primarily used to start and stop active trips; viewing current error codes. 15% The app will be able to view prior trips by accessing the database. 10% The phone will have a data connection for the majority of the time whether WiFi or cellular.

Assignment 1. Software Project Size Workshop. Due Date: October 7th Group Number: 6

Assignment 1. Software Project Size Workshop. Due Date: October 7th Group Number: 6 Assignment 1 Software Project Size Workshop Due Date: October 7th 2016 Group Number: 6 Members: Brandon Lee, 10101116, btlee@ucalgary.ca Veronica Eaton, 10122660, veaton@ucalgary.ca Dominic Hul, 10097599,

More information

Assignment 5. Prepare, Execute Test and Release Workshop. Due Date: December 9, Group Number: 6

Assignment 5. Prepare, Execute Test and Release Workshop. Due Date: December 9, Group Number: 6 Assignment 5 Prepare, Execute Test and Release Workshop Due Date: December 9, 2016 Group Number: 6 Members: Brandon Lee, 10101116, btlee@ucalgary.ca Veronica Eaton, 10122660, veaton@ucalgary.ca Dominic

More information

InControl INCONTROL OVERVIEW

InControl INCONTROL OVERVIEW INCONTROL OVERVIEW InControl uses smartphone and in-vehicle mobile technology, to remotely connect the vehicle to a number of services and convenience features. Note: For further information, access the

More information

Driving Smarter Fleets & Better Businesses

Driving Smarter Fleets & Better Businesses Driving Smarter Fleets & Better Businesses Smart Fleet, fleet telematics Tailored to Small and Medium Enterprise While most of existing fleet management solutions are developed for heavy duty vehicles,

More information

nettalk DUO WiFi Configuration (using an Android smartphone)

nettalk DUO WiFi Configuration (using an Android smartphone) nettalk DUO WiFi Configuration (using an Android smartphone) Step 1. Activate your Device a. Locate your username and password inside of the box. b. Go to www.nettalk.com/activate and follow the activation

More information

An ISO 9001:2008 Registered Company

An ISO 9001:2008 Registered Company An ISO 9001:2008 Registered Company Upfitter Interface Module The following list represents firmware v4.30 A-UIM4-506-A 2011-2016 Ford F250-550 B-UIM4-506-A 2017 F250-F550 A-UIM4-751-A 2013-2017 1500-5500

More information

Car Care Get diagnostics and insights about your car s health. Stay Connected Turn your car into a Wi-Fi hotspot for up to five devices.

Car Care Get diagnostics and insights about your car s health. Stay Connected Turn your car into a Wi-Fi hotspot for up to five devices. Quick Start Guide Car Care Get diagnostics and insights about your car s health. Car Tracker Track your location, monitor driving behaviour, and set speed alerts. Stay Connected Turn your car into a Wi-Fi

More information

OBD Auto Doctor. User Manual for ios (iphone and ipad) Copyright 2018 Creosys Ltd

OBD Auto Doctor. User Manual for ios (iphone and ipad) Copyright 2018 Creosys Ltd OBD Auto Doctor User Manual for ios (iphone and ipad) Copyright 2018 Creosys Ltd User Manual for ios (iphone and ipad) 1. Introduction 1.1 Platform and Hardware Requirements 1.2 Supported Adapters 1.3

More information

RaceCapture/Pro 3. Next generation of data, telemetry, and control. Live-streaming to Podium

RaceCapture/Pro 3. Next generation of data, telemetry, and control. Live-streaming to Podium RaceCapture/Pro 3 Next generation of data, telemetry, and control Your time on track matters and you want to maximize every minute and dollar toward tuning the engine, honing your racecraft, or finding

More information

NC1701 ENHANCED VEHICLE COMMUNICATIONS CONTROLLER

NC1701  ENHANCED VEHICLE COMMUNICATIONS CONTROLLER NC1701 ENHANCED VEHICLE COMMUNICATIONS CONTROLLER Nebula Systems has created the first dedicated controller for use in Telematics embedded systems, enabling companies in the Connected Car space to access

More information

Z6200 Quick Start Guide

Z6200 Quick Start Guide Getting to Know Your OBD2 Device Appearance Z6200 Quick Start Guide The following figure is for your reference only. 6 1 2 3 ZTE CORPORATION NO. 55, Hi-tech Road South, Shenzhen, P.R.China Postcode: 518057

More information

Venue : Panimalar Institute of Technology, Chennai EVENT DETAILS

Venue : Panimalar Institute of Technology, Chennai EVENT DETAILS Two days Zonal level workshops on IoT using RaspberryPi January 19-20,2018 Venue : Panimalar Institute of Technology, Chennai 600123 EVENT DETAILS Stages of Event Round 1: A Workshop will be organized

More information

Automobile Design and Implementation of CAN bus Protocol- A Review S. N. Chikhale Abstract- Controller area network (CAN) most researched

Automobile Design and Implementation of CAN bus Protocol- A Review S. N. Chikhale Abstract- Controller area network (CAN) most researched Automobile Design and Implementation of CAN bus Protocol- A Review S. N. Chikhale Abstract- Controller area network (CAN) most researched communication protocol used for automotive industries. Now we are

More information

ZTE CruiseConnect Quick Start Guide

ZTE CruiseConnect Quick Start Guide ZTE CruiseConnect Quick Start Guide Application Powered by Modus 1 Getting to Know Your OBD II Device Appearance The following figure is for your reference only. 1. Reset hole 2. micro-sim card slot 3.

More information

2016 Bosch Automotive Service Solutions All rights reserved.

2016 Bosch Automotive Service Solutions All rights reserved. ss02272 EMMIT User Manual Enhanced Multi Media Interface Tester en User Manual 577709 ss02296 2016 Bosch Automotive Service Solutions All rights reserved. The information, specifications, and illustrations

More information

Features. Specifications. Hardware.

Features. Specifications. Hardware. Quick Start User Guide For CrazySwitch Home automation is "The Internet of Things". The way that all of our devices and appliances will be connected in the network and also provide us with a seamless control

More information

CANSPY A Platform for Auditing CAN Devices

CANSPY A Platform for Auditing CAN Devices This document and its content is the property of Airbus Defence and Space. It shall not be communicated to any third party without the owner s written consent [Airbus Defence and Space Company name]. All

More information

DASHLINK DL-200 Installation Guide

DASHLINK DL-200 Installation Guide DASHLINK DL-200 Installation Guide Electronic Logging Device (ELD) DL-200 CONTACT P: 1.888.305.8777 Ext. 1 E: support@bigroad.com CONTENTS Required Materials 01 Adding A New Truck 02 Installing Your DashLink

More information

Development of Intrusion Detection System for vehicle CAN bus cyber security

Development of Intrusion Detection System for vehicle CAN bus cyber security Development of Intrusion Detection System for vehicle CAN bus cyber security Anastasia Cornelio, Elisa Bragaglia, Cosimo Senni, Walter Nesci Technology Innovation - SSEC 14 Workshop Automotive SPIN Italia

More information

Connected Car. Start Guide. Device by

Connected Car. Start Guide. Device by Connected Car Start Guide Device by Keep your family safe Receive real-time vehicle diagnostics Track the location of your car Stay connected with Wi-Fi LTE capable device Step 1 Check vehicle compatibility

More information

How to connect my TP-Link Smart Plug to my home network via Kasa?

How to connect my TP-Link Smart Plug to my home network via Kasa? How to connect my TP-Link Smart Plug to my home network via Kasa? This Article Applies to: TP-Link smart devices can be controlled by Kasa App locally and remotely. By this means we can easily make the

More information

Precision Tec Diagnostics PO Box 2431 Cartersville, GA

Precision Tec Diagnostics PO Box 2431 Cartersville, GA Precision Tec Diagnostics PO Box 2431 Cartersville, GA 30120 e-mail: toolsupport@precisiontec.us info@precisiontec.us iscan3 PLATINUM provides a powerful tool for vehicle diagnostics. The intuitive user

More information

A - ELECTRONIC SCORESHEET - CONNECTIVITY INFORMATION

A - ELECTRONIC SCORESHEET - CONNECTIVITY INFORMATION A - ELECTRONIC SCORESHEET - CONNECTIVITY INFORMATION Note: This information is accurate whether we have a dedicated access point or not. In order to function properly, the Electronic Scoresheet needs to

More information

User Manual IDD-213TH

User Manual IDD-213TH User Manual IDD-213TH On your cellphone go to Play Store or APP Store. Search for Lit guardian and download/install. Install a standard SIM card with no pin code in device (CDMA unsupported). Place IDD-213TH

More information

KODO Controller. Remote Access. Hutech Corporation Atlantic Ocean Dr., Unit B-17. Lake Forest, CA

KODO Controller. Remote Access. Hutech Corporation Atlantic Ocean Dr., Unit B-17. Lake Forest, CA KODO Controller Remote Access Hutech Corporation 25691 Atlantic Ocean Dr., Unit B-17 Lake Forest, CA 92630 https://hutech.com 20180709 Introduction The Kodo Controller provides basic input and output via

More information

TECHNICAL SPECIFICATION

TECHNICAL SPECIFICATION TECHNICAL SPECIFICATION WIRELESS SMART SWITCH Functions: One channel wireless ON/OF switch Control is done from anywhere with IOS or Android mobile application Control electrical devices over Wi-Fi Control

More information

STAGESCAPE M20d. System Settings

STAGESCAPE M20d. System Settings STAGESCAPE M20d System Settings Table of Contents System Settings... 1 Wi-Fi Remote Setup...2 How To Configure Wi-Fi Settings On ipad...4 Backup & Restore...6 Update M20d...7 Update L6 Link...8 System

More information

Fig Data flow diagram and architecture when using the TCUP Cloud Server for PaaS for the Developers and large

Fig Data flow diagram and architecture when using the TCUP Cloud Server for PaaS for the Developers and large base Firewall Applications / Services Internet Firewall Apps APIs RESTful Developer Gather Level 1 Apps User Customer Apps User Customer Embedded IoT s/ M2M Sensor s Hotspot Hotspot Enrich Level 2 LWM2M/

More information

Micronet SmartHub. Platform Datasheet. The Next Generation Rugged On-Board Computing Platform. Preliminary February, 2019.

Micronet SmartHub. Platform Datasheet. The Next Generation Rugged On-Board Computing Platform. Preliminary February, 2019. Micronet SmartHub Platform Datasheet The Next Generation Rugged On-Board Computing Platform March 2018 Preliminary February, 2019 Disclaimer: Micronet reserves the right to change product specifications

More information

Contents. Precaution... Main Menu... Radio... Play DVD... USB/SD AUX Input Bluetooth Screen Mirroring Navigation...

Contents. Precaution... Main Menu... Radio... Play DVD... USB/SD AUX Input Bluetooth Screen Mirroring Navigation... USER MANUAL Thank you for buying this XTRONS product. Please read through these instructions so you will know how to operate this unit properly. After you have finished reading the instructions, keep this

More information

Contents. Precaution... Main Menu... Radio... Play DVD... USB/SD AUX Input Bluetooth Screen Mirroring Navigation...

Contents. Precaution... Main Menu... Radio... Play DVD... USB/SD AUX Input Bluetooth Screen Mirroring Navigation... USER MANUAL Thank you for buying this XTRONS product. Please read through these instructions so you will know how to operate this unit properly. After you have finished reading the instructions, keep this

More information

Contents. Precaution... Home Screen... Radio... Play DVD... USB/SD... AUX Input... Bluetooth... Screen Mirroring... Navigation...

Contents. Precaution... Home Screen... Radio... Play DVD... USB/SD... AUX Input... Bluetooth... Screen Mirroring... Navigation... USER MANUAL Thank you for buying this XTRONS product. Please read through these instructions so you will know how to operate this unit properly. After you have finished reading the instructions, keep this

More information

Contents. Google Play Store Settings Troubleshooting... 25

Contents. Google Play Store Settings Troubleshooting... 25 USER MANUAL Thank you for buying this XTRONS product. Please read through these instructions so you will know how to operate this unit properly. After you have finished reading the instructions, keep this

More information

GPS Vehicle Tracker. Innovation Integrity Quality Service

GPS Vehicle Tracker.   Innovation Integrity Quality Service GPS Vehicle Tracker www.systech.com.tw Innovation Integrity Quality Service Advanced GPS Tracker > 3G Network > 1-Wire Interface > Built-in Interactive Voice Response (IVR) > Remote configuration > FOTA

More information

RaceCapture/Apex. Ruggedized, powerful motorsports telemetry

RaceCapture/Apex. Ruggedized, powerful motorsports telemetry RaceCapture/Apex Ruggedized, powerful motorsports telemetry RaceCapture/Apex is a powerful motorsports telemetry system designed for harsh environments. Whether you need telemetry for your open-cockpit

More information

Application. Diagnosing the dashboard by the CANcheck software. Introduction

Application. Diagnosing the dashboard by the CANcheck software. Introduction Diagnosing the dashboard by the CANcheck software Introduction In recent years, vehicle electronics technology improved and advances day by day. A great of advanced electronic technology has been applied

More information

Contents. Precaution... Home Screen... Radio... Play DVD... USB/SD... AUX Input... Bluetooth... Bluetooth Music Screen Mirroring...

Contents. Precaution... Home Screen... Radio... Play DVD... USB/SD... AUX Input... Bluetooth... Bluetooth Music Screen Mirroring... USER MANUAL Thank you for buying this XTRONS product. Please read through these instructions so you will know how to operate this unit properly. After you have finished reading the instructions, keep this

More information

DashLink Install Guide

DashLink Install Guide DashLink Install Guide Contents Page 2 Page 3 Page 4 Page 4 Page 5 Page 6 Page 8 Page 9 DashLink Solution Components Locating Vehicle s Diagnostic Port Connecting DashLink Adapter Cable to Vehicle s Diagnostic

More information

NEXT Mobile Video Tracking

NEXT Mobile Video Tracking NEXT Mobile Video Tracking *Your vehicle picks up unwanted passengers from alongside the road * you can t view live footage while your vehicle going cross border *fuel is illegally siphoned from your vehicles

More information

Contents. Precaution... Main Menu... Radio... Play DVD... USB/SD... ipod... AUX Input... Bluetooth... Bluetooth Music... Screen Mirroring...

Contents. Precaution... Main Menu... Radio... Play DVD... USB/SD... ipod... AUX Input... Bluetooth... Bluetooth Music... Screen Mirroring... USER MANUAL Thank you for buying this XTRONS product. Please read through these instructions so you will know how to operate this unit properly. After you have finished reading the instructions, keep this

More information

V2X: Beyond the Horizon. IBTTA AET Meeting July 18, 2017

V2X: Beyond the Horizon. IBTTA AET Meeting July 18, 2017 V2X: Beyond the Horizon IBTTA AET Meeting July 18, 2017 Battle over V2X Technology: DSRC vs 5G 18 July 2017 www.kapsch.net 2 Dedicated Short Range Communication (DSRC) Bi-directional wireless communications

More information

Aduro H1: App connection and basic functions. App v with Firmware 700.1

Aduro H1: App connection and basic functions. App v with Firmware 700.1 Aduro H1: App connection and basic functions App v. 1.45.5 with Firmware 700.1 Open Play Store on Android (App store on Apple ios) Search Aduro H1 Select Aduro Hybrid 1: Moderne Pilleovn Open Settings

More information

Quick Start Guide. Wireless IP Camera. Technical Support QG4_A

Quick Start Guide. Wireless IP Camera. Technical Support QG4_A Technical Support Wireless IP Camera Quick Start Guide For Windows Client & Mac Client, please download the PC software: https://reolink.com/software-and-manual/ For advanced setup, please download the

More information

What s New? By George Harding

What s New? By George Harding July 18, 2016 What s New? By George Harding Remocam This is a home security device that uses WiFi, a camera and a smartphone to view a scene for you to see and transmit images of it. The setup process

More information

Contents. Precaution... Home Screen... Radio... Play DVD... USB/SD... AUX Input... Bluetooth... Screen Mirroring... Navigation...

Contents. Precaution... Home Screen... Radio... Play DVD... USB/SD... AUX Input... Bluetooth... Screen Mirroring... Navigation... USER MANUAL Thank you for buying this XTRONS product. Please read through these instructions so you will know how to operate this unit properly. After you have finished reading the instructions, keep this

More information

DriverConnect. Application User Manual. Software Version 4.4.2

DriverConnect. Application User Manual. Software Version 4.4.2 DriverConnect Application User Manual Software Version 4.4.2 Table of Contents: How Do I? How Do I About DriverConnect... 5 Terminology... 6 Set Up DriverConnect... 7 Get Started with a New Account...

More information

NOTICES. XTRONS disclaims any liability for any bodily injury or property damage that might result from any improper or unintended use.

NOTICES. XTRONS disclaims any liability for any bodily injury or property damage that might result from any improper or unintended use. USER MANUAL Thank you for buying this XTRONS product. Please read through these instructions so you will know how to operate this product properly. After you have finished reading the instructions, keep

More information

Now SMS/MMS Android Modem Quick Start Guide

Now SMS/MMS Android Modem Quick Start Guide Now SMS/MMS Android Modem Quick Start Guide Using a GSM modem, or an Android phone as a modem, is a quick and efficient way to get started with SMS and/or MMS applications. No special service provider

More information

C.L.A.I.M Computerized Luggage and Information Messenger

C.L.A.I.M Computerized Luggage and Information Messenger C.L.A.I.M Computerized Luggage and Information Messenger (Group 10) Ernest Jackman - Electrical Engineer Adrian McGrath - Computer Engineer Tomasz Pytel - Computer Engineer Intro -Problem: Baggage Claim

More information

REI Toolkit Quick Guide Radio Engineering Industries, Inc.

REI Toolkit Quick Guide Radio Engineering Industries, Inc. REI Toolkit Quick Guide 2018 Radio Engineering Industries, Inc. REI Toolkit Quick Guide 2 Table of Contents Contents 1 Introduction...3 2 Mobile App Installation...4 3 Android /iphone Instructions...5

More information

WAN Connection Fallback

WAN Connection Fallback For ewon Cosy 131 & ewon Flexy SOLUTION SHEET ENGLISH Important User Information Liability Every care has been taken in the preparation of this document. Please inform HMS Industrial Networks SA of any

More information

ECUTEK ON INFINITI VR30

ECUTEK ON INFINITI VR30 ECUTEK ON INFINITI VR30 INTRODUCTION Welcome and thank you for being a customer of Visconti Tuning! This guide is broken into sections which you can jump around between by clicking on each of the chapters

More information

Quick Start. Mounting Pad Reset Button. Micro USB Power Port. LED Indicator. Micro SD Card Slot. Lens. Adjustable Angle. Button

Quick Start. Mounting Pad Reset Button. Micro USB Power Port. LED Indicator. Micro SD Card Slot. Lens. Adjustable Angle. Button Smart Dash Cam Quick Start Mounting Pad Reset Button Micro USB Power Port LED Indicator Constant White: Normal Recording Flashing White: Emergency Recording Breathing Blue: Wi-Fi Hotspot Activated Video

More information

Android 5.1 System USER MANUAL

Android 5.1 System USER MANUAL Android 5.1 System USER MANUAL Thank you for buying this product. Please read through these instructions so you will know how to operate this unit properly. After you have finished reading the instructions,

More information

On board UPS 8 seconds delay power-off for data protection. 8V-36V wide voltage power supply Dimensions :146*155*38mm

On board UPS 8 seconds delay power-off for data protection. 8V-36V wide voltage power supply Dimensions :146*155*38mm 4 CH SSD MDVR (Waterproof Tektron tk1004z, Hand-sized) Waterproof & Dustproof IP67 4 x 720P AHD / 960H / D1 / HD1 / CIF + 1 x IPC (720P / 1080P) Internal G-Sensor, with GPS, 3G / 4G, Wi-Fi (5.8 Ghz ) optional

More information

LAUNCH. X-431 PADII Product Introduction

LAUNCH. X-431 PADII Product Introduction X-431 PADII Product Introduction Contents Product Introduction Machine Introduction Product Key Points Product Function Schematic Product Function Introduction Comparing X-431 PADII Parameters with Products

More information

OBD-II Diagnostic In this guide you will learn how to use our new feature OBD-II Diagnostic. And, specifically, how to set it up and use it in repair.

OBD-II Diagnostic In this guide you will learn how to use our new feature OBD-II Diagnostic. And, specifically, how to set it up and use it in repair. OBD-II Diagnostic In this guide you will learn how to use our new feature OBD-II Diagnostic. And, specifically, how to set it up and use it in repair. Keep in mind that the whole range of functionality

More information

OMNICOMM ON-BOARD TERMINALS

OMNICOMM ON-BOARD TERMINALS ON-BOARD TERMINALS QUALITY, RELIABILITY, PRECISION On-board terminals are a critical component of effective fleet management. They collect data from various sensors and the vehicle s on-board computer

More information

Mobile Macroscopes: The CarTel Project

Mobile Macroscopes: The CarTel Project Mobile Macroscopes: The CarTel Project Sam Madden MIT CSAIL http://cartel.csail.mit.edu With Hari Balakrishnan, Vladimir Bychkovsky, Bret Hull, Yang Zhang, Kevin Chen, Waseem Daher, Michel Goraczko, Hongyi

More information

NOTICES. XTRONS disclaims any liability for any bodily injury or property damage that might result from any improper or unintended use.

NOTICES. XTRONS disclaims any liability for any bodily injury or property damage that might result from any improper or unintended use. USER MANUAL Thank you for buying this XTRONS product. Please read through these instructions so you will know how to operate this product properly. After you have finished reading the instructions, keep

More information

Introduction to Carplay

Introduction to Carplay Introduction to Carplay Neil Shore, CAC Operations January, 2016 What is Apple Carplay? Apple Carplay transfers the most popular functionality of a customer s Apple iphone to their select model Mercedes-Benz.

More information

1. How far can the i-alert2 Equipment Health Monitor communicate? The i-alert2 monitor uses Bluetooth Low Energy, with a range of 30m (100ft).

1. How far can the i-alert2 Equipment Health Monitor communicate? The i-alert2 monitor uses Bluetooth Low Energy, with a range of 30m (100ft). i-alert2 General FAQ_2016 0316 1. How far can the i-alert2 Equipment Health Monitor communicate? The i-alert2 monitor uses Bluetooth Low Energy, with a range of 30m (100ft). 2. What happens to the data

More information

Simplifying the remote acquisition, cloud management, and multiscreen distribution of professional live video over IP

Simplifying the remote acquisition, cloud management, and multiscreen distribution of professional live video over IP Simplifying the remote acquisition, cloud management, and multiscreen distribution of professional live video over IP Dejero simplifies the remote acquisition, cloud management, and multiscreen distribution

More information

Android Spybot. ECE Capstone Project

Android Spybot. ECE Capstone Project Android Spybot ECE Capstone Project Erik Bruckner - bajisci@eden.rutgers.edu Jason Kelch - jkelch@eden.rutgers.edu Sam Chang - schang2@eden.rutgers.edu 5/6/2014 1 Table of Contents Introduction...3 Objective...3

More information

7 Android Cabbie s Mate - Trouble shooting and Previously Asked Questions

7 Android Cabbie s Mate - Trouble shooting and Previously Asked Questions 7 Android Cabbie s Mate - Trouble shooting and Previously Asked Questions INDEX CHARGING ISSUES: 1- Device doesn t switch on 2- Device is not charging 3- Device is not holding charge 4- Device battery

More information

Software Requirements Specification. Smart Doorbell. for. Version 1.0 approved. Prepared by Shriya Shah & Umang Ajmera LDRP-ITR

Software Requirements Specification. Smart Doorbell. for. Version 1.0 approved. Prepared by Shriya Shah & Umang Ajmera LDRP-ITR Software Requirements Specification for Smart Doorbell Version 1.0 approved Prepared by Shriya Shah & Umang Ajmera LDRP-ITR 23-07-1016 Software Requirements Specification for Smart Doorbell Page ii Table

More information

Monitoring Driver Behaviour Through Mobile Phones OSeven

Monitoring Driver Behaviour Through Mobile Phones OSeven Monitoring Driver Behaviour Through Mobile Phones OSeven Dimitrios I. Tselentis Civil - Transportation Engineer Ph.D. Candidate Researcher Website: www.nrso.ntua.gr/dtsel/ e-mail: dtsel@central.ntua.gr

More information

Carkuda (VTG500X) User Manual

Carkuda (VTG500X) User Manual Carkuda (VTG500X) User Manual Contents Carkuda Concepts Quick Start Installing Carkuda Mirror Using Carkuda Mirror Using Carkuda Smartphone App Technical Specifications Packing List FAQs Revision History

More information

Using Torque Pro with EV Display

Using Torque Pro with EV Display Android app called Torque Pro allows users to create custom display gauges to show real time data streaming via Bluetooth dongle. Originally app was made to stream data from OBDII interface, which is standard

More information

AUDIO AND CONNECTIVITY

AUDIO AND CONNECTIVITY Learn how to operate the vehicle s audio system. Basic Audio Operation Connect audio devices and operate buttons and displays for the audio system. USB Port Connect a USB flash drive or other audio device,

More information

Controlling traffic In a Connected world

Controlling traffic In a Connected world Controlling traffic In a Connected world Stefan Myhrberg Transport engagements Ericsson Ericsson Internal 2013-10-14 Page 1 Impact on society Communication Is a basic Human need Smartphone 4G Mobile video

More information

ZT series FAQ. ICP DAS Co., LTD 1

ZT series FAQ. ICP DAS Co., LTD 1 ZT series FAQ Q1 How to get or set the parameter of ZigBee converter (ZT-255x / ZT-257x)? (2013/09/30, Bao)... 2 Q2 If packet length of data greater than 79 bytes, how the will ZigBee converter (ZT-255x

More information

AUDIO AND CONNECTIVITY

AUDIO AND CONNECTIVITY Learn how to operate the vehicle s audio system. Basic Audio Operation Connect audio devices and operate buttons and displays for the audio system. USB Port Connect a USB flash drive or other audio device,

More information

OBD GPS Tracker CW-601 User Manual

OBD GPS Tracker CW-601 User Manual OBD GPS Tracker CW-601 User Manual Tel: 0086-755-33633930 Fax: 0086-755-33633934 www.chainwayits.com Contents 1. PREVIEW... 2 2. DEVICE... 2 2.1 GENERAL INTRODUCTION... 2 2.2 TECHNOLOGY SPECIFICATIONS...

More information

Car-Net via Wi-Fi hotspot Setting up an Internet connection via Wi-Fi in order to use Car-Net

Car-Net via Wi-Fi hotspot Setting up an Internet connection via Wi-Fi in order to use Car-Net Car-Net via Wi-Fi hotspot Setting up an Internet connection via Wi-Fi in order to use Car-Net Dear driver, Here you find out how and under what requirements a Wi-Fi Internet connection to your infotainment

More information

Delivering IoT Value Through onem2m Compliance

Delivering IoT Value Through onem2m Compliance Delivering IoT Value Through onem2m Compliance Nigel Upton, General Manager, Internet of Things July 12 th 2017 Copyright Hewlett Packard Enterprise 2017 Hewlett Packard Enterprise (HPE) Point of View

More information

FORD KM Tool (CAN BUS) User Manual

FORD KM Tool (CAN BUS) User Manual FORD KM Tool (CAN BUS) User Manual X-Horse Electronics Co., Ltd. Table of Contents 1. Safety Precautions and Warnings... 3 2. General Information... 4 3. Hardware Overview... 5 3.1. Tool Description...

More information

Raspberry Pi Based Intelligent Projector

Raspberry Pi Based Intelligent Projector Raspberry Pi Based Intelligent Projector Manaswi R.Ganbavale. 1, Shubhangi C. Deshmukh. 2 PG Student, Department of VLSI Design and Embedded System, Sanjay Ghodawat Group of Institutions, Atigre, Kolhapur,

More information

Outdoor User Manual. ios Application Android Application PC Setup

Outdoor User Manual. ios Application Android Application PC Setup Outdoor User Manual ios Application Android Application PC Setup Please read all instructions carefully before use to get the most out of your Outdoor Wireless Surveillance Camera. The design and features

More information

Just a T.A.D. (Traffic Analysis Drone)

Just a T.A.D. (Traffic Analysis Drone) Just a T.A.D. (Traffic Analysis Drone) Senior Design Project 2017: Final Project Review 1 Meet the Team Cyril Caparanga (CSE) Alex Dunyak (CSE) Christopher Barbeau (CSE) Matthew Shin (CSE) 2 Recap Traffic

More information

Admin Guide Verizon Auto Share Platform.

Admin Guide Verizon Auto Share Platform. Admin Guide Verizon Auto Share Platform. Verizon Auto Share Platform Admin Guide Contents Verizon Auto Share Platform Admin Guide...2 1.1 Initial Setup...4 2.1 Users and Roles...5 2.2 Manage Company Users...6

More information

Lenovo B. Quick Start Guide. Lenovo A2016b30. Read this guide carefully before using your smartphone.

Lenovo B. Quick Start Guide. Lenovo A2016b30. Read this guide carefully before using your smartphone. Lenovo B Quick Start Guide Lenovo A2016b30 Read this guide carefully before using your smartphone. Reading before using your smartphone For your safety Before assembling, charging or using your mobile

More information

Quick Start Guide. This guide provides an overview of the basic functions of your devices and simple step-by-step installation instructions.

Quick Start Guide. This guide provides an overview of the basic functions of your devices and simple step-by-step installation instructions. Quick Start Guide This guide provides an overview of the basic functions of your devices and simple step-by-step installation instructions. W Welcome Welcome to In-Drive, an in-vehicle system that offers

More information

Use apps Tap an app to open it. Customize the unit Arrange apps Touch and hold any app on the Home screen, then drag the app around. Drag an app to the edge of the screen to move it to a different Home

More information

USER GUIDE. incardoc Android

USER GUIDE. incardoc Android USER GUIDE incardoc Android OVERVIEW Use Smartphone for Quick View of the Car and Engine Main Parameters: Read real-time parameters: speed, rotation, timings, economy Read diagnostic trouble codes Clean

More information

Wireless Public Alerting

Wireless Public Alerting Wireless Public Alerting 1. What is wireless public alerting? Wireless public alerting allows governments across Canada to send public safety messages directly to smartphones in a region. If there is an

More information

Security Analysis of modern Automobile

Security Analysis of modern Automobile Security Analysis of modern Automobile Dixit Verma Department of Electrical & Computer Engineering Missouri University of Science and Technology dv6cb@mst.edu 20 Apr 2017 Outline Introduction Attack Surfaces

More information

RECO Smart Cam. Quick Start Guide

RECO Smart Cam. Quick Start Guide RECO Smart Cam Quick Start Guide E11074 / Revised Edition V2 / November 2015 NOTE: The screenshots in this Quick Start Guide are for reference only. 2 Hardware Micro USB port MicroSD card slot GPS port

More information

UAV Management System

UAV Management System UAV Management System based on IoT Platform & U2X Networks Jaeho Kim Managerial Researcher/Team Leader IoT Platform Research Center jhkim@keti.re.kr UAV Market Trends UAV Market is getting bigger and bigger!

More information

SKYNET HYBRID FLEET SOLUTION ABOUT US. Satellite Communications. SkyNet Satellite Communications

SKYNET HYBRID FLEET SOLUTION ABOUT US. Satellite Communications. SkyNet Satellite Communications SKYNET Satellite Communications HYBRID FLEET SOLUTION ABOUT US SkyNet Satellite Communications 2017 1 SOLUTION FEATURES SUMMARY DRIVER MANAGEMENT & COMPLIANCE HARDWARE OPTIONS Garmin Android Touchscreen

More information

MAKING BREACHES IRRELEVANT

MAKING BREACHES IRRELEVANT T M MAKE BREACHES IRRELEVANT MAKING BREACHES IRRELEVANT A focused approach to security OBJECTIVES Brief History Root Causes Problem Scope Solution Architecture Flowchart Summary Page 2 of 40 -CACSS2018-Making-Breaches-Irrelevant-v2.odp

More information

C.L.A.I.M Computerized Luggage and Information Messenger

C.L.A.I.M Computerized Luggage and Information Messenger C.L.A.I.M Computerized Luggage and Information Messenger (Group 10) Ernest Jackman - Electrical Engineer Adrian McGrath - Computer Engineer Tomasz Pytel - Computer Engineer Intro -Problem: Baggage Claim

More information

Version Release Date Description V First release. Change History V1.0.0 i

Version Release Date Description V First release. Change History V1.0.0 i Taurus Series Multimedia Players Version: Doc. ID: V1.0.0 NS120100144 Version Release Date Description V1.0.0 2017-07-20 First release. Change History V1.0.0 i Table of Contents Change History... i Table

More information

6.S062: Mobile and Sensor Computing aka IoT Systems

6.S062: Mobile and Sensor Computing aka IoT Systems 6.S062: Mobile and Sensor Computing aka IoT Systems http://6s062.github.io/6mob Lecturers Hari Balakrishnan (hari@csail.mit.edu) Fadel Adib (fadel@mit.edu) TA Hyunjoon (Richard) Song (rsong@mit.edu) Course

More information

FHD Driving Recorder E272S/S272W. Quick Start Guide

FHD Driving Recorder E272S/S272W. Quick Start Guide FHD Driving Recorder E272S/S272W Quick Start Guide 400-8401-030 www.polaroidcarcam.com 1 Introduction 1.1 Package Contents The package contains the following items. In case there is any missing or damaged

More information

Note: Before running the app, turn on the mobile data connection of the mobile phone or connect the mobile phone to a Wi-Fi network.

Note: Before running the app, turn on the mobile data connection of the mobile phone or connect the mobile phone to a Wi-Fi network. MyOximeter Operation Instruction I. Download and Installation This app runs in ios 7.0 and later versions and Android 4.3 and later versions of mobile phone operating systems. You can download the app

More information

Fleet Management - Smart, Secure and Easy

Fleet Management - Smart, Secure and Easy Fleet Management - Smart, Secure and Easy Automile is a comprehensive fleet management solution to monitor both company and service vehicles and provide rich insights. Our hardware requires no installation

More information

In-Vehicle Computers

In-Vehicle Computers In-Vehicle Computers (with NXP i.mx6 ARM Cortex application processor) VPC300 in-vehicle communication gateway in-vehicle computer for fleet management VPC300 This flyer contains information on preproduction

More information

CONFIGURATION SOFTWARE

CONFIGURATION SOFTWARE MODBUS GATEWAY CONFIGURATION SOFTWARE MBS100E/G/W MODBUS GATEWAY 01 / 2018 MIKRODEV_SM_MBS100_CG_EN CONTENTS 1 MODBUS GATEWAY CONFIGURATION SOFTWARE... 6 1.1 General Information... 6 1.2 Device Connection...

More information

Lab: Setting up PL-App with a Raspberry Pi

Lab: Setting up PL-App with a Raspberry Pi Lab Topology Objectives Set up a Raspberry Pi board as a PL-App device Use PL-App Launcher to provision and discover PL-App devices Background Cisco Prototyping Lab is a set of hardware and software components

More information