TiWi-SL Simple Web Server Demo Quickstart Guide

Size: px
Start display at page:

Download "TiWi-SL Simple Web Server Demo Quickstart Guide"

Transcription

1 TiWi-SL Simple Web Server Demo Quickstart Guide IN THIS DOCUMENT sc_wifi demo : Quick Start Guide 1 sc_wifi demo : Quick Start Guide This simple demonstration the XA-SK-WIFI-TIWISL Slice Card together with the xsoftip module_wifi_tiwisl to demonstrate how the module is used to: connect to a wireless access point, Run a very simple HTTP server to display a Hello World! webpage. 1.1 Hardware Setup The XP-SKC-L2 Slicekit Core board has four slots with edge connectors: SQUARE, CIRCLE, TRIANGLE and STAR. Access point setup: 1. Switch on the wireless router. 2. Make sure you know its advertized name (SSID), password (if any) and the security type (Unsecured, WEP, WPA or WPA2) 3. Make sure the host PC is on the above network. System setup: 1. Connect XA-SK-WIFI-TIWISL slice card to the TRIANGLE slot of the XP-SKC-L2 Slicekit core board. 2. Connect the XTAG Adapter to Slicekit Core board, and connect XTAG-2 to the Adapter. 3. Connect the XTAG-2 to host PC. Note that the USB cable is not provided with the Slicekit starter kit. 4. Set the XMOS LINK to ON on the XTAG Adapter. 5. Ensure the wireless access point is switched on and configured. 6. Switch on the power supply to the Slicekit Core board. Publication Date: 2013/3/8 XMOS 2013, All Rights Reserved

2 TiWi-SL Simple Web Server Demo Quickstart Guide 2/6 1.2 Import and Build the Application Open xtimecomposer and check that it is operating in online mode. Open the edit perspective (Window->Open Perspective->XMOS Edit). Locate the 'app_tiwisl_simple_webserver' item in the xsoftip pane on the bottom left of the window and drag it into the Project Explorer window in the xtimecomposer. This will also cause the modules on which this application depends (in this case, module_wifi_tiwisl and module_spi_master) to be imported as well. Software setup: 1. Open the file app_tiwisl_simple_webserver\src\wifi_tiwisl_config.h 2. Change the SSID, password and security type according to your wireless router configuration. 3. Currently supported security types are: TIWISL_SEC_TYPE_UNSEC, TIWISL_SEC_TYPE_WEP, TIWISL_SEC_TYPE_WPA and TIWISL_SEC_TYPE_WPA2 For example, if your wireless router is known as testwifirouter with no password, then change the configuration as: #define WIFI_SSID testwifirouter #define WIFI_PASSWORD #define WIFI_SECURITY_TYPE TIWISL_SEC_TYPE_UNSEC Another example: If your wireless router is known as testwifirouter with password as testpwd and the security type as WEP, then change the configuration as: #define WIFI_SSID testwifirouter #define WIFI_PASSWORD testpwd #define WIFI_SECURITY_TYPE TIWISL_SEC_TYPE_WEP Click on the app_tiwisl_simple_webserver item in the Project Explorer pane then click on the build icon (hammer) in xtimecomposer. Check the console window to verify that the application has built successfully. For help in using xtimecomposer, try the xtimecomposer tutorial, which you can find by selecting Help->Tutorials from the xtimecomposer menu. Note that the Developer Column in the xtimecomposer on the right hand side of your screen provides information on the xsoftip components you are using. Select the module_wifi_tiwisl component in the Project Explorer, and you will see its description together with API documentation. Having done this, click the back icon until you return to this quickstart guide within the Developer Column. 1.3 Run the Application Now that the application has been compiled, the next step is to run it on the Slicekit Core Board using the tools to load the application over JTAG (via the XTAG2 and XTAG Adapter card) into the xcore multicore microcontroller. 1. Select the file main.xc in the app_tiwisl_simple_webserver project from the Project Explorer.

3 TiWi-SL Simple Web Server Demo Quickstart Guide 3/6 2. Click on the Run icon (the white arrow in the green circle). 3. At the Select Device dialog select XMOS XTAG-2 connect to L1[0..1] and click OK. 4. xtimecomposer console displays the IP address obtained by the DHCP client. Sample message on the console: ** WELCOME TO THE SIMPLE WEBSERVER DEMO ** Switching on Wi - Fi module... ok! Scanning available networks... testap1 testap2 testap3 testwifirouter ----end ---- Connecting to testwifirouter IP Address : From a PC connected to the same network, open a web browser and open the link: http :// using the IP adress printed out by the application. This should display a Hello World! webpage. You have now got the XA-SK-WIFI_TIWISL slice up and running. 1.4 Next Steps 1. Examine the application code. In xtimecomposer navigate to the src directory under app_tiwisl_simple_webserver and double click on the xhttpd.xc file within it. The file will open in the central editor window Try the GPIO Wi-Fi combo Demo This example demonstrates the use of two Slice Cards, XA-SK-GPIO and XA-SK- WIFI-TIWISL slice together with the xsoftip components for Wi-Fi, SPI, I2C and WebServer to provide access to the GPIO slice features via a simple embedded webserver. Turn GPIO Slice Card LEDs on and off Read the room temperature via the on-board ADC and display on the web page Display GPIO Slice Card button press status Once you have both the XA-SK-GPIO and XA-SK-WIFI-TIWISL slices you can try the GPIO Wi-Fi combo demo by???

4 TiWi-SL Simple Web Server Demo Quickstart Guide 4/6 Figure 1: Hardware Setup for TiWi-SL Simple Web Server Demo

5 TiWi-SL Simple Web Server Demo Quickstart Guide 5/6 Figure 2: Hello World! web page

6 TiWi-SL Simple Web Server Demo Quickstart Guide 6/6 Copyright 2013, All Rights Reserved. Xmos Ltd. is the owner or licensee of this design, code, or Information (collectively, the Information ) and is providing it to you AS IS with no warranty of any kind, express or implied and shall have no liability in relation to its use. Xmos Ltd. makes no representation that the Information, or any particular implementation thereof, is or will be free from any claims of infringement and again, shall have no liability in relation to any such claims.

Embedded Webserver Demo (SPI Flash) Quickstart Guide

Embedded Webserver Demo (SPI Flash) Quickstart Guide Embedded Webserver Demo (SPI Flash) Quickstart Guide IN THIS DOCUMENT Host computer setup Hardware setup Import and build the application Run the application Next steps This application demonstrates an

More information

I2S Master slicekit Loopback Demo Quickstart Guide

I2S Master slicekit Loopback Demo Quickstart Guide I2S Master slicekit Loopback Demo Quickstart Guide Document Number: Publication Date: 2013/11/11 XMOS 2013, All Rights Reserved. I2S Master slicekit Loopback Demo Quickstart Guide 2/7 SYNOPSIS This application

More information

LIN Bus Demo Quickstart Guide

LIN Bus Demo Quickstart Guide LIN Bus Demo Quickstart Guide IN THIS DOCUMENT Hardware Setup Software Setup Next Steps This simple LIN bus demonstration uses xtimecomposer Studio tools and targets the XP-SKC-L2 slicekit core board with

More information

Multi-Uart Com Port Demo Quickstart Guide

Multi-Uart Com Port Demo Quickstart Guide Multi-Uart Com Port Demo Quickstart Guide Publication Date: 2012/10/15 XMOS 2012, All Rights Reserved. Multi-Uart Com Port Demo Quickstart Guide 2/10 Table of Contents 1 Multiuart Com Demo: Quick Start

More information

Ethernet Slice Simple Webserver Application Quickstart

Ethernet Slice Simple Webserver Application Quickstart Ethernet Slice Simple Webserver Application Quickstart IN THIS DOCUMENT Hardware setup Import and build the application Run the application Troubleshooting Next steps This simple demonstration of xtimecomposer

More information

AVB-DC Quick Start Guide

AVB-DC Quick Start Guide AVB-DC Quick Start Guide IN THIS DOCUMENT Obtaining the latest firmware Installing xtimecomposer Tools Suite Importing and building the firmware Installing the application onto flash memory Setting up

More information

Display Controller Component

Display Controller Component Display Controller Component Publication Date: 2013/2/19 XMOS 2013, All Rights Reserved. Display Controller Component 2/11 Table of Contents 1 Overview 3 1.1 Features............................................

More information

Wi-Fi Component REV A. Publication Date: 2013/3/8 XMOS 2013, All Rights Reserved.

Wi-Fi Component REV A. Publication Date: 2013/3/8 XMOS 2013, All Rights Reserved. Wi-Fi Component Publication Date: 2013/3/8 XMOS 2013, All Rights Reserved. Wi-Fi Component 2/25 Table of Contents 1 Overview 3 1.1 Wi-Fi TiWi-SL component................................... 3 1.1.1 Features........................................

More information

TiWi-SL Wi-Fi Component

TiWi-SL Wi-Fi Component TiWi-SL Wi-Fi Component Publication Date: 2013/11/11 XMOS 2013, All Rights Reserved. TiWi-SL Wi-Fi Component 2/24 Table of Contents 1 Overview 3 1.1 Wi-Fi TiWi-SL component...................................

More information

Application Note: AN00153 Programming OTP memory via SPI boot

Application Note: AN00153 Programming OTP memory via SPI boot Application Note: AN00153 Programming OTP memory via SPI boot This application note describes how to create a binary image which can be used to program the xcore tile OTP memory via SPI boot. This is the

More information

Application Note: AN00198 Getting Started with Simulator Tracing in xtimecomposer Studio

Application Note: AN00198 Getting Started with Simulator Tracing in xtimecomposer Studio Application Note: AN00198 Getting Started with Simulator Tracing in xtimecomposer Studio This application note shows how to get started with simulator tracing using the xtimecomposer studio. It shows you

More information

Application Note: AN00194 Getting Started with VCD Tracing in xtimecomposer

Application Note: AN00194 Getting Started with VCD Tracing in xtimecomposer Application Note: AN00194 Getting Started with VCD Tracing in xtimecomposer Studio This application note shows how to get started with VCD tracing using the xtimecomposer studio. It shows you how to run

More information

Application Note: AN00193 Getting Started with Debugging in xtimecomposer

Application Note: AN00193 Getting Started with Debugging in xtimecomposer Application Note: AN00193 Getting Started with Debugging in xtimecomposer Studio This application note shows how to get started with debugging using the xtimecomposer studio. It shows you how to create

More information

XMOS xsoftip Audio BiQuad Function Library

XMOS xsoftip Audio BiQuad Function Library XMOS xsoftip Audio BiQuad Function Library Document Number: Publication Date: 2014/4/16 XMOS 2014, All Rights Reserved. XMOS xsoftip Audio BiQuad Function Library 2/12 Table of Contents 1 Overview 3 2

More information

Application Note: AN00181 xcore-200 explorer - Accelerometer

Application Note: AN00181 xcore-200 explorer - Accelerometer Application Note: AN00181 xcore-200 explorer - Accelerometer This application note show how to the accelerometer on an xcore-200 explorer development kit. The kit itself has a Freescale FXOS8700CQ 6-Axis

More information

Use xtimecomposer to simulate a program

Use xtimecomposer to simulate a program Use xtimecomposer to simulate a program IN THIS DOCUMENT Configure the simulator Trace a signal Set up a loopback Configure a simulator plugin The xcore simulator provides a near cycle-accurate model of

More information

LCD component REV A. Publication Date: 2013/11/15 XMOS 2013, All Rights Reserved.

LCD component REV A. Publication Date: 2013/11/15 XMOS 2013, All Rights Reserved. LCD component Publication Date: 2013/11/15 XMOS 2013, All Rights Reserved. LCD component 2/19 Table of Contents 1 Overview 3 1.1 LCD component........................................ 3 1.1.1 Features........................................

More information

LCD Component REV A. Publication Date: 2012/10/15 XMOS 2012, All Rights Reserved.

LCD Component REV A. Publication Date: 2012/10/15 XMOS 2012, All Rights Reserved. LCD Component Publication Date: 2012/10/15 XMOS 2012, All Rights Reserved. LCD Component 2/13 Table of Contents 1 Overview 3 1.1 Features............................................ 3 1.2 Memory requirements....................................

More information

LCD Component REV A. Publication Date: 2013/2/19 XMOS 2013, All Rights Reserved.

LCD Component REV A. Publication Date: 2013/2/19 XMOS 2013, All Rights Reserved. LCD Component Publication Date: 2013/2/19 XMOS 2013, All Rights Reserved. LCD Component 2/23 Table of Contents 1 Overview 3 1.1 LCD component........................................ 3 1.1.1 Features........................................

More information

Application Note: AN00152 xscope - Bi-Directional Endpoint

Application Note: AN00152 xscope - Bi-Directional Endpoint Application Note: AN00152 xscope - Bi-Directional Endpoint This application note shows how to create a simple example which uses the XMOS xscope application trace system to provide bi-directional communication

More information

Extending startkit using the PCIe slot and slicecards

Extending startkit using the PCIe slot and slicecards Extending startkit using the PCIe slot and slicecards IN THIS DOCUMENT Introduction startkit compatible slicecards Designing a slicecard 1 Introduction The flexibility of the GPIO pins on xcore multicore

More information

Application Note: AN00175 A startkit LED demo

Application Note: AN00175 A startkit LED demo Application Note: AN00175 A startkit LED demo This application shows a very simple program running on the XMOS startkit development board. It displays an animated pattern on the LEDS on the board by directly

More information

Application Note: AN00130 USB HID Class - Extended on slicekit

Application Note: AN00130 USB HID Class - Extended on slicekit Application Note: AN00130 USB HID Class - Extended on slicekit This application note shows how to create a USB device compliant to the standard USB Human Interface Device (HID) class on an XMOS multicore

More information

Application Note: AN00151 xscope - Custom Host Endpoint

Application Note: AN00151 xscope - Custom Host Endpoint Application Note: AN00151 xscope - Custom Host Endpoint This application note shows how to create a simple example which uses the XMOS xscope application trace system to provide instrumentation logging

More information

Lock handling Library

Lock handling Library Lock handling Library This library provides access to hardware and software locks for use in concurrent C programs. In general it is not safe to use these to marshall within XC due to the assumptions XC

More information

XMOS xsoftip Audio Delay-line Function Library

XMOS xsoftip Audio Delay-line Function Library XMOS xsoftip Audio Delay-line Function Library Document Number: Publication Date: 2014/4/16 XMOS 2014, All Rights Reserved. XMOS xsoftip Audio Delay-line Function Library 2/11 Table of Contents 1 Overview

More information

XMOS xsoftip Audio Delay-line Function Library

XMOS xsoftip Audio Delay-line Function Library XMOS xsoftip Audio Delay-line Function Library Publication Date: 2012/10/15 XMOS 2012, All Rights Reserved. XMOS xsoftip Audio Delay-line Function Library 2/10 Table of Contents 1 Overview 3 2 Resource

More information

Application Note: AN00192 Getting Started with Timing Analysis in xtimecomposer Studio

Application Note: AN00192 Getting Started with Timing Analysis in xtimecomposer Studio Application Note: AN00192 Getting Started with Timing Analysis in xtimecomposer Studio The XMOS architecture has predictable timing, which allows many interfaces to be performed in software. This application

More information

Application Note: AN00189 Using QuadSPI for application overlay data

Application Note: AN00189 Using QuadSPI for application overlay data Application Note: AN00189 Using QuadSPI for application overlay data This application note demonstrates how to use overlay regions and how to use QuadPSI flash memory for storing and loading overlay data.

More information

Multi-UART Module Usage Manual

Multi-UART Module Usage Manual Multi-UART Module Usage Manual Publication Date: 2012/10/15 XMOS 2012, All Rights Reserved. Multi-UART Module Usage Manual 2/31 Table of Contents 1 Overview 3 1.1 Features............................................

More information

Application Note: AN00160 How to use the SPI library as SPI master

Application Note: AN00160 How to use the SPI library as SPI master Application Note: AN00160 How to use the SPI library as SPI master This application note shows how to use the SPI library to make the xcore drive an SPI bus as SPI master. The application is the simplest

More information

Application Note: AN00144 xcore-xa - xcore ARM Boot Library

Application Note: AN00144 xcore-xa - xcore ARM Boot Library Application Note: AN00144 xcore-xa - xcore ARM Boot Library This application note shows how to create a simple application which targets the XMOS xcore-xa device and demonstrates how to build and run this

More information

Application Note: AN00174 A startkit glowing LED demo

Application Note: AN00174 A startkit glowing LED demo Application Note: AN00174 A startkit glowing LED demo This application demonstrates I/O on the startkit by showing a glowing LED pattern on the LEDs. It uses the startkit support library to access the

More information

XC-3 LED Tile Control Kit Quick Start Guide

XC-3 LED Tile Control Kit Quick Start Guide XC-3 Tile Control Kit Quick Start Guide Version 1.1 Publication Date: 2010/05/10 Copyright 2010 XMOS Ltd. All Rights Reserved. XC-3 Tile Control Kit Quick Start Guide (1.1) 2/7 1 Introduction The XC-3

More information

xcore VocalFusion Speaker Evaluation Kit Quick Start Guide

xcore VocalFusion Speaker Evaluation Kit Quick Start Guide xcore VocalFusion Speaker Evaluation Kit Quick Start Guide IN THIS DOCUMENT Before you start Load XVF3100 firmware Setup Evaluation Voice Activity Detector Keyword detection Direction of Arrival indication

More information

Application Note: AN00142 xcore-xa - xcore ARM Bridge Library

Application Note: AN00142 xcore-xa - xcore ARM Bridge Library Application Note: AN00142 xcore-xa - xcore ARM Bridge Library This application note shows how to create a simple application which targets the XMOS xcore-xa device and demonstrates how to build and run

More information

The SC receives a public IP address from the DHCP client of the ISP. All traffic is automatically sent out through the WAN interface.

The SC receives a public IP address from the DHCP client of the ISP. All traffic is automatically sent out through the WAN interface. Barracuda NextGen Secure Connectors can connect to the Internet using DHCP client, static, or Wi-Fi client connections. The connections can be configured through the Secure Connector Editor or, for troubleshooting

More information

C-Assist Set up Guide

C-Assist Set up Guide C-Assist Set up Guide Wireless connection to and projection from PCs Macs and Mobile Devices CASIO COMPUTER CO., LTD. Contents Heading Wirelessly Connecting your PC/Mac to your Casio Projector Page Process

More information

User Guide AE6000. Wireless Mini USB Adapter AC580 Dual Band

User Guide AE6000. Wireless Mini USB Adapter AC580 Dual Band User Guide AE6000 Wireless Mini USB Adapter AC580 Dual Band a Contents Product Overview Features 1 Installation Installation 2 Wireless Network Configuration Wi-Fi Protected Setup 3 Wireless network configuration

More information

PRIMARE APP User Guide ios

PRIMARE APP User Guide ios PRIMARE APP User Guide ios Contents Using the Primare APP 4 Installing the Primare app 4 Connecting to the MM30, NP30, or PRE60 4 Selecting a source 4 Browsing tracks 5 Using the Playqueue 5 Play screen

More information

Wireless Setup Guide (for Windows XP, Windows Vista, Windows 7 and Mac OSx)

Wireless Setup Guide (for Windows XP, Windows Vista, Windows 7 and Mac OSx) Wireless Setup Guide (for Windows XP, Windows Vista, Windows 7 and Mac OSx) Wireless Setup Guide The following steps will take you through the process of setting up and connecting to your wireless network.

More information

Application Note: AN00182 USB HID Class - Extended on xcore-200 Explorer

Application Note: AN00182 USB HID Class - Extended on xcore-200 Explorer Application Note: AN00182 USB HID Class - Extended on xcore-200 Explorer This application note shows how to create a USB device compliant to the standard USB Human Interface Device (HID) class on an XMOS

More information

Application Note: AN00188 Using QuadSPI flash memory for persistent storage with xcore-200

Application Note: AN00188 Using QuadSPI flash memory for persistent storage with xcore-200 Application Note: AN00188 Using QuadSPI flash memory for persistent storage with xcore-200 This application note demonstrates how to use XFLASH option --data to store persistent data within QuadSPI flash

More information

Application Note: AN00177 A startkit ADC demo

Application Note: AN00177 A startkit ADC demo Application Note: AN00177 A startkit ADC demo This applications provides a very simple example of using the ADC module. It uses the on-chip ADC in one shot mode (a trigger is called every 200ms from a

More information

XC-1A Development Board Tutorial

XC-1A Development Board Tutorial XC-1A Development Board Tutorial IN THIS DOCUMENT Introduction Illuminate an LED Flash an LED Interface with a host over a serial link Flash and cycle LEDs at different rates Run tasks concurrently Use

More information

Lab Guide Rev. 0 TWRWIFIG1011MILAB

Lab Guide Rev. 0 TWRWIFIG1011MILAB TWR-WIFI-G1011MI Lab Guide Rev. 0 Freescale Semiconductor Inc. TWRWIFIG1011MILAB Contents 1 Purpose... 3 2 Configure Hardware... 3 3 Configure Software... 4 4 Running the Demos... 4 4.1 Troubleshooting...

More information

ArduCAM CC3200 UNO board

ArduCAM CC3200 UNO board ArduCAM CC3200 UNO board User Guide Rev 1.2, Mar 2017 Table of Contents 1 Introduction... 2 2 Features... 3 3 Pin Definition... 4 4 Getting Started CC3200 with Energia... 5 4.1 Out of the Box Test... 5

More information

Network Name displays the name of the wireless network your machine is connected to (this says network name when not connected to a network).

Network Name displays the name of the wireless network your machine is connected to (this says network name when not connected to a network). Wireless Connection Tips for the Horizon Memory Craft 15000 Information can be found in the Machine Manual on pages 100-102. Many routers contain a sticker outlining the SSID and Password. You will need

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

Procedure to Upgrade Verizon FiOS Router and Configure Xbox 360 to connect with Microsoft USB WiFi Adapter

Procedure to Upgrade Verizon FiOS Router and Configure Xbox 360 to connect with Microsoft USB WiFi Adapter FiOS TV & Internet Verizon DSL FAQ s Wireless Verizon Bundles Verizon Support Procedure to Upgrade Verizon FiOS Router and Configure Xbox 360 to connect with Microsoft USB WiFi Adapter Overview The current

More information

Application Note: AN00136 USB Vendor Specific Device

Application Note: AN00136 USB Vendor Specific Device Application Note: AN00136 USB Vendor Specific Device This application note shows how to create a vendor specific USB device which is on an XMOS multicore microcontroller. The code associated with this

More information

DFU loader for XMOS USB AUDIO devices

DFU loader for XMOS USB AUDIO devices DFU loader for XMOS USB AUDIO devices Document Number: Publication Date: 2014/6/11 XMOS 2014, All Rights Reserved. DFU loader for XMOS USB AUDIO devices 2/10 Table of Contents 1 Overview 3 2 Creating factory

More information

Wireless Setup Guide (for Windows XP, Windows Vista, Windows 7 and Mac OSx) (3GM2Wn)

Wireless Setup Guide (for Windows XP, Windows Vista, Windows 7 and Mac OSx) (3GM2Wn) Wireless Setup Guide (for Windows XP, Windows Vista, Windows 7 and Mac OSx) (3GM2Wn) Wireless Setup Guide The following steps will take you through the process of setting up and connecting to your wireless

More information

Thank You for Choosing the CRICKET CROSSWAVE

Thank You for Choosing the CRICKET CROSSWAVE CRICKET CROSSWAVE Thank You for Choosing the CRICKET CROSSWAVE The supported functions and actual appearance depend on the product you purchased. The following pictures are provided for illustration only.

More information

Quick Installation Guide

Quick Installation Guide V3.01 Model: FI8602W Quick Installation Guide Outdoor Water-proof Wireless IP Camera ShenZhen Foscam Intelligent Technology Co., Ltd Quick Installation Guide - For Windows OS Package Contents IP Camera

More information

TELST R A E LITE GAT E WAY QUICK START GUIDE

TELST R A E LITE GAT E WAY QUICK START GUIDE TELST R A E LITE GAT E WAY QUICK START GUIDE WELCOME TO TELSTRA ELITE GATEWAY - THANK YOU FOR CHOOSING US! This guide is to help you get the most out of your Telstra Wireless Mobile Broadband experience.

More information

woodbourne setup instructions using Wi-Fi or ethernet connections

woodbourne setup instructions using Wi-Fi or ethernet connections woodbourne setup instructions using Wi-Fi or ethernet connections Woodbourne setup instructions using Wi-Fi or Ethernet connection This document explains how to set up your Woodbourne wireless loudspeaker

More information

Connecting Your Device to a Wireless Network

Connecting Your Device to a Wireless Network Connecting Your Device to a Wireless Network This manual is designed to be a tutorial for our customers seeking to connect their electronic devices to their home Internet network. This manual will include

More information

Figure 5-25: Setup Wizard s Safe Surfing Screen

Figure 5-25: Setup Wizard s Safe Surfing Screen 4. After the settings have been saved, the Safe Surfing screen will appear. Click the Norton Internet Security Suite button to install the special edition of Norton Internet Security on your computer,

More information

XC-3 Hardware Manual. Version 1.3. Publication Date: 2009/09/25 Copyright 2009 XMOS Ltd. All Rights Reserved.

XC-3 Hardware Manual. Version 1.3. Publication Date: 2009/09/25 Copyright 2009 XMOS Ltd. All Rights Reserved. XC-3 Hardware Manual Version 1.3 Publication Date: 2009/09/25 Copyright 2009 XMOS Ltd. All Rights Reserved. XC-3 Hardware Manual (1.3) 2/14 1 Introduction The XC-3 is an Event-Driven Processor development

More information

OTC Student Wireless Network

OTC Student Wireless Network OTC Student Wireless Network (Connection Instructions for Windows 8, Windows 7, MAC OSX, ios and Kindle) Note: The OTC student wireless network conforms to the IEEE 802.11 a/b/g protocol and standards.

More information

Smart Plug User Guide

Smart Plug User Guide Smart Plug User Guide Version 1.2 Copyright 2016 About This Guide This document introduces to users an example of ESP IOT Platform applications, the Espressif Smart Plug. The document includes the following

More information

Setup Guide Multi-Link

Setup Guide Multi-Link Setup Guide Multi-Link Contents Page What is Multi-Link? 2-6 Setting up the Multi-Link (Steps 1-3) 3-4 Security Types Explained 4-5 Setting up the Multi-Link (Steps 4-7) 6-9 Adding WiFi thermostats to

More information

Wireless Setup Guide (for Windows XP, Windows Vista, Windows 7, Windows 8 and Mac OSx)

Wireless Setup Guide (for Windows XP, Windows Vista, Windows 7, Windows 8 and Mac OSx) Wireless Setup Guide (for Windows XP, Windows Vista, Windows 7, Windows 8 and Mac OSx) Wireless Setup Guide The following steps will take you through the process of setting up and connecting to your wireless

More information

Connecting Your iphone, ipad, or ipod touch to the NEIU Secured Network

Connecting Your iphone, ipad, or ipod touch to the NEIU Secured Network Connecting Your iphone, ipad, or ipod touch to the NEIU Secured Network This document has been written to assist Northeastern Illinois University faculty, staff, and students connect their iphones, ipads,

More information

HSPA+ WiFi Router with Voice

HSPA+ WiFi Router with Voice NETCOMM LIBERTY SERIES HSPA+ WiFi Router with Voice 3G22WV Quick Start Guide This router has been designed to be placed on a desktop. All of the cables exit from the rear for better organization. The LED

More information

The FSC receives a public IP address from the DHCP client of the ISP. All traffic is automatically sent out through the WAN interface.

The FSC receives a public IP address from the DHCP client of the ISP. All traffic is automatically sent out through the WAN interface. Barracuda NextGen Secure Connectors can connect to the Internet using DHCP client, static, or Wi-Fi client connections. The connections can be configured through the Secure Connector Editor or, for troubleshooting

More information

NET-DYN USB Dual Band (Mediatek) Installation Guide. This manual is divided into three parts: Windows XP, Windows 7 / 8 / 8.

NET-DYN USB Dual Band (Mediatek) Installation Guide. This manual is divided into three parts: Windows XP, Windows 7 / 8 / 8. Installation Guide NET-DYN USB Dual Band (Mediatek) Installation Guide This manual is divided into three parts: Windows XP, Windows 7 / 8 / 8.1 /10, and Mac 1.Windows XP Please do the following steps to

More information

Application Note: AN00209 xcore-200 DSP Elements Library

Application Note: AN00209 xcore-200 DSP Elements Library Application Note: AN00209 xcore-200 DSP Elements Library The application note gives an overview of using the xcore-200 DSP Elements Library. Required tools and libraries xtimecomposer Tools - Version 14.0.0

More information

Smart Device Simple World

Smart Device Simple World Smart Device Simple World Thank you for choosing HUAWEI Mobile WiFi Supported functions and actual appearance depend on the specific models you purchased. The illustrations are provided for your reference

More information

The R25 Robot Series

The R25 Robot Series The R25 Robot Series Network Setup Guide Contents Overview 2 Configuration 3 On-Screen Menu Configuration 3 Network Test 4 USB Simple Configuration WEP and WPA/WPA2-Personal 5 USB Simple Configuration

More information

Quick Installation Guide

Quick Installation Guide Model: FI8916W Quick Installation Guide Indoor Pan/Tilt Wireless IP Camera Black White For Windows OS ------- Page 1 For MAC OS ------- Page 16 ShenZhen Foscam Intelligent Technology Co., Ltd Quick Installation

More information

Auburn Montgomery AUM Wi-Fi. Windows 7. User s Guide & System Documentation

Auburn Montgomery AUM Wi-Fi. Windows 7. User s Guide & System Documentation Auburn Montgomery AUM Wi-Fi Windows 7 User s Guide & System Documentation November 2018 WiFi Windows 7 For: Student Campus Fac Staff AUM WiFi // Windows 7 User s Guide Page 1 Table of Contents Overview

More information

PLEXTALK Pocket PTP1 Tutorial - Network Folder -

PLEXTALK Pocket PTP1 Tutorial - Network Folder - PLEXTALK Pocket PTP1 Tutorial - Network Folder - Shinano Kenshi Co., Ltd. has the right to change the content on this tutorial without prior notice. Table of Contents 1 What you can do with the Network

More information

Lesson 10. Circuit Boards and Devices Ethernet and Wi-Wi Connectivity with the Internet

Lesson 10. Circuit Boards and Devices Ethernet and Wi-Wi Connectivity with the Internet Lesson 10 Circuit Boards and Devices Ethernet and Wi-Wi Connectivity with the Internet 1 Connecting Arduino USB to Internet Arduino board IDE supports USB. USB port connects to a mobile or computer or

More information

Installing Your Printer to Your Network for the First Time

Installing Your Printer to Your Network for the First Time Installing Your Printer to Your Network for the First Time SELPHY CP910 Macintosh OS 1 Installing Your Printer to Your Network for the First Time SELPHY CP910 Macintosh OS Preparing to Connect My Printer

More information

NCR. Wi-Fi Setup Assistant. User guide

NCR. Wi-Fi Setup Assistant. User guide NCR Wi-Fi Setup Assistant User guide 15 Contents 1 Getting started... 3 1.1 Features... 3 1.2 System Requirements... 3 1.3 Installing Wi-Fi Setup Assistant... 4 2 Configuring a Wi-Fi Printer... 6 2.1 Setup

More information

Embedded Webserver Library Programming Guide

Embedded Webserver Library Programming Guide Embedded Webserver Library Programming Guide Document Number: Publication Date: 2014/6/12 XMOS 2014, All Rights Reserved. Embedded Webserver Library Programming Guide 2/17 SYNOPSIS This software block

More information

Overview. Introduction. Contents. Linksys Wireless-N Range Extender. Front

Overview. Introduction. Contents. Linksys Wireless-N Range Extender. Front User Guide RE2000V2 Linksys Wireless-N Range Extender Introduction This User Guide can help you connect the extender to your network and solve common setup issues. You can find more help from our award-winning,

More information

Wireless Security Guide (for Windows XP, Windows Vista, Windows 7, Mac OSx)

Wireless Security Guide (for Windows XP, Windows Vista, Windows 7, Mac OSx) Wireless Security Guide (for Windows XP, Windows Vista, Windows 7, Mac OSx) Wireless Security Guide This guide will take you through the process of configuring, changing or checking the wireless security

More information

How to refresh a Wireless Profile on your computer

How to refresh a Wireless Profile on your computer How to refresh a Wireless Profile on your computer This document details how to delete the old Wi-Fi connection profile stored on your computer so it does not conflict with your new Wi-Fi connection When

More information

Demonstration Instructions

Demonstration Instructions Demonstration Instructions Digital Defence Ltd. Secure Mobile Version 10.2.1 19 th July 2010 Table of Contents TABLE OF CONTENTS... 2 1. DEMONSTRATION INSTRUCTIONS... 3 1.1 PREREQUISITES... 3 1.2 PROCEDURE...

More information

[ Getting Started with Analyzer, Interactive Reports, and Dashboards ] ]

[ Getting Started with Analyzer, Interactive Reports, and Dashboards ] ] Version 5.3 [ Getting Started with Analyzer, Interactive Reports, and Dashboards ] ] https://help.pentaho.com/draft_content/version_5.3 1/30 Copyright Page This document supports Pentaho Business Analytics

More information

libquadflash API 1 General Operations

libquadflash API 1 General Operations libquadflash API IN THIS DOCUMENT General Operations Boot Partition s Data Partition s The libquadflash library provides functions for reading and writing data to Quad-SPI flash devices that use the xcore

More information

Radiant Systems Wireless Point-of-Sale Security Requirements

Radiant Systems Wireless Point-of-Sale Security Requirements Abacus Business Solutions 15301 Roosevelt Blvd., Suite 303 Clearwater, FL 33760 P: (727) 524-0177 F: (727) 524-0188 www.abacuspos.com Radiant Systems Wireless Point-of-Sale Security Requirements This document

More information

GPIO Library. Features. Operating modes. Software version and dependencies. Related application notes GPIO (1.1.0)

GPIO Library. Features. Operating modes. Software version and dependencies. Related application notes GPIO (1.1.0) GPIO Library The XMOS GPIO library allows you to access xcore ports as low-speed GPIO. Although xcore ports can be directly accessed via the xc programming language this library allows more flexible usage.

More information

DFU loader for XMOS USB AUDIO devices

DFU loader for XMOS USB AUDIO devices DFU loader for XMOS USB AUDIO devices Version 1.1 Publication Date: 2010/11/05 Copyright 2010 XMOS Ltd. All Rights Reserved. DFU loader for XMOS USB AUDIO devices (1.1) 2/6 1 Introduction The DFU loader

More information

How to manually set up EW-7228APn to extender wireless range

How to manually set up EW-7228APn to extender wireless range How to manually set up EW-7228APn to extender wireless range 1. Find out the IP address of your computer. Have your computer get on Internet as normally, without EW-7228APn turning on. If you use a Windows

More information

Getting Your Printer Back On Your Network After A Router Or Network Change

Getting Your Printer Back On Your Network After A Router Or Network Change Getting Your Printer Back On Your Network After A Router Or Network Change SELPHY CP910 Windows OS 1 If any of the following situations exist You have replaced your Router or Access Point You want to use

More information

Quick Setup Guide. for Standalone Omada Access Points. EAP110 / EAP115 / EAP225 / EAP245 / EAP320 / EAP330 / EAP115-Wall

Quick Setup Guide. for Standalone Omada Access Points. EAP110 / EAP115 / EAP225 / EAP245 / EAP320 / EAP330 / EAP115-Wall Quick Setup Guide for Standalone Omada Access Points EAP110 / EAP115 / EAP225 / EAP245 / EAP320 / EAP330 / EAP115-Wall EAP110-Outdoor / EAP225-Outdoor / EAP225-Wall 1910012420 REV1.0.1 May 2018 Omada EAP

More information

The Launch GDS can be updated via a wireless internet connection as well as by USB or cat5 cable.

The Launch GDS can be updated via a wireless internet connection as well as by USB or cat5 cable. LAUNCH Wifi Setup Procedure The Launch GDS can be updated via a wireless internet connection as well as by USB or cat5 cable. If you are in a wifi hotspot or have an open network available simply choose

More information

First: Obtain a Linksys "WUSB300N for V11A" adapter kit: it contains the USB wireless

First: Obtain a Linksys WUSB300N for V11A adapter kit: it contains the USB wireless First: Obtain a Linksys "WUSB300N for V11A" adapter kit: it contains the USB wireless network adapter (with USB extension cable and Windows XP installation CD.) Before plugging in the adapter, verify that

More information

PT100 and PT100W. PT100F and PT100FW. Ethernet Clock with Proximity Badge Reader

PT100 and PT100W. PT100F and PT100FW. Ethernet Clock with Proximity Badge Reader PT100 and PT100W Ethernet Clock with Proximity Badge Reader Menu/Enter Key Function Keys Proximity Badge Reader Main Display Screen Note: PT100W includes WiFi Capability. PT100F and PT100FW Ethernet Clock

More information

SysLINK 500 Family Quick Start Guide

SysLINK 500 Family Quick Start Guide 1 QS002 002 1706. Copyright 2017. Information subject to change without notice. SysLINK 500 Family Quick Start Guide SL 500 What s Included Includes SysSCRIPT Lite IoT (Internet of Things) support Remote

More information

A buffered receiver. receiver task FIFO ...

A buffered receiver. receiver task FIFO ... A buffered receiver version 1.1.1 scope description boards Example. This code is provided as example code for a user to base their code on. A buffered receiver Unless otherwise specified, this example

More information

Yealink T48S Wireless Settings

Yealink T48S Wireless Settings Yealink T48S Wireless Settings Wireless Network Yealink T48S Wireless Settings Overview Wi-Fi is a popular wireless networking technology that uses radio waves to provide wireless High speed Internet and

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

Accessing the Web Interface on an SPSx50/x51 GPS Receiver using Bluetooth Wireless Technology

Accessing the Web Interface on an SPSx50/x51 GPS Receiver using Bluetooth Wireless Technology 16 April 2007 Accessing the Web Interface on an SPSx50/x51 GPS Receiver using Bluetooth Wireless Technology Summary This document describes how to access the web interface on a SPSx50/x51 Modular GPS receiver

More information

Wireless N USB Adapter. Model # AWLL6077 User s Manual. Rev. 1.0

Wireless N USB Adapter. Model # AWLL6077 User s Manual. Rev. 1.0 Wireless N USB Adapter Model # AWLL6077 User s Manual Rev. 1.0 Table of Contents 1. Introduction...2 1.1 Package Contents...2 1.2 Features...2 2. Installation...3 3. Configuring the Adapter...7 4. Wireless

More information

Quick Start Guide. Figure 1 Voice Capture Board Plugged Directly into Raspberry Pi

Quick Start Guide. Figure 1 Voice Capture Board Plugged Directly into Raspberry Pi Quick Start Guide Thank you for acquiring the Cirrus Logic Voice Capture Development Kit for Amazon AVS-Enabled Products. This document aims to get you up and running with the kit. 1 Hardware Set Up This

More information