Application Note MUSIC NEST UDP streaming example OP-AN-021. Description. Brief introduction

Size: px
Start display at page:

Download "Application Note MUSIC NEST UDP streaming example OP-AN-021. Description. Brief introduction"

Transcription

1 Application Note MUSIC NEST UDP streaming example OP-AN-021 Device: openpicus FLYPORT and Music Nest IDE version: 2.2 External Libs: VLSICodec OpenPicus Free IDE Connections: stereo 3.5mm standard jack Description This app shows an example of how to play audio from a UDP streaming source. VLC (VideoLan Client is used as music encoder and network streamer. The app uses MUSIC Nest expansion board, compatible with Flyport Wi-Fi and Flyport Ethernet modules. Author: serra82@gmail.com Brief introduction MUSIC NEST can be used with both FLYPORT Wi-Fi or FLYPORT Ethernet modules. It integrates a multiple audio decoder (MP3, WMA, Ogg Vorbis, etc...), and a micro SD socket for FAT file system storage (both FAT16/32 can be used). This application note uses the MUSIC NEST expansion board hardware to provide the following services: UDP Socket (FLYPORT is the UDP Server) VS1053 with SPI interface to decode compressed music data micro SD card slot is NOT USED, since music data comes from the network FLYPORT Module acts as UDP Server, any Client can connect to its socket and stream audio content to its output. Pay attention that only one client at time can access to UDP Server. User can customize UDP port value (default is 4000), and turn up / down volume using cgi requests via Flyport web server. 1

2 Firmware build: User can take advance of provided templates that are just configured to set the right size of UDP Socket buffer. If a application note project template is used, the reading of this chapter can be skipped until the Music NEST libs. Instead, if user decide to create a custom firmware starting by a default IDE template, due to the need of a large buffer to receive music data on the fly, the TCP/IP wizard should be used with attention to configure the right Sockets sizes. Following is a detailed description of the TCP/IP wizard setup: 1) default services and default network configuration are enough to provide the UDP Streaming for Music NEST demo 2) TCP Socket configuration (this configuration is to prepare to TCP streaming buffers, not used in this demo): - GENERIC_TCP_CLIENT TX: 125 RX: GENERIC_TCP_SERVER TX: 200 RX: HTTP_SERVER count:2 TX 1000 RX: DEFAULT TX:100 RX:100 - FTP_COMMAND count:0 - FTP_DATA count:0 2

3 3) UDP sockets configuration as: - Socket n.1 Buffer size: Other Sockets not enabled 4) leave default setting for hardware configuration (UART port: 1 Buffer size: 256) and finish wizard Music Nest libs Insert as external lib in the project VlsiCodec.c/.h (see.zip file relative to this application note) First of all in FlyportTask() inizialize the VLSI codec: VlsiHWInit(); VlsiInitNewMode(); Now you can start to send mp3 file to nest Music in multiples of 32 byte with VlsiWriteDataN(AudioBufferPoint, 32); or change volume level with: right = 100; left = 100; VlsiSetVolume( right, left); To test the Hardware communication, a sine tone test function is provided: VlsiSineTest(126); If you can listen a tone from the phone/line output jack, the communication is ok. 3

4 Firmware example: UDP music streaming from VLC The simplest way to try the Music Nest demo firmware is to receive music data from a PC or MAC that uses VLC as UDP streaming Client. Flyport module is the UDP Server, so inside the code it can be seen the command to open an UDP socket: UDPSocketServer = UDPServerOpen(StreamPort); Inside a while loop Flyport receives mp3 data and sends it to VLSI Codec via SPI Bus: while( ((CurrentPacketSize >= 32) && (AudioBuffSize >= CacheSize)) ((CurrentPacketSize == 0) && (AudioBuffSize > 0)) ) if (AudioBuffSize >= 32) wri = 32; else wri = AudioBuffSize; UDPRead(UDPSocketServer, AudioBuffUDP, wri); do wri2 = VlsiWriteDataN(AudioBuffUDP, wri); //audio pointer if ( wri == wri2 ) CurrentPacketSize -= wri2; AudioBuffSize -= wri2; else #if (DEBUG > 1) UARTWrite(1, "Busy\n\r"); #endif vtaskdelay(1); while((wri2 == 0) && (AudioBuffSize > 0)); AudioBuffSize = CurrentPacketSize; In addiction to audio streaming, also volume can be controlled at run-time. To change volume settings just open a browser and write the following CGI request: to turn up volume to turn down volume 4

5 Setup a testing environment To test the application note, it is needed to download and install VLC (VideoLAN Client) on a PC (it is available for both Windows and Linux) or on a MAC. Please, download the software from the site Once correctly installed, and before open VLC, please make sure both PC (or MAC) and Flyport are connected to the same network. To correctly start to stream music data to UDP Server Socket of Flyport module, open VLC and follow the following steps: Select a music file with Ctrl+S or using the Media Stream... menu: Add the desired file and press Stream button: 5

6 Skip all the windows using the next button until it is shown the following window: The string provides to VLC all the compression and connection parameters to VLC, like IP_FLYPORT and PORT that user should customize at his needs. :sout=#transcodevcodec=none,acodec=mp3,ab=128,channels=2,samplerate=44100: stdaccess=udp,mux=raw,dst=ip_flyport:port Now Click on Stream button and enjoy your favorite music through Music Nest stereo output! 6

VS1063 ENCODER DEMONSTRATION

VS1063 ENCODER DEMONSTRATION PRELIMINARY DOCUMENT VS1063 ENCODER DEMONSTRATION VLSI Solution Audio Decoder Project Code: Project Name: All information in this document is provided as-is without warranty. Features are subject to change

More information

(1) Device Management tool: enables you to remotely manage AX220xx RS232-to-WiFi devices.

(1) Device Management tool: enables you to remotely manage AX220xx RS232-to-WiFi devices. 1 / 11 Quick Start This chapter provides a high level overview of AXR2W installation and configuration. For detailed introduction about this utility you can refer to AX220xx RS232-to-WiFi Reference Design

More information

VLSI Solution. VS1000C Audio Module Tester. Controlled Document. VS1000 VLSI Solution Ogg Vorbis Player. Project Code: Revision History

VLSI Solution. VS1000C Audio Module Tester. Controlled Document. VS1000 VLSI Solution Ogg Vorbis Player. Project Code: Revision History Controlled Document VLSI Ogg Vorbis Plaer Project Code: Project Name: Revision Histor Rev. Date Author Description 0.9 2010-12-21 Initial version. Rev. 0.9 2010-12-21 Page 1(9) Table of Contents 1 Audio

More information

Pro Audio Streamers. IP Streamers. June catalogue. Manufacturers of audio & video products for radio & TV broadcasters

Pro Audio Streamers. IP Streamers. June catalogue. Manufacturers of audio & video products for radio & TV broadcasters Pro Audio Streamers IP Streamers June 2012 catalogue Manufacturers of audio & video products for radio & TV broadcasters Pro Audio Streamers IP Streamers The Pro Audio Streamers are a range of three IP

More information

Project Title: Design and Implementation of IPTV System Project Supervisor: Dr. Khaled Fouad Elsayed

Project Title: Design and Implementation of IPTV System Project Supervisor: Dr. Khaled Fouad Elsayed Project Title: Design and Implementation of IPTV System Project Supervisor: Dr. Khaled Fouad Elsayed What's IPTV? In brief IPTV is a method of distributing television content over IP that enables a more

More information

Embedding Audio into your RX Application

Embedding Audio into your RX Application Embedding Audio into your RX Application Renesas Electronics America Inc. Renesas Technology & Solution Portfolio 2 Microcontroller and Microprocessor Line-up 2010 2013 32-bit 8/16-bit 1200 DMIPS, Superscalar

More information

Videon Product Manual

Videon Product Manual Videon Product Manual Greylock and Sorona Encoders/Decoders Document Number 10004134-R06 Copyright 2018 Videon Central, Inc. All rights reserved. No part of this publication may be reproduced, distributed,

More information

VLSI Solution. VS10XX - Plugins. Plugins, Applications. Plugins. Description. Applications. Patches. In Development. Public Document.

VLSI Solution. VS10XX - Plugins. Plugins, Applications. Plugins. Description. Applications. Patches. In Development. Public Document. VS10XX - Plugins Plugins VS1011/VS1002 Loudness Plugin DTMF Generator VS1003B WMA Rewind Plugin Spectrum Analzer Plugin Pitch Shifter / Tempo Change Plugin Applications Standalone Plaer / Recorder VS1003B

More information

Videon Product Manual. Shavano Encoder

Videon Product Manual. Shavano Encoder Videon Product Manual Shavano Encoder Copyright 2018 Videon Central, Inc. All rights reserved. No part of this publication may be reproduced, distributed, or transmitted in any form or by any means, including

More information

Powered by EZCast Software

Powered by EZCast Software Powered by EZCast Software User Manual Rev. 1.00 1. General EZCast is a special program to project your mobile device display to another screen through Wi-Fi connection. You can enhance your TV/Projector

More information

March 2016 Rev. 1.3 Last valid version 2.0.5

March 2016 Rev. 1.3 Last valid version 2.0.5 March 2016 Rev. 1.3 Last valid version 2.0.5 Index Index 2 What s Quantum LITE 4 I.1 Introduction... 4 I.2 Quantum Lite Features... 5 Quick quide 6 II.1 Handheld codec. Power On.... 6 II.2 Main menu...

More information

TX G1

TX G1 TX G1 www.zerhex.com Zerhex Broadcaster allows you to stream live audio directly from any analog audio source in real time in the format (MP3, OGG PCM, G.711,G.722) and a bit rate of up to 320kbps. This

More information

Name: Serial MP3 Player A manual

Name: Serial MP3 Player A manual OPEN-SMART Name: Serial MP3 Player A manual Version: v1.1 Date: 2018.01.13 OPEN-SMART 1 / 13 1 Description 2 / 13 The module is a kind of simple MP3 player device which is based on a high-quality MP3 audio

More information

User manual. 1080p HDMI Extender over IP with PoE P2K-HRSL3E1 / P2K-LHRS1E3 P2K-HRSL3E1-P / P2K-LHRS1E3-P

User manual. 1080p HDMI Extender over IP with PoE P2K-HRSL3E1 / P2K-LHRS1E3 P2K-HRSL3E1-P / P2K-LHRS1E3-P User manual P2K-HL3E1 P2K-HL3E1-P 1080p HDMI Extender over IP 1080p HDMI Extender over IP with PoE P2K-HRSL3E1/ P2K-LHRS1E3 P2K-HRSL3E1 / P2K-LHRS1E3 P2K-HRSL3E1-P / P2K-LHRS1E3-P Partilink Technology

More information

Lesson 6 Intel Galileo and Edison Prototype Development Platforms. Chapter-8 L06: "Internet of Things ", Raj Kamal, Publs.: McGraw-Hill Education

Lesson 6 Intel Galileo and Edison Prototype Development Platforms. Chapter-8 L06: Internet of Things , Raj Kamal, Publs.: McGraw-Hill Education Lesson 6 Intel Galileo and Edison Prototype Development Platforms 1 Intel Galileo Gen 2 Boards Based on the Intel Pentium architecture Includes features of single threaded, single core and 400 MHz constant

More information

OpenPicus WIFI module. Introduction. Pinout. Features

OpenPicus WIFI module. Introduction. Pinout. Features Introduction FLYPORT is a professional, slim, wireless module ready for integration in brand new or existing electronic products. Based on Microchip PIC 24F256FJ106GA 16 bits processors and the Microchip

More information

User Instructions Multi-Channel H.264 HD Multimedia System

User Instructions Multi-Channel H.264 HD Multimedia System User Instructions Multi-Channel H.264 HD Multimedia System High Definition Video Processor Module DM8107 Rapid Prototyping System Model Name: Z3-MVPR-02 DOC-USR-0006-01 Manual Version 1.0.3 Software Version

More information

HTML 5 and CSS 3, Illustrated Complete. Unit K: Incorporating Video and Audio

HTML 5 and CSS 3, Illustrated Complete. Unit K: Incorporating Video and Audio HTML 5 and CSS 3, Illustrated Complete Unit K: Incorporating Video and Audio Objectives Understand Web video and audio Use the video element Incorporate the source element Control playback HTML 5 and CSS

More information

HDMI-IP-E/R User Manual v1.3

HDMI-IP-E/R User Manual v1.3 HDMI-8x8 HDMI-IP-E/R User Manual v1.3 COPYRIGHT and TRADEMARK HDMI-IP-E and HDMI-IP-R All rights reserved by APANTA LCC, Porland, Oregon, USA. No part of this document may be reproduced in any form or

More information

Why not have it all? Audio players reinvented. XMP44 Professional modular audio system. Web control (HTML5) AUDAC Touch TM app XMP44

Why not have it all? Audio players reinvented. XMP44 Professional modular audio system. Web control (HTML5) AUDAC Touch TM app XMP44 MUSIC SOURCES AUDAC pays great attention to their multimedia sources. The development of cutting edge digital audio technology has led to a complete range of sources that will inspire you. Why not have

More information

NPM Network Player Module. User Manual

NPM Network Player Module. User Manual NPM Network Player Module User Manual Gato Audio NPM - Network Player Module Contents Package contents 3 Overview 4 Roon Ready 4 Bluetooth Upgrade 4 The NET input - Volume Control 4 Button Light Patterns

More information

STREAMER MAX AUDIO OVER IP ENCODER / DECODER

STREAMER MAX AUDIO OVER IP ENCODER / DECODER STREAMER MAX AUDIO OVER IP ENCODER / DECODER Half-Duplex and Full-Duplex audio connection Professional Hi-Quality analogue and Digital In/Out with A/D and D/A conversion Optional connection via Bluetooth,

More information

How to Listen to WIXY1260Online & WIXZRadio.com ( The Z / WIXZ1360Online)

How to Listen to WIXY1260Online & WIXZRadio.com ( The Z / WIXZ1360Online) How to Listen to WIXY1260Online & WIXZRadio.com ( The Z / WIXZ1360Online) Contents Listen On Your Computer... 2 itunes Internet Radio... 3 Listen On Your Smartphone or Tablet PC... 3 WIXY1260Online or

More information

CLOUDCAST User Guide. Website :

CLOUDCAST User Guide. Website : CLOUDCAST User Guide Website : www.cloud-cast.com Last update on Sep 8 th, 2016 Contents 1. Create a user account(pc) 2 2. Connecting Set-top box 3 3. Log in Set-top box 4 4. Getting started Cloud Console

More information

The CANoe.Ethernet Solution

The CANoe.Ethernet Solution Use in Praxis V1.0 2016-11-23 Agenda 1. Ethernet the Newcomer in Automotive 2. Why an Automotive Ethernet Option for CANoe? 3. Brief Look to CANoe 4. First Hand Usecase from Field 2/20 Network Topology

More information

Linkus User Guide. Android Edition 1.2.6

Linkus User Guide. Android Edition 1.2.6 Android Edition 1.2.6 Revised: March 30, 2017 CONTENTS INTRODUCTION... 3 About This Guide... 3 Standard Telephone Features... 3 Specifications... 3 LINKUS SEVER SETTINGS... 4 Installing and Enabling Linkus...

More information

SET-UP INSTRUCTIONS. How can the DB9000-TX be used as an Icecast Source Client, sending audio to DB9000-RX decoder used as an Icecast Source Server

SET-UP INSTRUCTIONS. How can the DB9000-TX be used as an Icecast Source Client, sending audio to DB9000-RX decoder used as an Icecast Source Server SET-UP INSTRUCTIONS How can the DB9000-TX be used as an Icecast Source Client, sending audio to DB9000-RX decoder used as an Icecast Source Server Publish Date: 24-Feb-2017 Contents General information...

More information

What applications can be done by using VS1003? ver. 1.2 / November 2007

What applications can be done by using VS1003? ver. 1.2 / November 2007 What applications can be done by using VS1003? ver. 1.2 / November 2007 Alternatives Audio decoder (slave) Basic functionality MP3/WMA/SP- midi/wav Voice recording from microphone Streaming support for

More information

AL582C-EVB-A0 Evaluation Board

AL582C-EVB-A0 Evaluation Board AL582C-EVB-A0 Evaluation Board User Manual Version 1.0 INFORMATION FURNISHED BY AVERLOGIC IS BELIEVED TO BE ACCURATE AND RELIABLE. HOWEVER, NO RESPONSIBILITY IS ASSUMED BY AVERLOGIC FOR ITS USE, OR FOR

More information

1. Create a user account(pc) Connecting Set-top box Log in Set-top box Getting started Cloud Console Registered Set-top-Box 6

1. Create a user account(pc) Connecting Set-top box Log in Set-top box Getting started Cloud Console Registered Set-top-Box 6 1 CLOUDCAST Contents 1. Create a user account(pc) 2 2. Connecting Set-top box 3 3. Log in Set-top box 4 4. Getting started Cloud Console 5 5. Registered Set-top-Box 6 6. Using the Virtual Device 7 7. Setting

More information

Tim Chin Omar Gonzalez Ward Huang. Critical Design Review

Tim Chin Omar Gonzalez Ward Huang. Critical Design Review Tim Chin Omar Gonzalez Ward Huang Critical Design Review » Music player that plays custom songs and playlists based on multiple factors including: Lighting (artificial, natural, brightness) Time of day

More information

BRIGHTSIGN PRODUCT SELECTOR

BRIGHTSIGN PRODUCT SELECTOR BRIGHTSIGN PRODUCT SELECTOR MODEL MATCHMAKING STEP 1 Answer the questions to find your BrightSign model match! Audio Only? Yes No 4K? Live TV? USB, Serial, IR Interactive? Network Interactive/Video Walls?

More information

Applications Wi-Fi sensors Wi-Fi automation Internet of things Wi-Fi enterteinment Serial to Wi-Fi

Applications Wi-Fi sensors Wi-Fi automation Internet of things Wi-Fi enterteinment Serial to Wi-Fi Introduction Flyport is a revolutionary WiFi module based on the open source platform openpicus. Flyport is not simply a serial to WiFi solution, but a smart module with no need of an external host processor

More information

Get Started SUPPORT WARRANTY. Visit the i.mx community at

Get Started SUPPORT WARRANTY.   Visit the i.mx community at SUPPORT Visit the i.mx community at www.imxcommunity.org. WARRANTY Visit www.nxp.com/warranty for complete warranty information. Get Started Download installation software and documentation under Getting

More information

What applications can be done by using VS1003?

What applications can be done by using VS1003? What applications can be done by using VS1003? Ver 1.4 / September 2011 Alternatives Audio decoder (slave) Basic functionality MP3/WMA/SP-midi/WAV Voice recording from microphone Streaming support for

More information

PBMSQG9. Compact & Portable Bluetooth Wireless Speaker. Built-in Rechargeable Battery, MP3/USB/Micro SD Readers, FM Radio

PBMSQG9. Compact & Portable Bluetooth Wireless Speaker. Built-in Rechargeable Battery, MP3/USB/Micro SD Readers, FM Radio PBMSQG9 Compact & Portable Bluetooth Wireless Speaker Built-in Rechargeable Battery, MP3/USB/Micro SD Readers, FM Radio KEY INSTRUNCTIONS: 1 2 3 4 5 6 7 8 9 10 1. Aux-in jack 2. Charging Jack 3. ON/OFF

More information

Application and Desktop Sharing. Omer Boyaci November 1, 2007

Application and Desktop Sharing. Omer Boyaci November 1, 2007 Application and Desktop Sharing Omer Boyaci November 1, 2007 Overview Introduction Demo Architecture Challenges Features Conclusion Application Sharing Models Application specific + Efficient - Participants

More information

Downloading Library Audiobooks for. Transfer to the ipod/ipad/iphone

Downloading Library Audiobooks for. Transfer to the ipod/ipad/iphone Downloading Library Audiobooks for Transfer to the ipod/ipad/iphone Overview Downloading Library Audiobooks for transfer to an ipod/ipad/iphone device is divided into six major parts. The first two parts

More information

Android SmartTV initial manual

Android SmartTV initial manual Android SmartTV initial manual This guide contains explicit steps to follow in activating the Android SmartTV and navigate through the android based menu. Table of contents 1. Remote control 2.Switch to

More information

WF121: b/g/n module. Product Presentation

WF121: b/g/n module. Product Presentation WF121: 802.11 b/g/n module Product Presentation Topics Key features Benefits WF121 overview The Wi-Fi software stack Evaluation tools Certifications Use cases Key features WF121: Key features 802.11 b/g/n

More information

HD Day/Night Wi-Fi Camera

HD Day/Night Wi-Fi Camera HD Day/Night Wi-Fi Camera Integrated Micro SD Slot Night Vision Motion Detection 2-Way Audio Highlights Stay Connected and Secure Anywhere, Anytime Access is your trusty companion that provides a complete

More information

Open407I-C & Open207I-C User Manual

Open407I-C & Open207I-C User Manual Open407I-C & Open207I-C User Manual Open407I-C & Open207I-C User Manual Contents Preparation... 3 ADC+DMA... 3 CAN1 TO CAN2-Normal... 4 DAC... 5 DCMI_OV7670... 6 DCMI_OV9655... 7 DS18B20... 8 GPIO_Key_LED...

More information

18.1 Access to Google Talk Web Browser Enter the main interface Change your home page Visit a Web page...

18.1 Access to Google Talk Web Browser Enter the main interface Change your home page Visit a Web page... 1 contents 1 Basic introduction... 4 2 The main function... 4 3 The main menu interface... 5 3.1 Message and status icons... 5 3.2 View the message... 5 4 Battery... 6 4.1 Using the charger... 6 4.2 Please

More information

1.3 CW x720 Pixels. 640x480 Pixels. 720P Wireless 150Mbps IPCAM. High Quality 720P MegaPixel Image

1.3 CW x720 Pixels. 640x480 Pixels. 720P Wireless 150Mbps IPCAM. High Quality 720P MegaPixel Image CW-720 720P Wireless 150Mbps IPCAM 30FPS at 1.3 Mega Mode 30FPS at 720P Mode 150Mbps Wireless-B/G/N Use 10X Times Less Storage with H.264 Video Compression Micro SD Card Slot for Local Storage ios and

More information

CONTENTS CHAPTER I: BEFORE USE I. BEFORE USE

CONTENTS CHAPTER I: BEFORE USE I. BEFORE USE I. BEFORE USE Foreword 1. Features 2. Accessories 3. Product Safety Information 4. Illustrations and Functions II. FAST OPERATION 1. Startup 2. Shutdown 3. Lock 4. Reset 5. Pause 6. Music File Select 7.

More information

SET-UP INSTRUCTIONS. How can the DB91-TX be used as an RTP Sender, sending audio to DB91-RX decoder used as an RTP Receiver

SET-UP INSTRUCTIONS. How can the DB91-TX be used as an RTP Sender, sending audio to DB91-RX decoder used as an RTP Receiver SET-UP INSTRUCTIONS How can the DB91-TX be used as an RTP Sender, sending audio to DB91-RX decoder used as an RTP Receiver Publish Date: 21-Jun-2017 Contents General information... 4 DB91-TX and DB91-RX

More information

VLSI AppNote: VSx053 Simple DSP Board

VLSI AppNote: VSx053 Simple DSP Board : VSx053 Simple DSP Board Description This document describes the VS1053 / VS8053 Simple DPS Board and the VSx053 Simple DSP Host Board. Schematics, layouts and pinouts of both cards are included. The

More information

Model: FMT-9 USER GUIDE

Model: FMT-9 USER GUIDE Bluetooth CAR FM TRANSMITTER With 2.1A DUAL USB CAR CHARGER Model: FMT-9 USER GUIDE Introduction This device, Lets you stream music and calls directly from your Bluetooth device to your car FM stereo system.

More information

Product Tutorial HD MEDIA PLAYER. HD DIGITAL TV TUNER WITH RECORD FUNCTION SRT MPT

Product Tutorial HD MEDIA PLAYER.  HD DIGITAL TV TUNER WITH RECORD FUNCTION SRT MPT HD MEDIA PLAYER HD DIGITAL TV TUNER WITH RECORD FUNCTION SRT MPT Product Tutorial Dual Core, Android Operating system, Full Web Browserˆ Play HD Movies, music and photos on your HD TV, plays virtually

More information

Sonifex Pro Audio Streamers Frequently Asked Questions (FAQ)

Sonifex Pro Audio Streamers Frequently Asked Questions (FAQ) FAQs Sonifex Pro Audio Streamers Frequently Asked Questions (FAQ) This FAQ (frequently asked questions) answers some of the popular questions asked about the Pro Audio Streamers. If you have any specific

More information

User s Manual. HD Multi-format Video Encoder. Model Name: Z3-MVE-02

User s Manual. HD Multi-format Video Encoder. Model Name: Z3-MVE-02 Z 3 Technology User s Manual HD Multi-format Video Encoder Model Name: Z3-MVE-02 Version 1.04.16 July 17, 2012 Before attempting to connect or operate this product, please read these instructions carefully

More information

Quick Start Guide. MediaShair Wireless Media Hub w/sd Card Slot & USB Port Plus Bulit-in Power Station. GWFRSDU PART NO.

Quick Start Guide. MediaShair Wireless Media Hub w/sd Card Slot & USB Port Plus Bulit-in Power Station.  GWFRSDU PART NO. Quick Start Guide MediaShair Wireless Media Hub w/sd Card Slot & USB Port Plus Bulit-in Power Station GWFRSDU PART NO. Q11240 www.iogear.com Package Contents 1 1 x MediaShair Wireless Media Hub 1 x USB

More information

EX-9686U/A-L(A9) Hardware User Manual

EX-9686U/A-L(A9) Hardware User Manual EX-9686U/A-L(A9) Hardware User Manual Release Notes Version Release Date Notes 1.00 November, 2013 Initial Release 2.00 January, 2014 The 2 nd release Disclaimer This documentation is provided for use

More information

The Power of and Ethernet Ryan Erickson and Kurt Furlong, Software Engineers July, 2011

The Power of and Ethernet Ryan Erickson and Kurt Furlong, Software Engineers July, 2011 The Power of 802.15.4 and Ethernet Ryan Erickson and Kurt Furlong, Software Engineers July, 2011 In today s electronic age, the Internet has become the unofficial standard for transferring data around

More information

SoundBridge Helpful Tips. For customers who want to use Roku SoundBridge with the SlimServer music server

SoundBridge Helpful Tips. For customers who want to use Roku SoundBridge with the SlimServer music server SoundBridge Helpful Tips For customers who want to use Roku SoundBridge with the SlimServer music server Revision 1.2 October 25, 2004 1 I. Setting Up Your SlimServer-based Network Choosing Your Software

More information

P100 Wireless Player.

P100 Wireless Player. Simplicity, meet high fidelity. With the NuVo P100 Wireless Player. player portfolio, treating yourself to masteringgrade wireless audio is no longer a luxury too good to be true. Just get the party started

More information

Installing energyxt2.5. Mac. Double-click energyxt2.5 disk image file. Drag the energyxt2.5 folder to your "Applica- tions" folder / your desktop.

Installing energyxt2.5. Mac. Double-click energyxt2.5 disk image file. Drag the energyxt2.5 folder to your Applica- tions folder / your desktop. ENGLISH 2 Getting started Windows Installing energyxt2.5 Mac Linux Double-click the setup file and follow the on- screen instructions. i. i. Double-click energyxt2.5 disk image file. Drag the energyxt2.5

More information

NID- 7006A. Memory Powered by Android TM OS 4.1

NID- 7006A. Memory Powered by Android TM OS 4.1 THE NEW GENERATION IN TECHNOLOGY NID- 7006A Core TM 7 Tablet PC with 8GB Built- In Memory Powered by Android TM OS 4.1 Basic Introduction... 1 Quick Start... 1 Battery management and charging... 1 Boot

More information

SABRE Board for Smart Devices

SABRE Board for Smart Devices Quick Start Guide SABRE Board for Smart Devices Based on the i.mx 6SoloX Applications Processor FREEDOM DEVELOPMENT PLATFORM Quick Start Guide ABOUT THE SABRE BOARD FOR SMART DEVICES BASED ON THE I.MX

More information

Streaming Media System Requirements and Troubleshooting Assistance

Streaming Media System Requirements and Troubleshooting Assistance Test Your System Streaming Media System Requirements and Troubleshooting Assistance Test your system to determine if you can receive streaming media. This may help identify why you are having problems,

More information

Pyle Vintage - Classic Style Turntable Systems Layout & Controls: Precautions for use - Installation Connection

Pyle Vintage - Classic Style Turntable Systems Layout & Controls: Precautions for use - Installation Connection Layout & Controls: 1) Dust cover 2) Dial pointer 3) Left speaker 4) Play/Pause/Stop button 5) Skip down button 6) Source button 7) Record button 8) Power off / Functions selector 9) Volume knob 10) 3.5

More information

ACE PLUS CORP. APCON100 series Operation Manual RS-232 to Ethernet Converter

ACE PLUS CORP. APCON100 series Operation Manual RS-232 to Ethernet Converter APCON100 series Operation Manual RS-232 to Ethernet Converter Page 1 of 24 APCON100 series Operation Manual Index Chapter 1 Specifications 2 Chapter 2 Introduction 3 Chapter 3 Easy Installation 4 Chapter

More information

Table of Contents. Manual Overview

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

More information

INSTRUCTION MANUAL Fidelis Dual Micro Recorder SB-VAR3800

INSTRUCTION MANUAL Fidelis Dual Micro Recorder SB-VAR3800 INSTRUCTION MANUAL Fidelis Dual Micro Recorder SB-VAR3800 Revised: September 27th, 2013 Thank you for purchasing from SafetyBasement.com! We appreciate your business. We made this simple manual to help

More information

WIZ-iRadio User s Manual

WIZ-iRadio User s Manual (Ver. 1.0) 2008 WIZnet Inc. All Rights Reserved. For more information, visit our website at www.wiznet.co.kr Document History Information Revision Date Description V1.0 May 1, 2008 Original Document 2

More information

To access the web page for Cisco Desktop Collaboration Experience, perform these steps.

To access the web page for Cisco Desktop Collaboration Experience, perform these steps. Access Web Page for Cisco Desktop Collaboration, page 1 Enable and Disable Web Page Access, page 2 Device Information, page 3 Network Setup, page 4 Network Statistics, page 9 Device Logs, page 12 Streaming

More information

User Guide. AC1200 Max Wi-Fi Range Extender. Model # RE6500

User Guide. AC1200 Max Wi-Fi Range Extender. Model # RE6500 User Guide AC1200 Max Wi-Fi Range Extender Model # RE6500 Table of Contents Product Overview...3 RE6500... 3 How to Install the Range Extender...6 Special Feature Music Streaming... 11 ios... 11 Android*...

More information

BPI-D1 User Manual. SinoVoip Co.,Limited

BPI-D1 User Manual. SinoVoip Co.,Limited SinoVoip Co.,Limited BPI-D1 User Manual Table of Contents BPI-D1 User Manual Product Introduction...2 Specification... 3 Hardware...4 Power Supply...6 Use Method...7 1. How to record a video... 7 2. How

More information

USER GUIDE DX100 Digital Audio Player by ibasso

USER GUIDE DX100 Digital Audio Player by ibasso USER GUIDE DX100 Digital Audio Player by ibasso This manual is composed of two parts, the first of which will specifically address the features and operation of the ibasso Music Player while the second

More information

Technical Documentation

Technical Documentation Technical Documentation for metratec TCP/IP to UART Converter (TUC) Date: July 2016 Version: 1.3 Technical Documentation metratec TUC Page 1 of 11 Table of Contents 1 General Information / Security Advice...3

More information

Setting your PC for operating from a smartphone, iphone, etc. as a controller (Windows 8.1)

Setting your PC for operating from a smartphone, iphone, etc. as a controller (Windows 8.1) Help Guide Home Audio System MHC-V90DW The following explains how to use this home audio system. Listening to music from an Internet streaming service (music service) Listening to music from an Internet

More information

Using Embedded Tools for I2C, SPI, and USB Debugging for the Renesas RX63N RDK

Using Embedded Tools for I2C, SPI, and USB Debugging for the Renesas RX63N RDK Using Embedded Tools for I2C, SPI, and USB Debugging for the Renesas RX63N RDK Renesas Electronics America Inc. Renesas Technology & Solution Portfolio 2 Agenda Introduction to the Renesas RX63N RDK Introduction

More information

Remote Monitoring. Remote Monitoring Overview

Remote Monitoring. Remote Monitoring Overview Overview, page 1 Access Web Page, page 2 Control Web Page Access, page 3 Device Information Area, page 3 Network Configuration Area, page 4 Ethernet Information Area, page 7 Device Logs Area, page 9 Streaming

More information

Quick Start Guide. VC8600F Encoder/Decoder and VC5300I Decoder

Quick Start Guide. VC8600F Encoder/Decoder and VC5300I Decoder VC8600F Encoder/Decoder and VC5300I Decoder Overview General The VC8600F H.264 Encoder/Decoder is a combination H.264 video encoder/decoder evaluation platform. It enables streaming AV over IP and is controlled

More information

power port make sure the ac adapter is plugged into the correct port Make sure to include at the beginning.

power port make sure the ac adapter is plugged into the correct port Make sure to include  at the beginning. Quickstart Guide If you have a blank SD card, you may insert it into the camera. To set up your camera for use on the network, connect the camera's wired network port to a router. Connect the AC adapter

More information

UGO Wi-Fi Speaker User Manual

UGO Wi-Fi Speaker User Manual UGO Wi-Fi Speaker User Manual Version 1.0 Learn How To Use The UGO Wi-Fi Speaker 1 UGO Wi-Fi Speaker User Manual Version 1.0 Contents 1. User Manual Overview... 3 2. UGO Wi-Fi Speaker Buttons and Ports...

More information

The new maximum security smartphone No Camera - No GPS - No Recorder

The new maximum security smartphone No Camera - No GPS - No Recorder The new maximum security smartphone No Camera - No GPS - No Recorder The new maximum security smartphone DASS H-ONE Smartphone is your smart choice to be protected and connected the whole time. What is

More information

HD Pan/Tilt Wi-Fi Camera NC450

HD Pan/Tilt Wi-Fi Camera NC450 HD Pan/Tilt Wi-Fi Camera NC450 Highlights 720P HD Image Delivers superb image quality in high definition, enhancing visual clarity experience. Pan / Tilt See up to 360 degrees horizontally and 150 degrees

More information

Monitoring the Cisco Unified IP Phone Remotely

Monitoring the Cisco Unified IP Phone Remotely CHAPTER 8 Each Cisco Unified IP Phone has a web page from which you can view a variety of information about the phone, including: Device information Network configuration information Network statistics

More information

Introduction. Streamed music. Control signal. Streamed music

Introduction. Streamed music. Control signal. Streamed music Streamed music Control signal Streamed music Introduction ALD SyncAlong multi-room music streaming solution delivers CD quality music to anywhere in the house without the need for connecting wires. Advanced

More information

ATM-DB Firmware Specification E. Hazen Updated January 4, 2007

ATM-DB Firmware Specification E. Hazen Updated January 4, 2007 ATM-DB Firmware Specification E. Hazen Updated January 4, 2007 This document describes the firmware operation of the Ethernet Daughterboard for the ATM for Super- K (ATM-DB). The daughterboard is controlled

More information

Sounding Better Than Ever: High Quality Audio. Simon Forrest Connected Home Marketing

Sounding Better Than Ever: High Quality Audio. Simon Forrest Connected Home Marketing Sounding Better Than Ever: High Quality Audio Simon Forrest Connected Home Marketing www.imgtec.com A brief look at the numbers Market trends Worldwide audio market 2014 67.9m units shipped 16% increase

More information

The Catalog of Smart Bridge

The Catalog of Smart Bridge The Catalog of Smart Bridge About Smart Bridge Information Established at 2013 to be acquired Smart Bridge Technology. Focus on Linux Embedded system P2P Video relative products. Product Roadmap IP Camera

More information

APPLICATION NOTE # 036

APPLICATION NOTE # 036 1 Initiator: MRN ISD Approval: Customer Service: Date: 1/7/2009 Date: Date: TITLE: Using the Xpert2/9210B on a TCP/IP Network 1. Introduction This application note discusses how to use the Xpert2/9210B

More information

Megapixel IP66. IP66 Waterproof Housing, Cable through bracket and Anti-Fog Front Cover

Megapixel IP66. IP66 Waterproof Housing, Cable through bracket and Anti-Fog Front Cover BU-3026 3-Megapixel 25 meter Wide Angle IR Bullet Type IPCAM IP66 Housing with Cable through Bracket 3-Megapixel 1/2.5" CMOS Sensor Support 25FPS at 2048x1536 or 30FPS at 1080P 802.3af PoE Port 2.6mm CS

More information

VS1011 to VS1053. VS1011 to VS1053 Migration Guide

VS1011 to VS1053. VS1011 to VS1053 Migration Guide VS1011 to VS1053 Migration Guide Description This document describes how to migrate from VS1011 to VS1053. It lists hardware and software differencies and other considerations. This document applies to

More information

6 Controlling the Technomad Encoder

6 Controlling the Technomad Encoder T 6 Controlling the Technomad Encoder 6.1 User control interface The Techomad Encoder has a local web server built in. You can control the Technomad Encdoder from anywhere on your network using a standard

More information

4K DVB-T2 / DVB-S2 Android Streaming Box with Fly Mouse

4K DVB-T2 / DVB-S2 Android Streaming Box with Fly Mouse General information Connect this DVB-T2/S2 4K Android streaming box to your TV and stream movies, update your Facebook, show pictures or plan a gaming night with friends all on your TV screen. This super

More information

GWBMA0x Bluetooth Audio module

GWBMA0x Bluetooth Audio module GWBMA0x Bluetooth Audio module Data sheet version 0.9 draft GWBMA0X DATASHEET 0.9 GIGAWIT 1 Introduction GWBMA1X is a high performance Bluetooth audio module, It provides various type of wireless audio

More information

VidPort Technical Reference Guide TD-VID-HD-REF-C

VidPort Technical Reference Guide TD-VID-HD-REF-C Page 1 of 29 VidPort Technical Reference Guide TD-VID-HD-REF-C Document Name Version Issue date TD-VID-HD-REF-C C Name Date Prepared by Tong Lin Reviewed by Approved by Page 2 of 29 Page 3 of 29 This page

More information

SAMSUNG POWERED WIFI PORTABLE SPEAKER

SAMSUNG POWERED WIFI PORTABLE SPEAKER SAMSUNG POWERED WIFI PORTABLE SPEAKER MODEL:CAW-07015 PLEASE READ THIS INSTRUCTION MANUAL CAREFULLY BEFORE OPERATION AND KEEP IT FOR FUTURE REFERENCE IMPORTANT SAFETY INSTRUCTIONS 3 LOCATION OF CONTROLS

More information

i.mx 6UltraLite Evaluation Kit Quick Start Guide s datasheet has been downloaded from at this pag

i.mx 6UltraLite Evaluation Kit Quick Start Guide s datasheet has been downloaded from   at this pag i.mx 6UltraLite Evaluation Kit Quick Start Guide s datasheet has been downloaded from http://www.digchip.com at this pag Quick Start Guide About the i.mx 6UltraLite Evaluation Kit The i.mx 6 UltraLite

More information

Introduction to SITL. Objective

Introduction to SITL. Objective Introduction to SITL Objective This tutorial provides a quick introduction to System-in-the-Loop (SITL) functionality, which allows physical hardware and a simulation to interact as a unified system. It

More information

Protocols. Application Layer FTP, HTTP, SSH, IMAP. Transport Layer TCP, UDP. Internet Layer IP. Link Layer Ethernet, WiFi

Protocols. Application Layer FTP, HTTP, SSH, IMAP. Transport Layer TCP, UDP. Internet Layer IP. Link Layer Ethernet, WiFi HTTP Protocols Application Layer FTP, HTTP, SSH, IMAP Transport Layer TCP, UDP Internet Layer IP Link Layer Ethernet, WiFi TCP/IP Transmission Control Protocol. Connection-Oriented Reliable source address

More information

1 Installation of the WTI software and drivers

1 Installation of the WTI software and drivers RigExpert WTI-1 Quick Start Guide 1 Installation of the WTI software and drivers Start WTI Setup from the installation CD and follow the on-screen instructions. You may also download the latest version

More information

Quicktime Player Error Codec For Avi Per

Quicktime Player Error Codec For Avi Per Quicktime Player Error Codec For Avi Per Oct 2, 2014. a movie and its.avi and i am getting an error post "converting" where it says. QuickTime player can't open Try another video player, such as VLC. Quicktime

More information

BU x 486 Pixels x 1536 Pixels. 3-MegaPixel Outdoor 25 meter IR IPCAM. 3.0 MegaPixel Video Quality, 9X Bigger than VGA Resolution

BU x 486 Pixels x 1536 Pixels. 3-MegaPixel Outdoor 25 meter IR IPCAM. 3.0 MegaPixel Video Quality, 9X Bigger than VGA Resolution BU-3025 3-MegaPixel Outdoor 25 meter IR IPCAM 3 MegaPixel CMOS H.264 IP Camera Compatible with ONVIF Standard 20FPS at 3 MegaPixel and 30FPS at 1080p 802.3af Power over Ethernet Port Mechanical IR-Cut

More information

USING THE XPERT2 / 9210B ON A TCP/IP NETWORK

USING THE XPERT2 / 9210B ON A TCP/IP NETWORK 1 USING THE XPERT2 / 9210B ON A TCP/IP NETWORK Prepared by: R&D January, 2009 Updated September 26, 2013 Sutron Corporation 22400 Davis Drive Sterling, Virginia 20164 TEL: (703) 406-2800 FAX: (703) 406-2801

More information

The Wowza Streaming server allows to distribute incoming audio and video data in different data formats to multiple clients.

The Wowza Streaming server allows to distribute incoming audio and video data in different data formats to multiple clients. Barix Wowza guide The Wowza Streaming server allows to distribute incoming audio and video data in different data formats to multiple clients. This guide shows how to use an audio stream from a Barix encoder

More information

SpinetiX Technical Documentation

SpinetiX Technical Documentation SpinetiX Technical Documentation Streaming video v2.1 Revision: 2010, March 3 2009 SpinetiX S.A. All rights reserved. DISCLAIMER THE SPECIFICATIONS AND INFORMATION REGARDING THE PRODUCTS IN THIS MANUAL

More information