Cross-Domain Development Kit XDK110 Platform for Application Development

Size: px
Start display at page:

Download "Cross-Domain Development Kit XDK110 Platform for Application Development"

Transcription

1 Examples Overview Cross-Domain Development Kit Platform for Application Development Bosch Connected Devices and Solutions : Data Sheet Document revision 1.0 Document release date 03/08/16 Document number Technical reference code(s) Notes --EXAMPLES-OVERVIEW Data in this document is subject to change without notice. Product photos and pictures are for illustration purposes only and may differ from the real product s appearance. Subject to change without notice

2 Overview Examples Page 2 XDK Workbench 1.5 Examples Overview PLATFORM FOR APPLICATION DEVELOPMENT The XDK Workbench 1.5 Examples Overview provides a description of each example that can be found in the welcome screen of the XDK workbench. To import one of the examples simply click on one of them in the welcome screen. Table of Contents 1. HTTPEXAMPLECLIENT REQIREMENTS SETUP OUTPUT LEDSANDBUTTONS REQIREMENTS SETUP PROGRAMMING OUTPUT LWM2MEXAMPLECLIENT REQIREMENTS SETUP PROGRAMMING OUTPUT SDCARDEXAMPLE REQIREMENTS SETUP PROGRAMMING OUTPUT SENDACCELDATAOVERUDPANDBLE SENDACCELEROMETERDATAOVERBLE REQIREMENTS SETUP PROGRAMMING OUTPUT SENDDATAOVERUDP SENDVIRTUALSENSORDATAOVERUSB... 12

3 Overview Examples Page REQIREMENTS SETUP PROGRAMMING OUTPUT STREAMSENSORDATAOVERUSB REQIREMENTS SETUP PROGRAMMING OUTPUT WLANNETWORKMANAGEMENT REQIREMENTS SETUP PROGRAMMING OUTPUT XDKAPPLICATIONTEMPLATE... 18

4 Overview Examples Page 4 1. HttpExampleClient This example shows how to use the network stack to perform an HTTP Client Request. HTTPS is not yet working. The example connects to the server and establishes a connection to the server and requests data from the server every 10 seconds. My initial output indicates and error when trying to get data from I don t see where this website is set; perhaps the test server is down or unresponsive to GET requests. 1.1 Reqirements - XDK - USB Cable (USB A to USB micro) - Windows 7 or greater PC with XDK Workbench 1.5 Installed - Available Wireless Network 1.2 Setup - Connect the XDK to the PC via a USB cable - Open XDK Workbench From the Welcome screen, open the HttpExampleClient 1.3 Programming From the project explorer, expand the project, open the source folder and then open the HttpExampleClient.h file Edit the WLAN_CONNECT_WPA_SSID field to match the available networks name Edit the WLAN_CONNECT_WPA_PWD field to match the available networks password Picture 1: HttpExampleClient s Connection Settings Location - Save the file - Clean and build the project - Flash the project to the XDK 1.4 Output When running the program keep the USB plugged in to the PC. The USB will output a string of data you can read to indicate correct functionality.

5 Overview Examples Page 5 Picture 2: HttpExampleClient s USB Output, Visible in the XDK Workbench s Console Window 2. LedsAndButtons This example contains a showcase for the use of LEDs and buttons. The Led and Button example requires no extra programming, it is ready to run immediately. Once programmed you can press the 2 push buttons and will see the LEDs in 4 states. - Push Button 1 Pressed - Red LED State ON - Orange LED State OFF - Yellow LED State ON - Push Button 1 Released - Red LED State OFF - Orange LED State ON - Yellow LED State - OFF - Push Button 2 Pressed - Red LED State ON - Orange LED State ON - Yellow LED State - OFF - Push Button 2 Released - Red LED State OFF - Orange LED State OFF - Yellow LED State - ON 2.1 Reqirements - XDK - USB Cable (USB A to USB micro) - Windows 7 or greater PC with XDK Workbench 1.5 Installed 2.2 Setup - Connect the XDK to the PC via a USB cable - Open XDK Workbench From the Welcome screen, open the LedsAndButtons example 2.3 Programming - Clean and build the project - Flash the project to the XDK

6 Overview Examples Page Output When running the program keep the USB plugged in to the PC. The USB will output a string of data you can read to indicate correct functionality. Picture 3: LedsAndButtons USB Output, Visible in the XDK Workbench s Console Window 3. Lwm2mExampleClient This example demonstrates how to register with a LWM2M Server including the standard LWM2M Objects. Unsecure and encrypted communication is both supported. The example will connect to the Leshan Server which can be accessed on a PC at Currently it is necessary to enter credentials: username: bcds; password: tue123rt143 (should we keep this step and give out the credentials or should we make this more open?). Once the XDK is connected to the network and the Leshan server the orange LED will turn on. From the website you can now click on the desired client and read the objects. Picture 4: Leshan Client - User Interface to the Leshan Server; Client List

7 Overview Examples Page 7 Picture 5: Leshan Client User Interface to the Leshan Server; Object Read 3.1 Reqirements - XDK - USB Cable (USB A to USB micro) - Windows 7 or greater PC with XDK Workbench 1.5 Installed - Available Wireless Network 3.2 Setup - Connect the XDK to the PC via a USB cable - Open XDK Workbench From the Welcome screen, open the Lwm2mExampleClient example 3.3 Programming - From the project explorer, expand the project, open the source folder and then open the Lwm2mExampleclient.h file - Edit the WLAN_CONNECT_WPA_SSID field to match the available networks name - Edit the WLAN_CONNECT_WPA_PWD field to match the available networks password - Edit the CLIENT_CONNECT_PORT field to match the CoAP port Navigate to the Lwm2mInterface.c file and confirm the Leshan Server address is correct (coap:// :5683)

8 Overview Examples Page 8 Picture 6: Lwm2mExampleClient s Connection Settings Location Picture 7: Lwm2mExampleClient s CoAP Server address - Clean and build the project - Flash the project to the XDK 3.4 Output When running the program keep the USB plugged in to the PC. The USB will output a string of data you can read to indicate correct functionality. This string is mainly used for debug purposes. If the output differs from picture 8 then there is an error in the network setup or lwm2m setup.

9 Overview Examples Page 9 Picture 8: Lwm2mExampleClient s USB Output, Visible in the XDK Workbench s Console Window 4. SdCardExample This example contains the showcase for the use of the SD card file system. The example will read the presence of an SD Card in the SD Card slot and turn on the Red LED if one is present. The device will then create and write to the text file TEST_XDK.TXT the text This content is created by SD card Read/Write functionality using FAT32 file system. The code out of the box will continue to write the SD Card again and again, making it difficult to stop the program at an appropriate spot where the SD Card is not corrupted. To circumvent this I added a Stop timer command after the write. The SD Card can be removed from the XDK after the write is complete (as indicated by the output) and read on a computer. 4.1 Reqirements - XDK - USB Cable (USB A to USB micro) - Windows 7 or greater PC with XDK Workbench 1.5 Installed - Micro SD Card 4.2 Setup - Insert the Micro SD Card into the XDK - Connect the XDK to the PC via a USB cable - Open XDK Workbench From the Welcome screen, open the SdCardExample example 4.3 Programming - From the project explorer, expand the project, open the source folder and then open the SdCardExample.c file - In order to capture the SD Card in a readable state add the timer stop function to line OS_timerStop(sdCardWriteReadHandle, WRITEREAD_BLOCK_TIME);

10 Overview Examples Page 10 Picture 9: SdCardExample s Timer Stop Function - Clean and build the project - Flash the project to the XDK 4.4 Output When running the program keep the USB plugged in to the PC. The USB will output a string of data you can read to indicate correct functionality. Read the output and don t turn off the XDK or take out the SD card until the console indicates the write is complete. Picture 10: SdCardExample s USB Output, Visible in the XDK Workbench s Console Window 5. SendAccelDataOverUdpAndBle This example demonstrates how to read sensor values from the BMA280 Acceleration sensor and send the data over WLAN (UDP Broadcast) and Bluetooth Low Energy via the Alpwise Data Exchange Profile. Either use your Android or ios mobile phone (see Android or ios App Store) to connect to XDK and receive the data. Send start to XDK via Bluetooth Low Energy, so that streaming of data begins.

11 Overview Examples Page SendAccelerometerDataOverBle This example streams raw accelerometer data from the BMA280 Acceleration sensor via Bluetooth Low Energy (BLE). The Alpwise Data Exchange Profile is used; Alpwise ios/android App is required. Open the Alpwise app, press the play button, and select the XDK_demo device. Once the device connects select the Data Exchange Profile. Then send start to XDK, so that streaming of data begins and send end to XDK, so that streaming of data ends. Picture 11: Alpwise Screenshots from Andrioid Phone. From top left: Home, Device Scan, Device Profile, Data Exchange Start Command, Data Exchange Data, Data Exchange End Command 6.1 Reqirements - XDK - USB Cable (USB A to USB micro) - Windows 7 or greater PC with XDK Workbench 1.5 Installed - Andoid/iOS phone wih Alpwise BLE App

12 Overview Examples Page Setup - Connect the XDK to the PC via a USB cable - Open XDK Workbench From the Welcome screen, open the SendAccelerometerDataOverBle example 6.3 Programming - Clean and build the project - Flash the project to the XDK 6.4 Output When running the program keep the USB plugged in to the PC. The USB will output a string of data you can read to indicate correct functionality. Picture 12: SendAccelerometerDataOverBle s Output, Visible in the XDK Workbench s Console Window 7. SendDataOverUdp This example demonstrates how to send arbitrary data over WLAN as a UDP broadcast. 8. SendVirtualSensorDataOverUsb The example can print out raw or calibrated data from an array of physical sensors. The default example will capture the XDK s orientation data and can be used with the XDK Virtual Device Monitor Plug In (Window -> Show View -> Other -> Other -> XDK Virtual Device Monitor). The example is configurable to display different sets of data and can also demonstrate different functions of the XDK. The Step Counter will count the number steps taken by the device. The Magnetic Finger Print allows the user to mount the device on object, like a window, and program three unique magnetic finger prints based on the position of the XDK and the object. The device can be programed to print 1 of 6 features, some of these features can be further configured to display different data, or to toggle sensitivity of the function. The following describes the different configurations of the example.

13 Overview Examples Page 13 - Orientation - Euler Degree - Euler Radian - Quaternion (used with Virtual XDK Demo) - All (used with Virtual XDK Demo) - Compass - Humidity - Calibrated Sensors (each sensor can be set up with a status of unreliable, low, medium or high) - Accelerometer - Gyroscope - Magnetometer - Step Counter - Normal - Sensitive - Robust - Magnetic Finger Print 8.1 Reqirements - XDK - USB Cable (USB A to USB micro) - Windows 7 or greater PC with XDK Workbench 1.5 Installed 8.2 Setup - Connect the XDK to the PC via a USB cable - Open XDK Workbench From the Welcome screen, open the SendVirtualSensorDataOverUsb Example 8.3 Programming - Open the project in the project explorer and navigate to the following files: SendVirtualSensorDataOverUSB.c, StepCounter.c, CalibratedSensor.c and OrientationData.c - The files in the above step are all the files necessary to program/calibrate the program to output the desired data Picture 13: SendVirtualSensorDataOverUSB s Programmable Features - Clean and build the project - Flash the project to the XDK

14 Overview Examples Page Output When running the program keep the USB plugged in to the PC. The USB will output a string of data you can read to indicate correct functionality. Picture 14: SendVirtualSensorDataOverUSB s Output with Virtual Device Monitor; Quaternion Orientation Setup 9. StreamSensorDataOverUsb This example will print out the sensor data from the XDK over the USB port to the PCB to be read in the XDK Workbench s Console. The data from each sensor is printed out at the same time. This code can be easily modified to demonstrate the XDK Monitor Plug In (Window -> Show View -> Other -> Other -> XDK Monitor). This plug in will show a graphical stream of the data coming though. To implement this function, open the c file of the data you wish to stream (i.e. LightSensor.c). Scroll down to print function and add the formatted printf line: printf("{[monitor]%s(%lu):light=%d%s}", "Sensor", OS_timeGetSystemTime(), SensorData, "Units"); Format the line exactly as above, with quotes where shown. Light can be edited to match type of sensor data being printed, Sensor is the physical sensor being monitored (i.e. BMA280 or Ambient Light), SensorData is the variable that contains the data value, and Units is the units of measurement for the data being displayed.

15 Overview Examples Page 15 Picture 15: Addition of MONITOR printf Function to Visualize the Ambient Light 9.1 Reqirements - XDK - USB Cable (USB A to USB micro) - Windows 7 or greater PC with XDK Workbench 1.5 Installed 9.2 Setup - Connect the XDK to the PC via a USB cable - Open XDK Workbench From the Welcome screen, open the StreamSensorDataOverUsb Example 9.3 Programming - Add monitor function if desired as described above - Clean and build the project - Flash the project to the XDK 9.4 Output When running the program keep the USB plugged in to the PC. The USB will output a string of data you can read to indicate correct functionality.

16 Overview Examples Page 16 Picture 16: StreamSensorDataOverUsb s Output with XDK Monitor 10. WlanNetworkManagement This example demonstrates how to use the XDK WLAN abstraction to scan for networks, join networks, set a static IP address or dynamically obtain an IP address via DHCP. The example sets up a task that should repeatedly scan for networks and connect/disconnect from a network. However there is a bug in the code and I had to modify the code just to have it cycle through the code once. I commented out the setandgetip function and moved it to the last line of the scannetwork function. As shown in picture 17.

17 Overview Examples Page 17 Picture 17: WlanNetworkManagment Example Quick Code Fix Reqirements - XDK - USB Cable (USB A to USB micro) - Windows 7 or greater PC with XDK Workbench 1.5 Installed - Available Wireless Network 10.2 Setup - Connect the XDK to the PC via a USB cable - Open XDK Workbench From the Welcome screen, open the StreamSensorDataOverUsb Example 10.3 Programming - Open the project and navigate to the file WlanNetworkManagment.h file - Configure the Network and DHCP setting as desired

18 Overview Examples Page 18 Picture 18: WlanNetworkManagement s Network Settings - Clean and build the project - Flash the project to the XDK 10.4 Output When running the program keep the USB plugged in to the PC. The USB will output a string of data you can read to indicate correct functionality. Picture 18: WlanNetworkManagement s Output 11. XdkApplicationTemplate This is an empty template serving as a starting point for new projects.

Cross-Domain Development Kit XDK110 Platform for Application Development

Cross-Domain Development Kit XDK110 Platform for Application Development Workbench First Steps Guide Cross-Domain Development Kit Platform for Application Development Bosch Connected Devices and Solutions : Guide Workbench First Steps Document revision 2.0 Document release

More information

Cross-Domain Development Kit XDK110 Platform for Application Development

Cross-Domain Development Kit XDK110 Platform for Application Development Workbench Installation Guide Cross-Domain Development Kit Platform for Application Development Bosch Connected Devices and Solutions : Guide Workbench Installation Document revision 2.0 Document release

More information

XDK HARDWARE OVERVIEW

XDK HARDWARE OVERVIEW XDK HARDWARE OVERVIEW Agenda 1 General Overview 2 3 4 Sensors Communications Extension Board 2 General Overview 1. General Overview What is the XDK? The Cross-Domain Development Kit, or XDK, is a battery

More information

Cross-Domain Development Kit XDK110 Platform for Application Development

Cross-Domain Development Kit XDK110 Platform for Application Development First Steps Guide Cross-Domain Development Kit Platform for Application Development Bosch Connected Devices and Solutions : Data Sheet Document revision 1.0 Document release date 01/08/16 Document number

More information

Cross-Domain Development Kit XDK110 Platform for Application Development

Cross-Domain Development Kit XDK110 Platform for Application Development USB Guide Cross-Domain Development Kit Platform for Application Development Bosch Connected Devices and Solutions : Data Sheet Document revision 1.0 Document release date 03/01/2017 Document number Technical

More information

3MP WI-FI SECURITY CAMERA QUICK START GUIDE ENGLISH

3MP WI-FI SECURITY CAMERA QUICK START GUIDE ENGLISH 3MP WI-FI SECURITY CAMERA QUICK START GUIDE ENGLISH WELCOME! Congratulations on your latest purchase and welcome to the Q-See family. This guide will help get your camera up and running. WHAT S INCLUDED

More information

Use of ISP1880 Accelero-Magnetometer, Temperature and Barometer Sensor

Use of ISP1880 Accelero-Magnetometer, Temperature and Barometer Sensor Use of Accelero-Magnetometer, Temperature and Barometer Sensor Application Note AN181105 Introduction Scope This application note describes how to set up a Sensor demonstration with Sensors Board that

More information

Cross-Domain Development Kit XDK110 Platform for Application Development

Cross-Domain Development Kit XDK110 Platform for Application Development LWM2M Guide Cross-Domain Development Kit Platform for Application Development Bosch Connected Devices and Solutions : Data Sheet Document revision 1.0 Document release date 11/07/16 Document number Technical

More information

Point of View SmartTV-500 Center - Android 4.2. General notices for use...2 Disclaimer...2 Box Contents...2

Point of View SmartTV-500 Center - Android 4.2. General notices for use...2 Disclaimer...2 Box Contents...2 Point of View SmartTV-500 Center - Android 4.2 English Table of Contents General notices for use...2 Disclaimer...2 Box Contents...2 1.0 Product basics...3 1.1 Buttons and connections... 3 1.2 Connecting

More information

Table of Contents. Manual Overview

Table of Contents. Manual Overview Table of Contents Manual Overview D-Link reserves the right to revise this publication and to make changes in the content hereof without obligation to notify any person or organization of such revisions

More information

Technical characteristics (MICA)

Technical characteristics (MICA) HARTING MICA CISS Complete IIoT Starter Kit - Data Sheet Advantages Technical characteristics (MICA) All hardware and software components included to start your industrial condition monitoring application

More information

CISS Communication Protocol Bluetooth LE

CISS Communication Protocol Bluetooth LE CISS Communication Protocol Bluetooth LE BLE Communication Protocol - CISS 2 17 Table of contents 1 Change-log 3 2 General information & limitations 3 3 I40 Bluetooth Low Energy profile 4 3.1 Profile description

More information

Key Features. Flexible docking options

Key Features. Flexible docking options - 1 - GV-OPAL S1 Series GV OPAL S1 Key Features 1/3 progressive scan CMOS Dual streams in H.264 Up to 15 fps at 2560 x 1440, 30 fps at 1920 x 1080 High definition resolution Ease of use 100% wire free

More information

Lab 1: Introductory Project to Breadware

Lab 1: Introductory Project to Breadware 1 Lab 1: Introductory Project to Breadware Exploration of Breadware s IoT Development Tools Overview The goal of this lab is to become familiar with the Internet of Things prototyping tools available in

More information

BNO055 USB Stick user guide

BNO055 USB Stick user guide Application Note BNO055 USB Stick user guide User Motion Quaternion Linear Acceleration Rotation Gravity Robust Heading Application note: BNO055 USB stick user guide Document revision 1.1 Document release

More information

Cross-Domain Development Kit XDK110 Platform for Application Development

Cross-Domain Development Kit XDK110 Platform for Application Development User Guide Cross-Domain Development Kit Platform for Application Development Bosch Connected Devices and Solutions : Data Sheet Document revision 1.0 Document release date 2015-12-15 Document number Technical

More information

CISS - Connected Industrial Sensor Solution

CISS - Connected Industrial Sensor Solution CISS - Connected Industrial Sensor Solution BLE Communication Protocol 1 Table of contents 1 Change-log 3 2 General information & limitations 3 3 I40 Bluetooth Low Energy profile 4 3.1 Profile description

More information

User Manual. Wireless IP Camera

User Manual. Wireless IP Camera User Manual Wireless IP Camera Introduction Hi. Thank you for purchasing the AUKEY VT-CM1 Wireless Security IP Camera. Please read this user manual carefully and keep it in a safe place for future reference.

More information

WIFI BABY MONITOR. User Guide

WIFI BABY MONITOR. User Guide WIFI BABY MONITOR User Guide PNMWIFIAC What s inside Welcome!... 2 Getting started... 3 Tour of the system... 9 Everyday use...13 Motion detection...14 Sound detection...14 Auto-record time...15 Battery

More information

3G/WiFi In-Vehicle Surveillance & GPS Tracking System

3G/WiFi In-Vehicle Surveillance & GPS Tracking System Model: MDVR-J200 3G/WiFi In-Vehicle Surveillance & GPS Tracking System Quick Start Guide Thank you for purchasing a Securview Vehicle Surveillance & Tracking System This Quick Start Guide covers basic

More information

3DM-GX5-25 Attitude Heading Reference System (AHRS)

3DM-GX5-25 Attitude Heading Reference System (AHRS) LORD QUICK START GUIDE 3DM-GX5-25 Attitude Heading Reference System (AHRS) The 3DM - GX5-25 is a high- performance, industrial- grade Attitude Heading Reference System (AHRS) that combines micro inertial

More information

DT0095 Design tip. Datalogging the SensorTile through a PC. Purpose and benefits. Description

DT0095 Design tip. Datalogging the SensorTile through a PC. Purpose and benefits. Description DT0095 Design tip Datalogging the SensorTile through a PC By Mauro Scandiuzzo Main components STEVAL-STLKT01V1 STSW-STLKT01 SensorTile development kit Embedded software samples for SensorTile, including

More information

battery icon in the bottom right corner of the display screen.

battery icon in the bottom right corner of the display screen. ATTENTION: This handbook contains important information regarding the safe and correct use of your tablet. Please be sure to read the following in order to maximize your enjoyment of the device and to

More information

UG313: Thunderboard Sense 2 Bluetooth Low Energy Demo User's Guide

UG313: Thunderboard Sense 2 Bluetooth Low Energy Demo User's Guide UG313: Thunderboard Sense 2 Bluetooth Low Energy Demo User's Guide The Thunderboard Sense 2 Bluetooth Low Energy Demo is a complete sensor-to-cloud solution for the Thunderboard Sense 2 kit and accompanying

More information

Renesas PE-HMI1 Synergy S7 with Clarinox SPP Application

Renesas PE-HMI1 Synergy S7 with Clarinox SPP Application Application Project Guide Version 0.1 Renesas PE-HMI1 Synergy S7 with Clarinox SPP Application Contents 1. Introduction... 3 2. Prerequisites... 3 3. Requirements... 3 4. Installation and Importing for

More information

1. Establishing a WiFi Connection

1. Establishing a WiFi Connection 1. Establishing a WiFi Connection WiFi carries out video transmission between the WICA Training Assistant and the mobile terminal, so there needs to be an established WiFi connection before proper use.

More information

SAMSUNG ELECTRONICS RESERVES THE RIGHT TO CHANGE PRODUCTS, INFORMATION AND SPECIFICATIONS WITHOUT NOTICE. Products and specifications discussed

SAMSUNG ELECTRONICS RESERVES THE RIGHT TO CHANGE PRODUCTS, INFORMATION AND SPECIFICATIONS WITHOUT NOTICE. Products and specifications discussed SAMSUNG ELECTRONICS RESERVES THE RIGHT TO CHANGE PRODUCTS, INFORMATION AND SPECIFICATIONS WITHOUT NOTICE. Products and specifications discussed herein are for reference purposes only. All information discussed

More information

VHC2. User Guide. Version 1.3.

VHC2. User Guide. Version 1.3. VHC2 User Guide Version 1.3 www.audatex.co.uk Revision History Date Version Description Author 30/06/16 v1.0 Initial Version Dean Weller 11/07/16 v1.1 Log in Removed Dean Weller 28/10/16 v1.2 AEG Integration

More information

Physilog 5 Research ToolKit and Matlab ToolKit User manual

Physilog 5 Research ToolKit and Matlab ToolKit User manual Physilog 5 Research ToolKit and Matlab ToolKit User manual Thank you for purchasing Physilog 5, the Swiss quality movement sensor. The Research ToolKit is the free companion software suite provided by

More information

Cross-Domain Development Kit XDK110 Platform for Application Development

Cross-Domain Development Kit XDK110 Platform for Application Development General Information Guide Cross-Domain Development Kit Platform for Application Development Bosch Connected Devices and Solutions : General Information Guide Document revision 2.0 Document release date

More information

Getting Started with your MicroPnP Development and Evaluation Kit

Getting Started with your MicroPnP Development and Evaluation Kit VersaSense NV, Kroegberg 3, B-3000 Leuven, info@versasense.com Getting Started with your MicroPnP Development and Evaluation Kit 1. Deploy your MicroPnP network: 1. Connect the provided antennas to the

More information

Windows Phone Week5 Tuesday -

Windows Phone Week5 Tuesday - Windows Phone 8.1 - Week5 Tuesday - Smart Embedded System Lab Kookmin University 1 Objectives and what to study Training 1: To Get Accelerometer Sensor Value Training 2: To Get Compass Sensor Value To

More information

Farm Sprayer GPS Pro & Pro Software. Operation Manual

Farm Sprayer GPS Pro & Pro Software. Operation Manual Farm Sprayer GPS Pro & Pro Software Operation Manual 1 Table of Contents INSTALLATION OF PRO SOFTWARE 3 UPDATING SOFTWARE 4 SETTING UP THE GPS CABLES & CONNECTORS 5 CONNECTING TO WIFI TO SAVE MAPS 6 OPERATING

More information

1. Introduction P Package Contents 1.

1. Introduction P Package Contents 1. 1 Contents 1. Introduction ------------------------------------------------------------------------------- P. 3-5 1.1 Package Contents 1.2 Tablet Overview 2. Using the Tablet for the first time ---------------------------------------------------

More information

Hexiwear. Contents. Getting started. Wake up. Hexiwear. From MikroElektonika Documentation

Hexiwear. Contents. Getting started. Wake up. Hexiwear. From MikroElektonika Documentation Page 1 of 8 Hexiwear From MikroElektonika Documentation Hexiwear is a wearable development kit for the Internet of Things era. A small and sleek, lowpower device packed with sensors to quantify yourself

More information

Mi Home Security Camera Connection Guide. (ios)

Mi Home Security Camera Connection Guide. (ios) Mi Home Security Camera Connection Guide (ios) 1. Navigate to the APP Store with your iphone and search for Mi Home, or scan the QR code below to download and install Mi Home APP. 2. Plug in the Mi Home

More information

HOME SECURITY KIT. USER MANUAL SMART PROTECTION WITH THE ALL-IN-ONE SOLUTION. SMART WINDOW SENSOR SMART POWER SOCKET SMART MOTION SENSOR SMART IP CAM

HOME SECURITY KIT. USER MANUAL SMART PROTECTION WITH THE ALL-IN-ONE SOLUTION. SMART WINDOW SENSOR SMART POWER SOCKET SMART MOTION SENSOR SMART IP CAM HOME SECURITY KIT. SMART PROTECTION WITH THE ALL-IN-ONE SOLUTION. SMART WINDOW SENSOR SMART POWER SOCKET SMART IP CAM SMART MOTION SENSOR USER MANUAL SL-900100/900111 HOME SECURITY KIT A/B SHORT INSTRUCTION

More information

FP Desktop Professional Software

FP Desktop Professional Software FP Desktop Professional Software Handbook Content Introduction... 2 1) Installation... 3 2) First Steps... 5 Login... 5 Premium Account... 7 USB Bluetooth Dongle... 9 3) Create measurement report... 10

More information

5/5/2016 Bluetooth Developer Studio Level 2 Profile Report PROFILE SERVICES. Generic Access - CHARACTERISTICS Device Name. Profile Name BBC MICROBIT

5/5/2016 Bluetooth Developer Studio Level 2 Profile Report PROFILE SERVICES. Generic Access - CHARACTERISTICS Device Name. Profile Name BBC MICROBIT 5/5/2016 Bluetooth Developer Studio Level 2 Profile Report PROFILE Profile Name BBC MICROBIT Custom profile for the BBC micro:bit Version 1.9 27th April 2016 Added Nordic Semiconductor UART service Version

More information

ETVR360CAMW-User Guide

ETVR360CAMW-User Guide ETVR360CAMW-User Guide TABLE OF CONTENTS 1. PARTS... 3 GETTING STARTED... 6 Charging the Battery... 6 Power On & Power Off... 6 Use Mode... 6 Independent Operation... 6 APP... 6 CONNECTING THROUGH WIFI...

More information

Cross-Domain Development Kit XDK110 Platform for Application Development

Cross-Domain Development Kit XDK110 Platform for Application Development Sensor Guide Cross-Domain Development Kit Platform for Application Development Bosch Connected Devices and Solutions : Data Sheet Document revision 2.1 Document release date 05.10.17 Workbench version

More information

Quick Start Guide Coherent WiFi Module

Quick Start Guide Coherent WiFi Module Quick Start Guide Coherent WiFi Module This guide includes: Step-by-step instructions for connecting the WiFi Module to tablets via Direct WiFi. (p. 2) Instructions for setting up the LabMax-Pro Mobile

More information

Smart Wireless Camera Instructions

Smart Wireless Camera Instructions Smart Wireless Camera Instructions Dear customer, welcome to use our product, if you don t like this camera and want to return it to us, in order to protect your privacy and delete the video history from

More information

Quick Installation Guide

Quick Installation Guide Quick Installation Guide NEXTAV TM Cloud Hub - Table of Contents Product Features... 1 Ways to Connect... 1 Hardware and Accessories... 2 Product Parameters... 2 Minimum Hardware Requirements... 2 Product

More information

HCOMM Reference Manual

HCOMM Reference Manual HCOMM Reference Manual Document Number: 1000-2984 Document Revision: 0.3.2 Date: December 23, 2013 November 21, 2013 1000-2984 Revision 0.3.1 1 / 49 Copyright 2012, Hillcrest Laboratories, Inc. All rights

More information

Catalogue. Assembling... 1 Unpack Charge the Battery Install the Memory Card Product Basics Buttons and Connections...

Catalogue. Assembling... 1 Unpack Charge the Battery Install the Memory Card Product Basics Buttons and Connections... Catalogue Assembling... 1 Unpack... 1 Charge the Battery... 1 Install the Memory Card... 1 1 Product Basics... 2 1.1 Buttons and Connections... 2 1.2 Start Up and Shut Down... 2 2 Introduction of Google

More information

STEP 1: PREPARE FOR DATA MIGRATION 1. Right-click the desktop and choose New > Folder. a. Type For Transferring and press Enter to name the folder.

STEP 1: PREPARE FOR DATA MIGRATION 1. Right-click the desktop and choose New > Folder. a. Type For Transferring and press Enter to name the folder. PC Support and Repair Chapter 5 Data Migration Lab 5144 When a new computer is purchased or a new operating system is installed, it is often desirable to migrate a user s data to the new computer or OS.

More information

FOR FURTHER ASSISTANCE, PLEASE CALL:

FOR FURTHER ASSISTANCE, PLEASE CALL: USER MANUAL Welcome Thank you for choosing TeeVee. To set up your TeeVee box and enjoy all of the features available with your device, please review the user manual. Follow all steps before using this

More information

MCS-TOUCHSCREEN Auto Disk Clean up

MCS-TOUCHSCREEN Auto Disk Clean up APP093 - MCS-Touchscreen Error 16 Auto Diskcleanup Procedure Micro Control Systems APPLICATION NOTE APP-093 MCS-TOUCHSCREEN Auto Disk Clean up Revision History Date Author Revision Description 07/31/2014

More information

BCM4343W IoT Starter Kit Getting Started Guide Version 2.1

BCM4343W IoT Starter Kit Getting Started Guide Version 2.1 BCM4343W IoT Starter Kit Getting Started Guide Version 2.1 Page 1 Copyright 2017 Avnet, Inc. AVNET, Reach Further, and the AV logo are registered trademarks of Avnet, Inc. All other brands are the property

More information

Point of View Mobii 825D - Android 4.2 Tablet PC. General notices for use... 2 Disclaimer... 2 Box Contents... 2

Point of View Mobii 825D - Android 4.2 Tablet PC. General notices for use... 2 Disclaimer... 2 Box Contents... 2 Table of Contents General notices for use... 2 Disclaimer... 2 Box Contents... 2 1.0 Product basics... 3 1.1 Buttons and connections... 3 1.2 Start up and shut down... 3 2.0 Introduction to Google Android

More information

Qpad X5 User Guide Hi-Target Surveying Instrument Co., Ltd. All Rights Reserved

Qpad X5 User Guide Hi-Target Surveying Instrument Co., Ltd. All Rights Reserved Qpad X5 User Guide Hi-Target Surveying Instrument Co., Ltd. All Rights Reserved Manual Revision Preface File number: Revision Date Revision Level Description 2016-06-03 1 Qpad X5 User Guide II Qpad X5

More information

WELCOME. For customer support or any inquiries, please visit our web site at or contact us at

WELCOME. For customer support or any inquiries, please visit our web site at  or contact us at WELCOME Congratulations on purchasing the GBF Smart Four Wire Intercom System. Our factory engineers were the first to enable multiple security cameras being monitored through a smart mobile device and

More information

Create your Amazon Account

Create your Amazon Account Please read the following instructions carefully before you begin. Before you start, make sure you know your wireless network name (and password if the network is password-protected). If you re using a

More information

PROMPT VISUAL NOTIFICATION POD

PROMPT VISUAL NOTIFICATION POD PROMPT VISUAL NOTIFICATION POD Prompt User Manual2014 CONTENTS OVERVIEW...3 STANDARD NOTIFICATIONS...4 INCLUDED IN THE BOX...4 THE PROMPT...3 CHARGING PROMPT...5 CONNECTING TO PROMPT...6 TURNING ON IOS

More information

HYDRA2 DIGICO ORANGE BOX INTERFACE

HYDRA2 DIGICO ORANGE BOX INTERFACE HYDRA2 DIGICO ORANGE BOX INTERFACE calrec.com Putting Sound in the Picture ORANGE BOX HYDRA 2 INTERFACE ORANGE BOX - FRONT VIEW The Orange Box provides audio format conversion between any two of the ten

More information

Ultigesture UG Wristband User Manual

Ultigesture UG Wristband User Manual Ultigesture UG Wristband User Manual Version 1.1 Table of Contents 1 Introduction... 2 2 UG Wristband Hardware Components... 2 3 Android Software... 3 3.1 3.2 3.3 4 Pre-Requisites...3 Steps to Develop

More information

JH08nv Wireless Home Monitor User Manual

JH08nv Wireless Home Monitor User Manual JH08nv Wireless Home Monitor User Manual Version: J1409-1.0 www.nv.ca Please read this manual carefully before usage for fast and correct operation. Product appearance, color and accessories are subject

More information

FAQ for KULT Basic. Connections. Settings. Calls. Apps. Media

FAQ for KULT Basic. Connections. Settings. Calls. Apps. Media FAQ for KULT Basic 1. What do the Icons mean that can be found in notifications bar at the top of my screen? 2. How can I move an item on the home screen? 3. How can I switch between home screens? 4. How

More information

Contents. 1. Downloading the ios Mobile App Configuration Additional Information... 9 LED indications... 9 Operating the Device...

Contents. 1. Downloading the ios Mobile App Configuration Additional Information... 9 LED indications... 9 Operating the Device... Contents 1. Downloading the ios Mobile App... 2 2. Configuration... 2 3. Additional Information... 9 LED indications... 9 Operating the Device... 9 1 1. Downloading the ios Mobile App The Dialog Smartlife

More information

Studio 5.5. User Manual

Studio 5.5. User Manual Studio 5.5 User Manual 1 Table of Contents Safety Information... 3 Appearance and Key Function... 4 Introduction... 5 Call Functions... 6 Contacts... 7 Messaging... 8 Internet Browser... 9 Bluetooth...

More information

APAD SERIES TABLET PRODUCT SPECIFICATION V1.8

APAD SERIES TABLET PRODUCT SPECIFICATION V1.8 APAD SERIES TABLET PRODUCT SPECIFICATION V1.8 1. APAD PERFORMANCE CHARACTERISTICS CPU Cortex -A53 Quad core 1.2GHz Operating System Android 5.1 RAM 2GB ROM 16GB Expansion Slot Micro SD Card, 32GB SDHC

More information

QUICK START GUIDE VAB-630. Android EVK v

QUICK START GUIDE VAB-630. Android EVK v QUICK START GUIDE VAB-630 Android EVK v1.0.3 1.00-08112017-110800 Copyright Copyright 2017 VIA Technologies Incorporated. All rights reserved. No part of this document may be reproduced, transmitted, transcribed,

More information

Magnetic base Indicator light Microphone Camera lens Micro SD card slot Infrared light Front Side Pivot connector Built-in speakers

Magnetic base Indicator light Microphone Camera lens Micro SD card slot Infrared light Front Side Pivot connector Built-in speakers Niro USER MANUAL Contents Introduction 4 Product Features 5 Niro LED Indicators 6 What s Included 7 Wi-Fi Requirements 8 Mobile Device Requirements 8 Garage Door Opener Requirements 8 Download the Momentum

More information

CommCare for Android Smartphones

CommCare for Android Smartphones CommCare for Android Smartphones The information on this page reflects the old design of CommCare This page is primarily useful for programs using older versions of CommCare. A page directed at the newer

More information

SIGNATUS USER MANUAL VERSION 3.7

SIGNATUS USER MANUAL VERSION 3.7 SIGNATUS USER MANUAL VERSION 3.7 CONTENTS 1 INTRODUCTION... 3 1.1 Launching SIGNATUS... 4 1.1.1 Update your SIGNATUS License... 4 1.2 Main Menu... 6 2 SETTINGS OVERVIEW... 7 3 OPEN DOCUMENT... 8 3.1 Form

More information

STEVAL-STLKT01V1. SensorTile development kit. Description. Features

STEVAL-STLKT01V1. SensorTile development kit. Description. Features SensorTile development kit Data brief FP-SNS-ALLMEMS1: STM32 ODE functional pack ST BlueMS: ios and Android demo apps BlueST-SDK: ios and Android SD Compatible with STM32 ecosystem through STM32Cube support

More information

FAC-R Frequency to Analog Converter Installation, Operating & Maintenance Manual

FAC-R Frequency to Analog Converter Installation, Operating & Maintenance Manual COMPANY FAC-R Frequency to Analog Converter Installation, Operating & Maintenance Manual 2017 AW-Lake Company. All rights reserved. Doc ID:FACMAN12082017 V4 Table of Contents Product Overview...3 Operation...3

More information

Broadcom BCM943364WCD1 C-SDK Setup Guide. Version 1.0

Broadcom BCM943364WCD1 C-SDK Setup Guide. Version 1.0 Broadcom BCM943364WCD1 C-SDK Setup Guide Version 1.0 Software Change Log... 2 Introduction... 2 About the Broadcom BCM943364WCD1... 2 Installation... 3 Downloads and Prerequisites... 3 Configuration and

More information

User manual of the 4K camera waterproof gimbal

User manual of the 4K camera waterproof gimbal User manual of the 4K camera waterproof gimbal www.swellpro.com Content Installation 03 Operation 04 Gimbal Control Camera Control 04 04 Camera 04 Insert Micro SD card Camera Setting and Usage Camera Setting

More information

How to Download Photographs and Video from Digital Cameras at SMS

How to Download Photographs and Video from Digital Cameras at SMS How to Download Photographs and Video from Digital Cameras at SMS Cameras with SD Card (see next page for video cameras) 1. Laptop computer: Remove the SD card from the camera and insert it into the SD

More information

WI-FI GARAGE DOOR CONTROLLER WITH CAMERA USER MANUAL

WI-FI GARAGE DOOR CONTROLLER WITH CAMERA USER MANUAL WI-FI GARAGE DOOR CONTROLLER WITH CAMERA USER MANUAL Contents Introduction 4 Product Features 5 Garage Door Controller LED Indicators 6 What s Included 7 Wi-Fi Requirements 8 Mobile Device Requirements

More information

1. Introduction P Package Contents 1.

1. Introduction P Package Contents 1. 1 Contents 1. Introduction ------------------------------------------------------------------------------- P. 3-5 1.1 Package Contents 1.2 Tablet Overview 2. Using the Tablet for the first time ---------------------------------------------------

More information

General notices for use... 2 Disclaimer... 2 Box Contents... 2

General notices for use... 2 Disclaimer... 2 Box Contents... 2 TAB-PI847 Table of Contents General notices for use... 2 Disclaimer... 2 Box Contents... 2 1.0 Product basics... 3 1.1 Buttons and connections... 3 1.2 Start up and shut down... 4 2.0 Introduction to Google

More information

Catalogue. General notices for use...ii. Disclaimer...II. Box Contents...II. 1. Product Basics Buttons and connections...

Catalogue. General notices for use...ii. Disclaimer...II. Box Contents...II. 1. Product Basics Buttons and connections... Catalogue General notices for use...ii Disclaimer...II Box Contents...II 1. Product Basics...1 1.1 Buttons and connections... 1 1.2 Start up and shut down... 1 2. Introduction to Google Android 4.2...2

More information

GV-Eye Mobile App. Contents

GV-Eye Mobile App. Contents GV-Eye Mobile App. Contents 1.1 Specifications... 2 1.2 Supported GV-IP Devices and Software... 3 1.2.1 Supported Products for Connection... 3 1.2.2 Supported Products for Enabling Monitoring... 4 1.2.3

More information

WRM 247+ QUICK GUIDE

WRM 247+ QUICK GUIDE Copyright 1999-2017 WAPICE Ltd - All rights reserved We control the copyright in this document, and you may only use this document or parts of this document in accordance with the provisions in our terms

More information

Battery Charging The tablet has a built-in rechargeable Li-polymer battery.

Battery Charging The tablet has a built-in rechargeable Li-polymer battery. Attention: This handbook contains important security measures and the correct use of the product information, in order to avoid accidents. Pls make sure to reading the manual carefully before use the device.

More information

Micro:bit - an Educational & Creative Tool for Kids

Micro:bit - an Educational & Creative Tool for Kids Micro:bit - an Educational & Creative Tool for Kids SKU:DFR0497 INTRODUCTION micro:bit is a pocket-sized microcontroller designed for kids and beginners learning how to program, letting them easily bring

More information

Getting started with FP-SNS-6LPNODE1 software for IoT sensor node connection to 6LoWPAN networks using sub-1ghz RF

Getting started with FP-SNS-6LPNODE1 software for IoT sensor node connection to 6LoWPAN networks using sub-1ghz RF User manual Getting started with FP-SNS-6LPNODE1 software for IoT sensor node connection to 6LoWPAN networks using sub-1ghz RF Introduction FP-SNS-6LPNODE1 is an STM32 ODE function pack. Thanks to this

More information

Lesson 9 Smart city Services And Monitoring. Chapter-12 L09: "Internet of Things ", Raj Kamal, Publs.: McGraw-Hill Education

Lesson 9 Smart city Services And Monitoring. Chapter-12 L09: Internet of Things , Raj Kamal, Publs.: McGraw-Hill Education Lesson 9 Smart city Services And Monitoring 1 Tech-Mahindra partnering with ThingWorx Smart City Solutions Smart traffic solutions Smart energy management Smart parking, Smart waste bins Smart street lighting

More information

SC600W WIFI IP HIDDEN CAMERA

SC600W WIFI IP HIDDEN CAMERA USER MANUAL SC600W WIFI IP HIDDEN CAMERA 1 YEAR WARRANTY All RecorderGear brand products are backed by our 1 Year Warranty. For full details visit WWW.RECORDERGEAR.COM This Device is Compliant with USA

More information

Bosch Video Management System. Configuration Manual

Bosch Video Management System. Configuration Manual Bosch Video Management System en Configuration Manual Bosch Video Management System Table of contents en 3 Table of contents 1 Using the Help 8 1.1 Finding information 8 1.2 Printing the Help 9 2 Introduction

More information

Wireless Digital Photo Frame Quick Start Guide

Wireless Digital Photo Frame Quick Start Guide Wireless Digital Photo Frame Quick Start Guide MODEL: AD1021W Package Contents Wireless Digital Photo Frame Quick Start Guide Power Adaptor Stand Limited Warranty Instructions Power on/off Speaker SD/SDHC

More information

Wireless IP Bird Box Camera

Wireless IP Bird Box Camera Wireless IP Bird Box Camera Model: 4901-18 Operation and Installation Manual 1 WELCOME... 3 PRODUCT OVERVIEW... 4 HARDWARE INSTALLATION... 4 Attach the External Power Adapter... 4 SMARTPHONE OR TABLET

More information

DASH 4.5 user manual 1

DASH 4.5 user manual 1 DASH 4.5 user manual 1 Table of Contents Safety Information... 3 Appearance and Key Function... 4 Introduction... 4 Call Functions... 6 Contacts... 6 Messaging... 8 Internet Browser... 9 Bluetooth... 10

More information

Contents. 1. Verify the package contents

Contents. 1. Verify the package contents Bullet VERSION 1.3 This installation guide provides basic instructions for installing the PLC-325PW/ PLC-335PW on your network and then configure Android, ios App and PC software to view the camera. For

More information

XMReality 6. User Manual for Windows XMReality AB Teknikringen 10, 8 fl SE Linköping Sweden

XMReality 6. User Manual for Windows XMReality AB Teknikringen 10, 8 fl SE Linköping Sweden XMReality 6 User Manual for Windows - 6.2 1 XMReality AB Teknikringen 10, 8 fl SE-583 30 Linköping Sweden Introduction This is a user manual for XMReality Remote Guidance Generation 6 for Windows. An account

More information

Communication. Identity

Communication. Identity Mailock User guide OUR MISSION STATEMENT To Secure your Communication Data Identity Contents Introducing Mailock... 5 Business Users... 5 What do you need to run Mailock?... 5 In a browser... 5 On a mobile

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

USING THE MONITOR. Guardzilla 180 Indoor

USING THE MONITOR. Guardzilla 180 Indoor Guardzilla 180 Indoor USING THE MONITOR The monitor on your Guardzilla app provides the ability to access a live, 180 degree video feed of your entire monitored area, broadcast into the area, listen in,

More information

AJA Helo Video Streaming. A Quick Start Guide for Streaming Video to You Tube with the AJA Helo

AJA Helo Video Streaming. A Quick Start Guide for Streaming Video to You Tube with the AJA Helo AJA Helo Video Streaming A Quick Start Guide for Streaming Video to You Tube with the AJA Helo The AJA Helo streams and records video. Records: H.264 video at a maximum of 20 mbps. Streams: H.264 video

More information

Dash 4.0. User Manual

Dash 4.0. User Manual 1 Dash 4.0 User Manual Table of Contents Safety Information... 3 Appearance and Key Function... 4 Introduction... 5 Call Functions... 6 Contacts... 7 Messaging... 8 Internet Browser... 9 Bluetooth... 10

More information

Cloud Frame Quick Start Guide

Cloud Frame Quick Start Guide Cloud Frame Quick Start Guide The product's pictures and UI in this QSG are for reference only, and the product's appearance will vary with each model. Motion Sensor Remote illustration Open the battery

More information

Introduction. Step 1 : Select a camera. Sony UPX-C200

Introduction. Step 1 : Select a camera. Sony UPX-C200 How To : Connect a Camera Introduction ID station comes with a wireless connection (SD card) that allows you to work with any camera with an SD card slot. Just insert the wireless SD card into your camera

More information

Download and Install Connecting your Smart Device to Aurora Controlling the Camera Modes Settings... 18

Download and Install Connecting your Smart Device to Aurora Controlling the Camera Modes Settings... 18 Table of Contents Download and Install... 2 Connecting your Smart Device to Aurora... 7 Controlling the Camera... 13 Modes... 16 Settings... 18 Transfer and Share Images and Videos... 40 Aurora User Manual

More information

Internet of Things 2017/2018

Internet of Things 2017/2018 Internet of Things 2017/2018 LESHAN (pictures from standards docs & software descriptions in presentations) Johan Lukkien Leila Rahman John Carpenter, 1982 1 Guiding questions How does LESHAN support the

More information

Bluetooth Embedded Inertial Measurement Unit for Real-Time Data Collection for Gait Analysis

Bluetooth Embedded Inertial Measurement Unit for Real-Time Data Collection for Gait Analysis Bluetooth Embedded Inertial Measurement Unit for Real-Time Data Collection for Gait Analysis Ravi Chandrasiri Sri Lanka Institute of Information Technology Colombo, Sri Lanka ravi.chandrasiri@gmail.com

More information

PV-RC300W. WI-FI 1.3M pix Cam Matchbox DVR Quick Guide

PV-RC300W. WI-FI 1.3M pix Cam Matchbox DVR Quick Guide PV-RC300W WI-FI 1.3M pix Cam Matchbox DVR Quick Guide A. Regarding the Device 1. Power On/Off Button & WI-FI On/Off 2. REC Button & Client Button & WI-FI Reset 3. Memory Card Slot 4. Camera Lens 5. USB

More information

MicroBot Push User Guide

MicroBot Push User Guide MicroBot Push User Guide Troubleshooting 24 My Microbot App does not detect my MicroBot Push 24 MicroBot Push keeps disconnecting 25 MicroBot Push is not updating 25 Getting Started 2 Meet MicroBot Push

More information