How to Configure your Intel Galileo Gen 2 Board

Size: px
Start display at page:

Download "How to Configure your Intel Galileo Gen 2 Board"

Transcription

1 Intel Galileo Gen 2 Board

2 Revision # Date ThingWorx Revision Changes Owner current Used you instead of we, added copyright and page cover, modified footer Modified Cover Page font, footer, review table and copyright paragraph position in the document at Andy s suggestion Replaced the OS image on the Galileo to provide sketch persistancy. Added Wireless tutorial Veronica MIHAI Veronica MIHAI Veronica MIHAI Veronica MIHAI Contents What is Intel Galileo?... 3 Required Materials... 3 Install a SD-Card Linux Image... 4 Download the Arduino IDE for Galileo to your PC... 7 Install USB Driver for Intel Galileo board on your PC... 9 Update the Firmware and set up Galileo Boot from the SD Card Upload the Blink Program Set up the HTU21D Temperature and Humidity sensor Connect your board to Thingworx using a Wifi Connection Physical Setup Network Configuration from Intel Galileo s command line Intel Galileo Gen 2 Board PTC Inc. 2

3 What is Intel Galileo? An Intel Galileo is a microprocessor hardware-, software-, and pin-compatible with a wide range of Arduino Uno* R3 shields. It comes with a preinstalled Linux-like operating system and can also boot from a customized Linux version installed on a micro-sd card. With Intel Galileo you can use either the Arduino IDE and upload sketches 1 to the board or you can enable ssh and use the command line to run programs in a programming language of your choice, like for example Python or C. A notable difference between Intel Galileo Gen 2 and Gen 1 is the power supply that it needs. The Intel Galileo Gen 2 works with a 12 V power supply whereas the Intel Galileo Gen 1 needs only a 5 V power supply. You can find an overview of Intel Galileo Gen 2 board here. To build the Temperature and Humidity App in Thingworx using Intel Galileo you will need the following hardware: Required Materials Item Intel Galileo Gen 2 1 Solderless breadboard 1 Ethernet Cable (Alternative to wifi setup) 1 Wi-Fi setup (Alternative to Ethernet Connection) : - Half Mini Wi-Fi Card - Half to Full Height Wi-Fi Card Adapter - Wi- Fi Antenna Quantity pair 8 G microsd card with an SD Adapter 1 The 12 V DC power supply that came with 1 your Intel Galileo or equivalent battery pack Temperature and Humidity sensor HTU21D 1 Male to male jumper wires 4 Soldering iron (Optional, if you don t have 1 the pins of the HTU21D sensor already soldered) USB A to micro B cable 1 1 A sketch is a program written in a C-like language specific to Arduino microprocessors. The program is stored in an.ino file. Intel Galileo Gen 2 Board PTC Inc. 3

4 Install a SD-Card Linux Image Intel Galileo already has a preinstalled Linux like operating system, but its functionalities are quite limited due to its tiny size, only 8 MB stored on the build-in flash memory of the Intel Galileo board. To enable your IoT project you will need to use a more powerful Linux image. Some advantages for booting from a SD Card image are extended file storage and the possibility to install Wi-Fi Dongles drivers to enable Wi-Fi connectivity for example. Linux images for Intel Galileo are custom-built using Yocto, i.e. you can use Yocto to choose what Linux modules you would like to have installed on your Intel Galileo, like i2c-dev. Nevertheless the process of building a customized Linux image is quite tedious, so in this tutorial you will use an image that Intel has customized for IoT projects. To install this Linux image on your micro-sd card follow the next steps: - Download the SD-Card Linux Image archive file from here. - Insert your micro-sd card into your SD card adapter and then plug it into your PC SD card reader. You should be prompted by your PC that your SD card has been plugged in and you will be able to locate it in your Computer directory as shown below : Note the name of the drive on which the micro-sd card is on. In my case, it is H. - Open a command prompt as an Administrator: Go to Start, type cmd in the search field. Right click the found cmd.exe program an select Run as Administrator : Intel Galileo Gen 2 Board PTC Inc. 4

5 - Type diskpart.exe in the command prompt that opened. This program will allow you to create a boot partition on your micro-sd card so that the C programs (sketches) that you upload on your Intel Galileo will be persistent. - In the DISKPART command line that you now have available type the following commands : select vol h (Select the Drive on which your micro-sd card is on. In my case it is H ) clean create part primary active format quick label= BOOTIME exit Intel Galileo Gen 2 Board PTC Inc. 5

6 - Next, locate the archive you previously downloaded. Open it by double-clicking it. Enter the image-full-galileo folder and, from here, right-click in the window showing the files and choose to extract its content on your micro-sd card. This can take up to 3 minutes. At the end, you should be able to see the following content when opening your micro-sd card directory: Note: Make sure you are seeing these files directly in the root of your micro-sd card (i.e. you don t have them in the intel-galileo-full image directory but directly in the SD card s root), otherwise, the Linux image won t be recognized when booting. After this you can safely eject the micro SD card. Intel Galileo Gen 2 Board PTC Inc. 6

7 You will use the SD card in a later step to boot from it. You will next install the Arduino IDE for Galileo which will allows you to upload programs (called sketches) to your board using an USB A to micro B cable Download the Arduino IDE for Galileo to your PC The Intel Galileo Board needs a specialized version of the Arduino IDE. Download the Arduino IDE zip file corresponding to your PC operating system from this site. After the download is completed extract the files to your C drive and make sure there is no space in the path to the IDE files. You can also change the arduino-windows folder name to Galileo_Arduino to avoid confusing it with other Arduino IDEs for Arduino. To launch the IDE double-click the Arduino icon. This is how the Arduino Environment looks like. Intel Galileo Gen 2 Board PTC Inc. 7

8 You can also right click the application icon and choose to pin it to your Start Menu to locate it easier. Intel Galileo Gen 2 Board PTC Inc. 8

9 Note: To install the Arduino IDE on Mac OS or Linux check this tutorial. To be able to boot from your micro SD card you need to first install an USB driver for the board and then upload the firmware on the Intel Galileo. This will ensure that your micro SD card will be recognized. Install USB Driver for Intel Galileo board on your PC To be able to upload sketches on the board from the Arduino IDE, you have to connect your Intel Galileo board to your PC using a USB A to micro B cable. Windows install 1. Make sure your micro SD card is not plugged into your Intel Galileo board 2. First Connect the 12 V power supply that came with your Intel Galileo Gen 2 board. 3. Wait a few seconds for your USB led to light up. See picture below. 4. Then connect the micro USB end of your USB cable on your Galileo s USB Client port and the USB end to an available USB socket on your PC. On Windows, when connecting the Board to your PC, after a few seconds while Windows will try to install the driver, you will see a message telling you that Windows failed to install the driver for it. You will therefore need to install it manually. 5. Open up the Device Manager. (Either Start > Run > devmgmt.msc, or go to the Control Panel, select System and click Device Manager.) 6. Locate the Gadget Serial v2.4 device, under the Other devices tree. Right-click that and select Update Driver Software. Intel Galileo Gen 2 Board PTC Inc. 9

10 7. In the following window choose Browse my computer for driver software. On the next page select Browse and navigate to the hardware\arduino\x86\tools folder within your Arduino Galileo folder that you extracted from the Arduino IDE archive in a previous step. Then click Next. Intel Galileo Gen 2 Board PTC Inc. 10

11 8. Next click Install. Wait for the installation to complete and to be prompted with a Windows has successfully updated your driver software message. 9. Go back to the Device Manager window and check the Ports tree. There should be an entry for Galileo (COM #). Note on which COM # your Galileo is on. You will use this port when uploading sketches and in the next step, updating firmware. Intel Galileo Gen 2 Board PTC Inc. 11

12 Note: If you are using a Linux or Mac OS system, check this tutorial for information on how to install the driver. Notice that it is meant for an Intel Galileo Gen 1 board, therefore it tells you to connect a 5 V power supply. If you are using an Intel Galileo Gen 2 board as recommended in this tutorial, you will need a 12 V power supply. Make sure you don t confuse them because this could lead to serious damage of your board. Update the Firmware and set up Galileo To update the Firmware follow the next steps: 1. Make sure your micro SD card is not plugged in on your Intel Galileo board 2. First connect the 12 V power supply that came with your Intel Galileo Gen 2 board. 3. Wait a few seconds for your USB led to light up. 4. Then connect the micro USB end of your USB cable on your Galileo s USB Client port and the USB end to an available USB socket on your PC. 5. Open the Arduino IDE and Select Intel Galileo Gen 2 from Tools Board and the COM number on which your Intel Galileo is on from Tools Ports 6. Then go to Help Galileo Firmware Update. 7. You will be prompted by the following message. Click ok. You may be prompted by another message asking you if you want to rewrite the existing firmware. Click ok. You will be brought to this window. Intel Galileo Gen 2 Board PTC Inc. 12

13 Wait for the Update to finish. You can now proceed to boot from the SD Card. Boot from the SD Card To boot from the SD Card, follow the next steps: 1. Plug in your micro SD Card. Intel Galileo Gen 2 Board PTC Inc. 13

14 2. Plug in the power supply. 3. Wait for the USB led to light up. You should also be able to see the SD led next to the ON led blinking to signal SD card is currently being read. 4. Plug in also the USB cable as before and connect the board to your computer. Upload the Blink Program After booting from the micro SD card in the previously step, you now need to verify that everything is working correctly and that programs can be successfully uploaded to the Galileo board through the Arduino IDE. Follow the next steps to upload a sketch that will make the led labeled L on your board blink: 1. Use the Intel Galileo Board setup described in the previous step for how to boot from an SD card. 2. Open the Arduino IDE 3. In the Tools Board menu select Intel Galileo Gen 2 Intel Galileo Gen 2 Board PTC Inc. 14

15 4. In the Tools Serial Port select the COM number on which your Intel Galileo Board appeared connected in your Device Manager Ports Section (In my case: COM3) Intel Galileo Gen 2 Board PTC Inc. 15

16 5. Go to File Examples Basic Blink This will open a program that makes the little LED next to the ON led on your board blink. Intel Galileo Gen 2 Board PTC Inc. 16

17 And wait for the Transfer to be completed. Next you should see the LED on your board starting to blink. Note: Programs running on the Intel Galileo cannot be stopped. The Blink program will run continously until you replace it with a different one. Note that the sketch is stored on the board s memory and will start running even after cutting the power supply and then connecting it again. One way of stopping all activity on the Intel Galileo is to upload an empty program like the one you see when pressing File New in the Arduino IDE. Intel Galileo Gen 2 Board PTC Inc. 17

18 You can run into a permission denied error when you try to upload a sketch on your board while another sketch is already being uploaded. This can happen if you don t wait for the upload process to finish before pressing the upload button again. I have found that a solution to this problem is to restart your PC and try to upload the file again. Set up the HTU21D Temperature and Humidity sensor First unplug the USB cable and then the power supply and proceed to connecting the HTU21D sensor. The HTU21D Temperature and Humidity sensor has 4 pins, Ground, 3.3 V Voltage, SDA (Serial Data Line), SCL (Serial Clock Line), that need to be connected to the Intel Galileo. I bought my sensor with already attached male pins, but you may need to solder them manually to the sensor circuit. Place the HTU21D sensor on the solderless breadboard with the description of the pins towards you like shown below. Next connect one male to male jumper wire on each of the 4 columns corresponding to the sensors pins like shown below. Intel Galileo Gen 2 Board PTC Inc. 18

19 Note : Solderless breadboard columns share the same voltage. You can read more about breadboards here. Sparkfun breadboard Picture Connect the 3.3 V pin of the sensor to the 3.3 V pin on the Intel Galileo. The Ground Pin of the sensor to the Ground pin of the Intel Galileo and the SDA and SCL pins of the sensors to the corresponding pins on the Intel Galileo as shown below. Intel Galileo Gen 2 Board PTC Inc. 19

20 Now our temperature and humidity sensor is set up. Next : 1. Plug the micro SD card in your Intel Galileo micro SD card slot. 2. Connect the Ethernet cable. See the section below to learn how to use a Wi-Fi connection instead of an Ethernet cable. 3. Connect the power supply. 4. Wait for a few seconds so that the USB LED lights up and the board has booted from the SD card. 5. Connect the USB cable between your board and your PC. Your board is now ready. You can proceed to uploading a sketch that will read values from the Temperature and Humidity sensor and send them to the Thingworx Server. Follow the instructions detailed in How to read Temperature and Humidity from HTU21D sensor using Thingworx C SKD for Intel Galileo tutorial to learn how to do this. Optional, you can follow the tutorial below for connecting your board to a Wi-Fi network. Connect your board to Thingworx using a Wifi Connection Physical Setup If you have your Intel Galileo Board powered up, proceed to unplug it, first the micro USB and then the power supply. Next you will set up the mini Wi-Fi card with the Half to Full Adapter and the pair of Anntenas on your Intel Galileo. This tutorial is done for a N6235 Intel Centrino Wi-Fi Card Half Mini PCI which also provides Bluetooth conectivity. Other choices of Wi-Fi card are possible. You can see a list of Wi-Fi card supported by the Linux Kernel by visiting this link. Intel Galileo Gen 2 Board PTC Inc. 20

21 First, slide the Half to Full Adapter under the Wi-Fi Card and insert the two screws. Turn the Intel Galileo over and Insert this assemble into to PCI Connector slot. Next connect also the pair of anntenas. Be careful to connect the main and aux antenna to the corresponding main and aux slots on the Wi-Fi card. Now our Physical Wi-Fi setup is complete. To make your Intel Galileo entirely portable you can use also a Battery Pack like the one indicated in the Marials listed for this tutorial. Intel Galileo Gen 2 Board PTC Inc. 21

22 Network Configuration from Intel Galileo s command line In this section you will learn how to modify the network/interfaces and wpa_supplicant.conf files on your Intel Galileo to configure the SSID and password of the wireless network you want to connect to. The first step you need to do is installing the driver for your Wi-Fi card. In this tutorial. Intel Centrino N6235 card is used. Download the driver corresponding to your Wi-Fi card from here. Next, copy the archive you downloaded (for N6235 Wi-Fi card it is iwlwifi-6000g2b-ucode tgz file) on your micro-sd card. To do this, unplugg your micro-sd card from your Intel Galileo board, then use the SD adapter to put it into your PC. Afterwards, simply copy and paste the archive with the Wi-Fi driver directly into your micro-sd root directory. Next unplug it and put it back into your Intel Galileo board. To install the driver you will need to first connect remotely to your board using a SSH Client like Putty. You can download Putty from here. To find out your Intel Galileo board IP follow the next steps: Keep the Wi-Fi card that you previously set up and power up your board. Plug in also the Ethernet cable so that your board will be assigned an IP address on your Ethernet interface, eth0. Connect it through USB to your computer so that you can upload a sketch which will print your eth0 IP address to the Serial Monitor. Open the Arduino IDE for Intel Galileo and copy the following lines of code into the loop function : Intel Galileo Gen 2 Board PTC Inc. 22

23 system("ifconfig > /dev/ttygs0"); sleep(10); Before pressing on the upload button, make sure you have Intel Galileo Gen 2 selected under Tools Board and the port number on which your board is connected under Tools Serial Port. After you uploaded the sketch go to Tool Serial Monitor. Uncheck the Autoscroll checkbox and copy your eth0 IP. Intel Galileo Gen 2 Board PTC Inc. 23

24 Next open Putty and enter this IP address. Next click Open : You can also name this configuration and Save it so that you can Load it at a later time. Intel Galileo Gen 2 Board PTC Inc. 24

25 You will be asked if you are sure you want to proceed with the connection. Click yes. Enter root as username. No password is required. Next copy and paste the following commands : cd /tmp tar xzvf /media/mmcblk0p1/iwlwifi-6000g2b-ucode tgz cp iwlwifi-6000g2b-ucode /iwlwifi-6000g2b-6.ucode /lib/firmware/ Intel Galileo Gen 2 Board PTC Inc. 25

26 If necessary, replace iwlwifi-6000g2b-ucode tgz with the name of the archive containing your Wi-Fi driver that you copied on your micro-sd card. Next run the following command to configure the connexion to your Wireless Network. This command will write in the /etc/wpa_supplicant.conf file. Replace MyWifi with the name of your Wireless Network (for example PTC_Wifi) : wpa_passphrase MyWiFi << EOF > /etc/wpa_supplicant.conf Type your password Type EOF to close the file Next enter the following command to open your network/interfaces file in edit mode : vi /etc/network/interfaces You can use the following commands to edit a file using vi editor : r R i a A O replace character under cursor with next character typed keep replacing character until [esc] is hit insert before cursor append after cursor append at end of line open line above cursor and enter append mode Intel Galileo Gen 2 Board PTC Inc. 26

27 Place your cursor under the line #Wireless interfaces. Next type i and press enter so you can edit before the cursor position. Press the up arrow and type auto wlan0 above this line : iface wlan0 inet dhcp. Press Esc on your keyboard to enter the command mode of the vi editor and type ZZ, this will save the changes and close the file. 2 Congratulation! You have completed this tutorial on connecting your board to a Wi-Fi network. You can proceed to the next tutorial : How to read Temperature and Humidity from HTU21D sensor using Thingworx C SKD for Intel Galileo tutorial. 2 To learn more about the vi editor available on your Intel Galileo check this site. Intel Galileo Gen 2 Board PTC Inc. 27

28 2015 PTC Inc. The information contained herein is provided for informational use and is subject to change without notice. The only warranties for PTC products and services are set forth in the express warranty statements accompanying such products and services and nothing herein should be construed as constituting an additional warranty. PTC shall not be liable for technical or editorial errors or omissions contained herein. Important Copyright, Trademark, Patent, and Licensing Information: See the About Box, or copyright notice, of your PTC software Intel Galileo Gen 2 Board PTC Inc. 28

Workshop Intel Galileo Board

Workshop Intel Galileo Board Workshop Intel Galileo Board Introduction and Basics of Intel Galileo Board Walter Netto November 03th, 2014 Agenda Intel Galileo Board Overview Physical Characteristics Communication Processor Features

More information

Intro to Intel Galileo - IoT Apps GERARDO CARMONA

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

More information

Moxa Device Manager 2.0 User s Guide

Moxa Device Manager 2.0 User s Guide First Edition, March 2009 www.moxa.com/product 2009 Moxa Inc. All rights reserved. Reproduction without permission is prohibited. Moxa Device Manager 2.0 User Guide The software described in this manual

More information

1-Port Wireless USB 2.0 Print Server Model # APSUSB201W. Quick Installation Guide. Ver. 2A

1-Port Wireless USB 2.0 Print Server Model # APSUSB201W. Quick Installation Guide. Ver. 2A 1-Port Wireless USB 2.0 Print Server Model # APSUSB201W Quick Installation Guide Ver. 2A Section 1 Step 1Connect one end of the Ethernet cable to the RJ-45 port of the Print Server and attach the other

More information

KANGAROO MOBILE DESKTOP USER GUIDE

KANGAROO MOBILE DESKTOP USER GUIDE KANGAROO MOBILE DESKTOP USER GUIDE Copyright InFocus Corporation., 2015. All rights reserved. This document contains information proprietary to InFocus Corporation, hereinafter InFocus. Use or disclosure

More information

Intel Do-It-Yourself Challenge Lab 2: Intel Galileo s Linux side Nicolas Vailliet

Intel Do-It-Yourself Challenge Lab 2: Intel Galileo s Linux side Nicolas Vailliet Intel Do-It-Yourself Challenge Lab 2: Intel Galileo s Linux side Nicolas Vailliet www.intel-software-academic-program.com paul.guermonprez@intel.com Intel Software 2014-02-01 Prerequisites and objectives

More information

Apple Server Diagnostics User Guide. For Version 3X106

Apple Server Diagnostics User Guide. For Version 3X106 Apple Server Diagnostics User Guide For Version 3X106 KKApple Inc. 2009 Apple Inc. All rights reserved. Under the copyright laws, this manual may not be copied, in whole or in part, without the written

More information

TPG MOBILE BROADBAND QUICK SETUP GUIDE

TPG MOBILE BROADBAND QUICK SETUP GUIDE TPG MOBILE BROADBAND QUICK SETUP GUIDE TPG USB E1762 Modem Thank you for choosing TPG Mobile Broadband and USB E1762 modem. This User Guide provides step by step instructions that will take you through

More information

MobileLite Wireless G2 5-in-1 Mobile Companion User Manual

MobileLite Wireless G2 5-in-1 Mobile Companion User Manual MobileLite Wireless G2 5-in-1 Mobile Companion User Manual Document No. 480-MLWG2-021315.A00 Kingston MobileLite Wireless Page 1 of 21 Table of Contents Introduction... 3 What s Included:... 3 Getting

More information

Digital Photo Bank / Portable HDD Pan Ocean E350 User Manual

Digital Photo Bank / Portable HDD Pan Ocean E350 User Manual Digital Photo Bank / Portable HDD Pan Ocean E350 User Manual Installing a hard disk 1. Power off the unit. 2. Remove the bottom cover from the unit by removing four screws. 3. Insert the 2.5 HDD to the

More information

Bluetooth for Windows

Bluetooth for Windows Bluetooth for Windows Getting Started Copyright 2006 Hewlett-Packard Development Company, L.P. Microsoft and Windows are U.S. registered trademarks of Microsoft Corporation. Bluetooth is a trademark owned

More information

How to setup EW-7438RPn with a Windows computer to extend an existing Wi-Fi network

How to setup EW-7438RPn with a Windows computer to extend an existing Wi-Fi network 2 How to setup EW-7438RPn with a Windows computer to extend an existing Wi-Fi network Note: 1. This instruction use pictures from EW-7438RPn firmware v1.13. 2. If you need to restore to the default settings,

More information

ThinkServer RD540 and RD640 Operating System Installation Guide

ThinkServer RD540 and RD640 Operating System Installation Guide ThinkServer RD540 and RD640 Operating System Installation Guide Note: Before using this information and the product it supports, be sure to read and understand the Read Me First and Safety, Warranty, and

More information

INDEX. Trademarks All name and product s trademarks mentioned below are the property of their respective companies.

INDEX. Trademarks All name and product s trademarks mentioned below are the property of their respective companies. USB2.0 EASY IDE ADAPTER INDEX Trademarks ---------------------------------------------------------------------------- Introduction ---------------------------------------------------------------------------

More information

Operating System Installation Guide

Operating System Installation Guide Operating System Installation Guide This guide provides instructions on the following: Installing the Windows Server 2008 operating systems on page 1 Installing the Windows Small Business Server 2011 operating

More information

Networking. General networking. Networking overview. Common home network configurations. Wired network example. Wireless network examples

Networking. General networking. Networking overview. Common home network configurations. Wired network example. Wireless network examples Networking General networking Networking overview A network is a collection of devices such as computers, printers, Ethernet hubs, wireless access points, and routers connected together for communication

More information

Quick Note 32. Using Digi RealPort with a Digi TransPort Router. UK Support September 2012

Quick Note 32. Using Digi RealPort with a Digi TransPort Router. UK Support September 2012 Quick Note 32 Using Digi RealPort with a Digi TransPort Router UK Support September 2012 1 Contents 1 Introduction... 3 1.1 Outline... 3 1.2 Assumptions... 3 1.3 Version... 3 2 Configuration & scenario...

More information

ThinkServer RD550 and RD650 Operating System Installation Guide

ThinkServer RD550 and RD650 Operating System Installation Guide ThinkServer RD550 and RD650 Operating System Installation Guide Note: Before using this information and the product it supports, be sure to read and understand the Read Me First and Safety, Warranty, and

More information

Point of view HDMI Smart TV dongle Mini RF Keyboard

Point of view HDMI Smart TV dongle Mini RF Keyboard Point of view HDMI Smart TV dongle Mini RF Keyboard English Contents Contents... 1 General notices for use... 2 Disclaimer... 2 Box Contents... 2 1. HDMI TV dongle... 3 1.1. Product display... 3 1.2. Instructions

More information

Point of View SmartTV HDMI 210 dongle - Android 4.2. General notices for use... 2 Disclaimer... 2 Box Contents... 2

Point of View SmartTV HDMI 210 dongle - Android 4.2. 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 Connecting your device for the first time... 3 1.2 Connections... 4 1.3 Using the remote control

More information

HP Advanced Wireless Docking Station. User Guide

HP Advanced Wireless Docking Station. User Guide HP Advanced Wireless Docking Station User Guide Copyright 2014, 2015 Hewlett-Packard Development Company, L.P. Intel is a trademark of Intel Corporation in the U.S. and other countries. Windows and Windows

More information

User Guide Vodafone Mobile Wi-Fi R206-Z. Designed by Vodafone

User Guide Vodafone Mobile Wi-Fi R206-Z. Designed by Vodafone User Guide Vodafone Mobile Wi-Fi R206-Z Designed by Vodafone Welcome to the world of mobile communications 1 Welcome 2 Device overview 3 Getting started: Step 1 4 Getting started: Step 2 5 Mobile Wi-Fi

More information

Iridium Extreme TM Satellite Phone. Data Services Manual

Iridium Extreme TM Satellite Phone. Data Services Manual Iridium Extreme TM Satellite Phone Data Services Manual Table of Contents 1 OVERVIEW... 1 2 HOW IT WORKS... 1 3 BEFORE INSTALLING... 2 4 USB DRIVER INSTALLATION... 3 5 MODEM INSTALLATION AND CONFIGURATION...

More information

WHITE PAPER. Installing Microsoft Windows 98 on Compaq Armada E, M, and V Portable Products CONTENTS

WHITE PAPER. Installing Microsoft Windows 98 on Compaq Armada E, M, and V Portable Products CONTENTS WHITE PAPER March 2001 Prepared By CPCG Software Product Management Compaq Computer Corporation CONTENTS INTRODUCTION3 CLEAN INSTALLING WINDOWS 983 PREPARING FOR INSTALLATION3 MODIFYING A MICROSOFT DOS

More information

Moxa Device Manager 2.3 User s Manual

Moxa Device Manager 2.3 User s Manual User s Manual Third Edition, March 2011 www.moxa.com/product 2011 Moxa Inc. All rights reserved. User s Manual The software described in this manual is furnished under a license agreement and may be used

More information

User Guide Vodafone Mobile Wi-Fi R206-Z. Designed by Vodafone

User Guide Vodafone Mobile Wi-Fi R206-Z. Designed by Vodafone User Guide Vodafone Mobile Wi-Fi R206-Z Designed by Vodafone Welcome to the world of mobile communications 1 Welcome 2 Device overview 3 Getting started: Step 1 4 Getting started: Step 2 5 Mobile Wi-Fi

More information

Hi-Speed USB Flash Disk User s Manual Guide

Hi-Speed USB Flash Disk User s Manual Guide Hi-Speed USB Flash Disk User s Manual Guide System Requirements Windows 98, ME, 2000, XP, Mac OS 10.1, Linux 2.4 or above AMD or Intel Pentium 133MHz or better based computer USB 1.1, USB 2.0 or higher

More information

1.0. User s Guide & Manual USB 2.0 FLASH DRIVE

1.0. User s Guide & Manual USB 2.0 FLASH DRIVE 1.0 USB 2.0 FLASH DRIVE User s Guide & Manual Index Introduction 1 CHAPTER1 Features & Specifications 2 CHAPTER2 System Requirements 4 CHAPTER3 Getting Started Installation of the Windows 98SE Driver 5

More information

ThinkServer RS140 Operating System Installation Guide

ThinkServer RS140 Operating System Installation Guide ThinkServer RS140 Operating System Installation Guide Note: Before using this information and the product it supports, be sure to read and understand the Read Me First and Safety, Warranty, and Support

More information

Getting Started. rp5800, rp5700 and rp3000 Models

Getting Started. rp5800, rp5700 and rp3000 Models Getting Started rp5800, rp5700 and rp3000 Models Copyright 2011 Hewlett-Packard Development Company, L.P. The information contained herein is subject to change without notice. Microsoft, Windows, and Windows

More information

Ethernet Radio Configuration Guide

Ethernet Radio Configuration Guide Ethernet Radio Configuration Guide for Gateway, Endpoint, and Repeater Radio Units April 20, 2015 Customer Service 1-866-294-5847 Baseline Inc. www.baselinesystems.com Phone 208-323-1634 FAX 208-323-1834

More information

USB 2.0 4-PORT NETWORK HUB. User Manual DA-70251 DA-70252 1

USB 2.0 4-PORT NETWORK HUB. User Manual DA-70251 DA-70252 1 USB 2.0 4-PORT NETWORK HUB User Manual DA-70251 DA-70252 1 Copyright Notice Copyright DIGITUS 2010. All rights reserved. Disclaimer DIGITUS shall not be liable for technical or editorial errors or omissions

More information

How to read Temperature and Humidity from Am2302 sensor using Thingworx Edge java SKD for Raspberry Pi

How to read Temperature and Humidity from Am2302 sensor using Thingworx Edge java SKD for Raspberry Pi How to read Temperature and Humidity from Am2302 sensor using Thingworx Edge java SKD for Raspberry Pi Revison History Revision # Date ThingWorx Revision Changes Owner 1.0 2.0 21-11-14 3.0 17-12-14 4.0

More information

RN-XV-RD2 Evaluation Board

RN-XV-RD2 Evaluation Board RN-XV-RD2 Evaluation Board 2012 Roving Networks. All rights reserved. -1.01Version 1.0 9/28/2012 USER MANUAL OVERVIEW This document describes the hardware and software setup for Roving Networks RN-XV-RD2

More information

Type Message Description Probable Cause Suggested Action. Fan in the system is not functioning or room temperature

Type Message Description Probable Cause Suggested Action. Fan in the system is not functioning or room temperature Table of Content Error Messages List... 2 Troubleshooting the Storage System... 3 I can t access the Manager... 3 I forgot the password for logging in to the Manager... 3 The users can t access the shared

More information

FTP Server Configuration

FTP Server Configuration FTP Server Configuration For HP customers who need to configure an IIS or FileZilla FTP server before using HP Device Manager Technical white paper 2 Copyright 2012 Hewlett-Packard Development Company,

More information

TE100-P21/TEW-P21G Windows 7 Installation Instruction

TE100-P21/TEW-P21G Windows 7 Installation Instruction Hardware Installation TE100-P21/TEW-P21G Windows 7 Installation Instruction 1. Go to http://www.trendnet.com/downloads/ to download the Windows 7 Utility. Save the file to your desktop. 2. Right click

More information

User Guide Vodafone Pocket WiFi Pro. Designed by Vodafone

User Guide Vodafone Pocket WiFi Pro. Designed by Vodafone User Guide Vodafone Pocket WiFi Pro Designed by Vodafone Welcome to the world of mobile communications 1 Welcome 2 Device overview 3 Getting started: setup 4 Getting started: use 5 Pocket WiFi online dashboard

More information

Raspberry Pi Setup Tutorial

Raspberry Pi Setup Tutorial Raspberry Pi Setup Tutorial The Raspberry Pi is basically a miniature linux- based computer. It has an ARM processor on it, specifically the ARM1176JZF- S 700 MHz processor. This is the main reason why

More information

User Guide Vodafone Mobile Wi-Fi R210. Designed by Vodafone

User Guide Vodafone Mobile Wi-Fi R210. Designed by Vodafone User Guide Vodafone Mobile Wi-Fi R210 Designed by Vodafone Welcome to the world of mobile communications 1 Welcome 2 Device overview 3 Getting started: Step 1 4 Getting started: Step 2 5 Mobile Wi-Fi web

More information

Administering Windows-based HP Thin Clients with System Center 2012 R2 Configuration Manager SP1

Administering Windows-based HP Thin Clients with System Center 2012 R2 Configuration Manager SP1 Technical white paper Administering Windows-based HP Thin Clients with System Center 2012 R2 Configuration Manager SP1 Table of contents Executive summary... 3 Configuration Manager features... 3 Asset

More information

Yun Shield User Manual VERSION: 1.0. Yun Shield User Manual 1 / 22. www.dragino.com

Yun Shield User Manual VERSION: 1.0. Yun Shield User Manual 1 / 22. www.dragino.com Yun Shield User Manual VERSION: 1.0 Version Description Date 0.1 Initiate 2014-Jun-21 1.0 Release 2014-Jul-08 Yun Shield User Manual 1 / 22 Index: 1 Introduction... 3 1.1 What is Yun Shield... 3 1.2 Specifications...

More information

Corsair Flash Voyager USB 2.0 Flash Drive UFD Utility User s Manual

Corsair Flash Voyager USB 2.0 Flash Drive UFD Utility User s Manual Corsair Flash Voyager USB 2.0 Flash Drive UFD Utility User s Manual Contents For AP v2.10.0.0 Release For Windows 98/ME/2000/XP Version 1.1B (08/27/2004) Contents...1 Introduction...1 Features & Specifications...2

More information

ThinkServer RD350 and RD450 Operating System Installation Guide

ThinkServer RD350 and RD450 Operating System Installation Guide ThinkServer RD350 and RD450 Operating System Installation Guide Note: Before using this information and the product it supports, be sure to read and understand the Read Me First and Safety, Warranty, and

More information

MFC7840W Windows Network Connection Repair Instructions

MFC7840W Windows Network Connection Repair Instructions Difficulty printing from your PC can occur for various reasons. The most common reason a networked Brother machine may stop printing, is because the connection between the computer and the Brother machine

More information

DSL Self-install Kit Instructions

DSL Self-install Kit Instructions DSL Self-install Kit Instructions Cover and installation notes Page 1 1. Verify your system requirements Page 2 2. Verify the contents of your DSL Self-Install kit Page 2 3. Install filters on your telephone

More information

Using GIGABYTE Notebook for the First Time

Using GIGABYTE Notebook for the First Time P34 V6.0 Congratulations on your purchase of the GIGABYTE Notebook. This manual will help you to get started with setting up your notebook. The final product configuration depends on the model at the point

More information

Vmed QUICKSTART PC-DISPLAY INSTALLATION & PC-Display and Bluetooth Instructions

Vmed QUICKSTART PC-DISPLAY INSTALLATION & PC-Display and Bluetooth Instructions QUICKSTART PC-DISPLAY INSTALLATION & BLUETOOTH SETUP INSTRUCTIONS Vmed PC-Display and Bluetooth Instructions This is the Quick Start manual for PC-Display software. The complete software user manual for

More information

Troubleshooting Sprint Mobile Broadband USB Modem by Novatel Wireless TM (Ovation TM U727)

Troubleshooting Sprint Mobile Broadband USB Modem by Novatel Wireless TM (Ovation TM U727) Troubleshooting Sprint Mobile Broadband USB Modem by Novatel Wireless TM (Ovation TM U727) If you are unable to resolve your issue using the Troubleshooting steps below, please contact Sprint Customer

More information

NAS HARD DRIVE ENCLOSURE USER MANUAL. S T O R E n S H A R E MUSIC DATA PHOTO MOVIE

NAS HARD DRIVE ENCLOSURE USER MANUAL. S T O R E n S H A R E MUSIC DATA PHOTO MOVIE NAS HARD DRIVE ENCLOSURE USER MANUAL S T O R E n S H A R E MUSIC DATA PHOTO MOVIE w w w. v a n t e c u s a. c o m Package Contents: NexStar LX External 3.5 HDD NAS Enclosure: User Manual NexStar LX External

More information

SMART INSTALL CONTENTS. Questions and answers

SMART INSTALL CONTENTS. Questions and answers SMART INSTALL Questions and answers CONTENTS Frequently asked questions...2 Compatibility...3 USB connection...3 Wired or wireless network connection...4 Software CD...5 After installation...6 Software

More information

The Wireless LAN (Local Area Network) USB adapter can be operated in one of the two following networking configurations :

The Wireless LAN (Local Area Network) USB adapter can be operated in one of the two following networking configurations : SAGEM Wi-Fi 11g USB ADAPTER Quick Start Guide About this guide This Quick Start Guide describes how to install and operate your SAGEM Wi-Fi 11g USB ADAPTER. Please read this manual before you install the

More information

Intel Compute Stick STCK1A32WFC User Guide. Intel Compute Stick STCK1A32WFC

Intel Compute Stick STCK1A32WFC User Guide. Intel Compute Stick STCK1A32WFC Intel Compute Stick STCK1A32WFC User Guide 1 Revision History Revision Revisions History Date 01 First release of the Intel Compute Stick STCK1A32WFC User Guide April 2015 Disclaimer INFORMATION IN THIS

More information

How To Set Up A Backupassist For An Raspberry Netbook With A Data Host On A Nsync Server On A Usb 2 (Qnap) On A Netbook (Qnet) On An Usb 2 On A Cdnap (

How To Set Up A Backupassist For An Raspberry Netbook With A Data Host On A Nsync Server On A Usb 2 (Qnap) On A Netbook (Qnet) On An Usb 2 On A Cdnap ( WHITEPAPER BackupAssist Version 5.1 www.backupassist.com Cortex I.T. Labs 2001-2008 2 Contents Introduction... 3 Hardware Setup Instructions... 3 QNAP TS-409... 3 Netgear ReadyNas NV+... 5 Drobo rev1...

More information

Contents. Business Everywhere user guide. 1. Introduction. 2. How to Install/Uninstall Business Everywhere. 3. The Business Everywhere interface

Contents. Business Everywhere user guide. 1. Introduction. 2. How to Install/Uninstall Business Everywhere. 3. The Business Everywhere interface Contents 1. Introduction 2. How to Install/Uninstall Business Everywhere 3. The Business Everywhere interface 4. Launching Business Everywhere 5. Connection 6. Business Everywhere management tools 7. Troubleshooting

More information

ScanShell.Net Install Guide

ScanShell.Net Install Guide ScanShell.Net Install Guide Please install the software first - DO NOT PLUG IN THE SCANNER The scanner has been carefully packaged to avoid damage during transportation. Before operating the scanner, please

More information

Chapter 1 Downloading Images to Your Computer (Windows)

Chapter 1 Downloading Images to Your Computer (Windows) Software User Guide For the safe use of your camera, be sure to read the Safety Precautions thoroughly before use. Types of software installed on your computer varies depending on the method of installation

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

HP Point of Sale (POS) Peripherals Configuration Guide ap5000 VFD Windows (non-opos)

HP Point of Sale (POS) Peripherals Configuration Guide ap5000 VFD Windows (non-opos) HP Point of Sale (POS) Peripherals Configuration Guide ap5000 VFD Windows (non-opos) Document Version 3.23 November 2010 1 Copyright 2007-2010 Hewlett-Packard Development Company, L.P. The information

More information

CM1-Mini Wi Drive. Setup Guide Ver 0.1

CM1-Mini Wi Drive. Setup Guide Ver 0.1 CM1-Mini Wi Drive Setup Guide Ver 0.1 Please read the following safety information prior to using CM1. Only qualified personnel should service CM1. Faulty installation or service may invalidate any warranty

More information

User Guide for Windows 10

User Guide for Windows 10 User Guide for Windows 10 System requirements E10684 First Edition July 2015 To facilitate a smoother transition from your previous operating system, read the system requirements below before upgrading

More information

PePWave Surf Series PePWave Surf Indoor Series: Surf 200, AP 200, AP 400

PePWave Surf Series PePWave Surf Indoor Series: Surf 200, AP 200, AP 400 PePWave Surf Series PePWave Surf Indoor Series: Surf 200, AP 200, AP 400 PePWave Surf Outdoor Series: Surf AP 200/400-X, PolePoint 400-X, Surf 400-DX User Manual Document Rev. 1.2 July 07 COPYRIGHT & TRADEMARKS

More information

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

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

More information

Using GIGABYTE Notebook for the First Time

Using GIGABYTE Notebook for the First Time Congratulations on your purchase of the GIGABYTE Notebook. This manual will help you to get started with setting up your notebook. The final product configuration depends on the model at the point of your

More information

SOFTWARE MANUAL. Please ensure that you read the instruction manual carefully before use. About software

SOFTWARE MANUAL. Please ensure that you read the instruction manual carefully before use. About software SOFTWARE MANUAL Please ensure that you read the instruction manual carefully before use Software Notes The attached software is a camera driver and image editing software tool for Windows. Under no circumstances

More information

SwannSecure Wi-Fi Monitoring System

SwannSecure Wi-Fi Monitoring System EN SwannSecure Wi-Fi Monitoring System Setup Wizard Quick Start Guide QW470KIT050115E Swann 2015 1 Welcome The Setup Wizard automatically launches the first time you turn on the Wi-Fi Monitor and walks

More information

Installing Windows 95 Drivers and Utilities for the Cisco Aironet 340/350 Series Client Adapters

Installing Windows 95 Drivers and Utilities for the Cisco Aironet 340/350 Series Client Adapters Installing Windows 95 Drivers and Utilities for the Cisco Aironet 340/350 Series Client Adapters Document ID: 12134 You need a valid Cisco.com account in order to download Cisco Aironet drivers, firmware,

More information

USB HSPA Modem. User Manual

USB HSPA Modem. User Manual USB HSPA Modem User Manual Congratulations on your purchase of this USB HSPA Modem. The readme file helps you surf the Internet, send and receive SMS, manage contacts and use many other functions with

More information

FX-BTCVT Bluetooth Commissioning Converter Commissioning Guide

FX-BTCVT Bluetooth Commissioning Converter Commissioning Guide FX-BTCVT Bluetooth Commissioning Converter Commissioning Guide FX-BTCVT-1 (Bluetooth Commissioning Converter) Code No. LIT-12011665 Issued December 5, 2014 Refer to the QuickLIT website for the most up-to-date

More information

Movie Cube. User s Guide to Wireless Function

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

More information

Microsoft BackOffice Small Business Server 4.5 Installation Instructions for Compaq Prosignia and ProLiant Servers

Microsoft BackOffice Small Business Server 4.5 Installation Instructions for Compaq Prosignia and ProLiant Servers Integration Note October 2000 Prepared by OS Integration Engineering Compaq Computer Corporation Contents Introduction...3 Requirements...3 Minimum Requirements...4 Required Information...5 Additional

More information

P-2612HNU-Fx. 802.11n ADSL2+ VoIP IAD DEFAULT LOGIN DETAILS. Firmware V3.00 Edition 1, 1/2010. Password: 1234 User Name: admin Password: 1234

P-2612HNU-Fx. 802.11n ADSL2+ VoIP IAD DEFAULT LOGIN DETAILS. Firmware V3.00 Edition 1, 1/2010. Password: 1234 User Name: admin Password: 1234 P-2612HNU-Fx 802.11n ADSL2+ VoIP IAD Firmware V3.00 Edition 1, 1/2010 DEFAULT LOGIN DETAILS IP Address: User Login: Administrator Login: http://192.168.1.1 User Name: user Password: 1234 User Name: admin

More information

Motorola Phone Tools. Quick Start

Motorola Phone Tools. Quick Start Motorola Phone Tools Quick Start Contents Minimum Requirements...2 Before Installing Motorola Phone Tools...3 Installing Motorola Phone Tools...4 Mobile Device Installation and Configuration...5 Online

More information

Firmware Update Instruction Manual

Firmware Update Instruction Manual Firmware Update Instruction Manual This manual explains the procedures for downloading the CX2 firmware from the Ricoh website and updating the camera s firmware. Perform the following operations to update

More information

How do I configure the wireless printer using a USB or Ethernet cable and install the printer driver in Windows?

How do I configure the wireless printer using a USB or Ethernet cable and install the printer driver in Windows? How do I configure the wireless printer using a USB or Ethernet cable and install the printer driver in Windows? STEP I: Gather the wireless network settings of your wireless access point or wireless router

More information

Test Center Enterprise. ios Device Onboarding Guide

Test Center Enterprise. ios Device Onboarding Guide Test Center Enterprise ios Device Onboarding Guide Copyright Copyright 2012 Keynote DeviceAnywhere. All Rights Reserved. March 2012. Notice 2012 Keynote DeviceAnywhere. All rights reserved. THE INFORMATION

More information

Updating the BIOS and BMC on the FreeNAS Mini

Updating the BIOS and BMC on the FreeNAS Mini Updating the BIOS and BMC on the FreeNAS Mini Oct 15, 2014 ixsystems, Inc. These instructions are for updating the BMC (IPMI controller) and the BIOS for the FreeNAS Mini. You will also need the following

More information

EPSON Stylus. Start Here

EPSON Stylus. Start Here EPSON Stylus C84 EPSON Stylus Start Here C84 CPD-16675R1 4043482-00 XXX 1 Unpack 1 Remove everything from the box. Paper support Printer Manual Power cord Ink cartridges CD-ROM 2 Remove all the blue tape

More information

Setting up Digi Connect Wi-SP or Digi ConnectPort TS W Devices On a Secured Wireless Network for use with Veriteq viewlinc

Setting up Digi Connect Wi-SP or Digi ConnectPort TS W Devices On a Secured Wireless Network for use with Veriteq viewlinc Setting up Digi Connect Wi-SP or Digi ConnectPort TS W Devices On a Secured Wireless Network for use with Veriteq viewlinc Contents Before You Start the Installation...2 Introduction...2 Veriteq vnet and

More information

How to Make a USB Bootable

How to Make a USB Bootable /0/0 Ways to Make a USB Bootable - wiki How to Make a USB Bootable Five Methods: Ad Making a USB Drive to Install Any PC Operating System Making a Windows Vista or 7 Install Drive Creating a USB PC Repair

More information

HP ProLiant DL380 G5 High Availability Storage Server

HP ProLiant DL380 G5 High Availability Storage Server HP ProLiant DL380 G5 High Availability Storage Server installation instructions *5697-7748* Part number: 5697 7748 First edition: November 2008 Legal and notice information Copyright 1999, 2008 Hewlett-Packard

More information

Installation Guide Wireless 4-Port USB Sharing Station. GUWIP204 Part No. M1172-a

Installation Guide Wireless 4-Port USB Sharing Station. GUWIP204 Part No. M1172-a Installation Guide Wireless 4-Port USB Sharing Station 1 GUWIP204 Part No. M1172-a 2011 IOGEAR. All Rights Reserved. PKG-M1172-a IOGEAR, the IOGEAR logo, MiniView, VSE are trademarks or registered trademarks

More information

Cart Interface Installation & Control Board Manual for M38 XP and RX Carts and Legacy M39 Carts

Cart Interface Installation & Control Board Manual for M38 XP and RX Carts and Legacy M39 Carts Rubbermaid Medical Solutions Cart Interface Installation & Control Board Manual for M38 XP and RX Carts and Legacy M39 Carts REVISED FEBRUARY 25, 2010 Filename: Cart Interface Installation & Control Board

More information

Now with. Quick Start. User Guide Vodafone Mobile Broadband USB Stick K3773. Designed by Vodafone

Now with. Quick Start. User Guide Vodafone Mobile Broadband USB Stick K3773. Designed by Vodafone Now with Quick Start User Guide Vodafone Mobile Broadband USB Stick K3773 Designed by Vodafone Welcome to the world of mobile communications 1 Welcome 2 Set up your USB Stick 3 QuickStart manual installation

More information

Adafruit's Raspberry Pi Lesson 1. Preparing an SD Card for your Raspberry Pi

Adafruit's Raspberry Pi Lesson 1. Preparing an SD Card for your Raspberry Pi Adafruit's Raspberry Pi Lesson 1. Preparing an SD Card for your Raspberry Pi Created by Simon Monk Last updated on 2015-11-25 11:50:13 PM EST Guide Contents Guide Contents Overview You Will Need Downloading

More information

Getting to Know Your Mobile Internet Key

Getting to Know Your Mobile Internet Key Thank you for choosing the Huawei E3276 4G LTE Mobile Internet Key. With your Mobile Internet Key, you can enjoy a full high speed Internet experience on the go. This guide shows you how to set-up and

More information

Using GIGABYTE Notebook for the First Time

Using GIGABYTE Notebook for the First Time P55 V3.0 Congratulations on your purchase of the GIGABYTE Notebook. This manual will help you to get started with setting up your notebook. The final product configuration depends on the model at the point

More information

Network Adapter Configuration Guide for Macintosh OS X

Network Adapter Configuration Guide for Macintosh OS X Network Adapter Configuration Guide for Macintosh OS X Hardware and Driver Installation With the Mac OS X correctly installed on your computer, installing an Asanté network adapter is easy. Simply follow

More information

Phone: 800.894.0412 - Fax: 888.723.4773 - Web: www.ctiautomation.net - Email: info@ctiautomation.net

Phone: 800.894.0412 - Fax: 888.723.4773 - Web: www.ctiautomation.net - Email: info@ctiautomation.net Safety Precautions Read and understand this specifications, instruction manual, installation manual and catalog to make proper use of the product. WARNING If critical situations that could lead to user

More information

Using GIGABYTE Notebook for the First Time

Using GIGABYTE Notebook for the First Time Congratulations on your purchase of the GIGABYTE Notebook P7! This Manual will help you to get started with setting up your notebook. For more detailed information, please visit our website at http://www.gigabyte.com.

More information

RN-WIFLY-EVAL-UM. WiFly Evaluation Kit. 2012 Roving Networks. All rights reserved. RN-WIFLY-EVAL-UM Version 1.32r 10/9/2012 USER MANUAL

RN-WIFLY-EVAL-UM. WiFly Evaluation Kit. 2012 Roving Networks. All rights reserved. RN-WIFLY-EVAL-UM Version 1.32r 10/9/2012 USER MANUAL WiFly Evaluation Kit 2012 Roving Networks. All rights reserved. Version 1.32r 10/9/2012 USER MANUAL OVERVIEW This document describes the hardware and software setup for Roving Networks evaluation kits,

More information

Arduino Lesson 0. Getting Started

Arduino Lesson 0. Getting Started Arduino Lesson 0. Getting Started Created by Simon Monk Last updated on 204-05-22 2:5:0 PM EDT Guide Contents Guide Contents Overview Parts Part Qty Breadboard Installing Arduino (Windows) Installing Arduino

More information

DIAL-UP DATA. User s Guide

DIAL-UP DATA. User s Guide DIAL-UP DATA User s Guide Iridium Satellite LLC Rev. 5; January 1, 2003 DIAL-UP DATA SERVICE--------------------------------------------------------------------------------------- TABLE OF CONTENTS 1 Dial-Up

More information

LabelWriter. Print Server. User Guide

LabelWriter. Print Server. User Guide LabelWriter Print Server User Guide Copyright 2010 Sanford, L.P. All rights reserved. 08/10 No part of this document or the software may be reproduced or transmitted in any form or by any means or translated

More information

How to Install Applications (APK Files) on Your Android Phone

How to Install Applications (APK Files) on Your Android Phone How to Install Applications (APK Files) on Your Android Phone Overview An Android application is stored in an APK file (i.e., a file named by {Application Name}.apk). You must install the APK on your Android

More information

Getting Started with Android Smartphones and ThingWorx

Getting Started with Android Smartphones and ThingWorx Smartphones and ThingWorx How to send and visualize data from your Android phone using ThingWorx Revision # Date ThingWorx Revision Changes Owner 1.0 18-05-15 5.1.0.433 2.0 10.05.15 Updated based on Andy

More information

Mobile Device Manager User Guide

Mobile Device Manager User Guide Mobile Device Manager User Guide Contents What's new 4 What's new?... 4 About Mobile Device Manager 5 About Mobile Device Manager... 5 Update process with Mobile Device Manager... 5 Creating a user with

More information

User's Guide DylosLogger Software Version 1.6

User's Guide DylosLogger Software Version 1.6 User's Guide DylosLogger Software Version 1.6 The DylosLogger software allows users of Dylos Air Quality Monitors equipped with PC interface to easily record, download, and graph data. The COM port is

More information

User Guide. E-Series Routers

User Guide. E-Series Routers User Guide E-Series Routers Table of Contents Table of Contents Product overview E900/E1200/E1500/E2500/E3200 1 Back view 1 Bottom view 1 E4200 2 Top view 2 Back view 2 Setting Up Your E-Series Router

More information

integration tools setup guide SIM 3 Remote Guide to controlling a SIM 3 Audio Analyzer remotely over a network connection from a laptop

integration tools setup guide SIM 3 Remote Guide to controlling a SIM 3 Audio Analyzer remotely over a network connection from a laptop setup guide integration tools SIM 3 Remote Guide to controlling a SIM 3 Audio Analyzer remotely over a network connection from a laptop 2010 Meyer Sound. All rights reserved. SIM 3 Remote Setup Guide,

More information