Raspberry Pi Bat Call Recorder

Size: px
Start display at page:

Download "Raspberry Pi Bat Call Recorder"

Transcription

1 Raspberry Pi Bat Call Recorder This project uses a Raspberry Pi and Wolfson Audio Card, with a simple LED and Push Button wired to the GPIO. A home-made ultrasound microphone is plugged into the headphone socket of the Wolfson card. Using a Bat Scanner, when bat calls are detected recording is started by pressing the button. The LED indicates that recording is active. Sound is captured at a sample rate of Hz until the button is pushed again. Holding the button down when stopping the recording causes the Pi to shut down safely. Attaching the push-button to the GPIO The Wolfson Audio Card appears to use all the GPIO pins, but two GPIO pins (#8 and #10) are available on the Wolfson card. Using these, plus the 3.3V pin and Ground as shown, it is possible to connect the push-button and LED. 3.3V 5V Ground Pin 10 Pin 8 Note that these connectors are 2mm pitch. Do not connect anything to the 5V pin! Pin 10 will be used for the push-button, and pin 8 for the LED. Wiring diagrams for each of these are shown below. Connecting things to the GPIO is done entirely at your own risk! Please check that you are happy with my wiring diagrams and check your wiring before powering on your Pi. For more information about connecting things to the Raspberry PI GPIO, visit Push Button LED 3.3V PIN 8 (GPIO 14) PUSH BUTTON PIN 10 (GPIO 15) LED GND 10kΩ 1kΩ GND 330Ω

2 Setting up GPIO Pins To set the GPIO pins on the Wolfson Audio Card for Input/Output on start-up of your Pi, add the following to /etc/rc.local, before exit 0: ($ sudo nano /etc/rc.local) # setup GPIO # enabling pin 15 as input: # exports GPIO pin 15 for use, sets the direction to "in" echo "15" >/sys/class/gpio/export echo "in" >/sys/class/gpio/gpio15/direction ### # set to active low if required (invert the value) # echo 1 >/sys/class/gpio/gpio15/active_low # input value can be checked by command below # cat /sys/class/gpio/gpio15/value ### # enabling pin 14 as output: # export GPIO pin 14 for use, sets the direction to output echo "14" >/sys/class/gpio/export echo "out" >/sys/class/gpio/gpio14/direction Making the Microphone To make a microphone capable of recording ultrasound, you can use an electret type microphone. Choose one with a good frequency response. The data sheet for the one I use specifies a range of 20Hz to 20kHz. For bat recording, a range of up to 100kHz or more may be required. The electret microphone should be able to record up to this frequency, but the sensitivity will be reduced. I haven t found this to be a problem (up to 96kHz - more on this later). A four pole 3.5mm Jack plug is also required ( Solder screened wire (e.g. Maplin XR20W) to the jack plug and electret as shown below. Tip: after tinning the wires, bend the ends 90 before soldering on to the back of the electrec microphone. After soldering, use heatshrink over the electret and wire to finish the microphone. MIC GROUND (SHIELD) Python script The python script for recording using the push button is on the following pages. You may need to copy the following two Wolfson files into /home/pi, or modify the code to point to the files: Record_from_Headset.sh Reset_paths.sh Save the folowing script as record.py in /home/pi.

3 # record.py # python code to record sound at press of button and light LED # push button again to stop # keep button held down when stopping recording to safely shut down the Pi # # # import RPi.GPIO as GPIO GPIO.setmode(GPIO.BCM) import time import os import subprocess import datetime import psutil #used to kill arecord #to install psutil: #sudo apt-get install python-dev #sudo apt-get install python-psutil procname = 'arecord' print "Resetting..." #reset playback paths for wolfson card subprocess.call ("/home/pi/reset_paths.sh", shell=true) # use pin 8 for LED # use pin 10 for button GPIO.setwarnings(False) GPIO.setup(14, GPIO.OUT) #8 GPIO.setup(15, GPIO.IN) #10 shut_down = 0 LED = 0 killed = 0 # check to see if there is a USB stick partitionsfile = open("/proc/partitions") lines = partitionsfile.readlines()[2:]#skips the header lines for line in lines: words = [x.strip() for x in line.split()] minornumber = int(words[1]) devicename = words[3] if minornumber % 16 == 0: path = "/sys/class/block/" + devicename if os.path.islink(path): if os.path.realpath(path).find("/usb") > 0: print "/dev/%s" % devicename USB = 1 # usb fitted, so can write to /media/usbstick, otherwise write to /home/pi filepath = " /media/usbstick" filepath = " /home/pi" subprocess.call ("/home/pi/record_from_headset.sh", shell=true) #set up to record from headphone mic print filepath try: while True: if GPIO.input(15) and recording == 0 and shut_down == 0: GPIO.output(14, True) #turn on LED to show recording recording = 1 killed = 0 timestamp = datetime.datetime.now().strftime('%y%m%d%h%m%s')

4 process = subprocess.popen ("arecord -Dhw:0 -r c 2 -f S32_LE -d0 " + filepath + "/record_" + timestamp + ".wav", shell=true) #channels = 2 for stereo print "PID " + str(process.pid) print "Recording started" # not recording # flash LED to show system is active if LED == 0 and recording == 0 and shut_down == 0: time.sleep(0.25) LED = 1 if LED ==1 and recording == 0 and shut_down ==0: GPIO.output(14, True) time.sleep(0.25) LED = 0 if GPIO.input(15) and recording == 1 and shut_down ==0: #button held during recording stops recording print "Recording stopped" for proc in psutil.process_iter(): if proc.name == procname: proc.kill() killed = 1 if GPIO.input(15) and killed == 1 and recording ==0: print "Shutting down..." shut_down = 1 subprocess.call(['shutdown -h now "System halted by GPIO action" &'], shell=true) time.sleep(0.1) except KeyboardInterrupt: print " Quit" # Reset GPIO settings GPIO.cleanup() Mounting a USB stick Use the following guide to mount a USB stick to your Pi, if that is where you want to record wav files to: The Python script above checks whether a USB stick is mounted at /media/usbstick and will use that. Otherwise, wav files will be saved in /home/pi. Using the Pi Bat Recorder Check your wiring, then check it again. Make sure that the microphone jack is fully pushed into the socket on the Wolfson Audio Card. Power on your Pi. The LED will probably glow/flicker as the Pi is booting. $ sudo python /home/pi/record.py will run the record script. The LED should be flashing slowly. Press the push button to start recording. The LED should be on continuously. Push the button again to stop recording.

5 Analysis of wav files Using Audacity, open a recorded wav file. Choose Tracks Stereo Track to Mono to convert the track to mono. The wav files are not recorded in mono due to a current limitation with the Wolfson Audio Card when recording at Hz. This rate is used as it allows analysis of sounds up to half this frequency Hz - which is what we need for most bats :-) Click the small arrow here, and select Spectrogram. You should be able to see a nice spectrogram of your bat calls. You may need to zoom in a bit. Spectrogram settings can be changed using Edit Preferences. What next? To get your script to run when the Pi boots, add sudo python /home/pi/record.py to /etc/rc.local, just before exit 0. August 2014

Playing sounds and using buttons with Raspberry Pi

Playing sounds and using buttons with Raspberry Pi Playing sounds and using buttons with Raspberry Pi Created by Mikey Sklar Last updated on 2015-04-15 01:30:08 PM EDT Guide Contents Guide Contents Overview Install Audio Install Python Module RPi.GPIO

More information

The basic set up for your K2 to run PSK31 By Glenn Maclean WA7SPY

The basic set up for your K2 to run PSK31 By Glenn Maclean WA7SPY The basic set up for your K2 to run PSK31 By Glenn Maclean WA7SPY I am by no means an expert on PSK31. This article is intended to help someone get on PSK31 with a K2. These are the things I did to get

More information

Wolfson Audio Card. User Documentation. Contents

Wolfson Audio Card. User Documentation. Contents Wolfson Audio Card User Documentation Contents 1. Introduction to Wolfson Audio Card for Raspberry Pi 2. Features 3. How to install to Raspberry Pi 4. Installing software to run on Raspberry Pi 5. Getting

More information

Drive a 16x2 LCD with the Raspberry Pi

Drive a 16x2 LCD with the Raspberry Pi Drive a 16x2 LCD with the Raspberry Pi Created by Mikey Sklar Last updated on 2015-04-17 05:50:06 PM EDT Guide Contents Guide Contents Overview To Follow This Tutorial You Will Need Wiring the Cobbler

More information

DR-1 Portable Digital Recorder OWNER'S MANUAL

DR-1 Portable Digital Recorder OWNER'S MANUAL » D01019610A DR-1 Portable Digital Recorder OWNER'S MANUAL Contents 1 Introduction... 3 Main functions... 3 Supplied accessories... 3 Recycling the rechargeable battery... 3 Notes about this manual...

More information

Audacity is a free, totally free, audio editing program. Get it here: http://audacity.sourceforge.net/

Audacity is a free, totally free, audio editing program. Get it here: http://audacity.sourceforge.net/ Super-Fast Guide to Audio Editing Audacity is a free, totally free, audio editing program. Get it here: http://audacity.sourceforge.net/ Installing Audacity 1. Download Audacity to your own computer. 2.

More information

Setting up IO Python Library on BeagleBone Black

Setting up IO Python Library on BeagleBone Black Setting up IO Python Library on BeagleBone Black Created by Justin Cooper Last updated on 2015-01-16 11:15:19 AM EST Guide Contents Guide Contents Overview Installation on Angstrom Commands to setup and

More information

Recording Audio to a Flash Drive

Recording Audio to a Flash Drive Recording Audio to a Flash Drive 1. Turn on the main power supply. This is the Middle Atlantic power supply it is located near the bottom of the equipment rack. 2. Power on the Denon Recorder. 3. Watch

More information

D01167420A. TASCAM PCM Recorder. iphone/ipad/ipod touch Application USER'S GUIDE

D01167420A. TASCAM PCM Recorder. iphone/ipad/ipod touch Application USER'S GUIDE D01167420A TASCAM PCM Recorder iphone/ipad/ipod touch Application USER'S GUIDE Contents Introduction...3 Trademarks... 3 What's in the Main Window...4 What's in the Settings Window...6 The Sharing Window...7

More information

Smarthome SELECT Bluetooth Wireless Stereo Audio Receiver and Amplifier INTRODUCTION

Smarthome SELECT Bluetooth Wireless Stereo Audio Receiver and Amplifier INTRODUCTION Smarthome SELECT Bluetooth Wireless Stereo Audio Receiver and Amplifier INTRODUCTION The Smarthome SELECT Bluetooth Wireless Stereo Audio Receiver and Amplifier is a multi-functional compact device. It

More information

User Manual. Please read this manual carefully before using the Phoenix Octopus

User Manual. Please read this manual carefully before using the Phoenix Octopus User Manual Please read this manual carefully before using the Phoenix Octopus For additional help and updates, refer to our website To contact Phoenix Audio for support, please send a detailed e-mail

More information

PiFace Control & Display

PiFace Control & Display PiFace Control & Display A Plug and Play Device to control Raspberry Pi Exclusively From Quick Start Guide Version 1.0 Dated: 30 th Oct 2013 Table Of Contents Page No 1. Overview 2 2. Fitting the PiFace

More information

PSP3. Stereo M/S preamplifier. User manual

PSP3. Stereo M/S preamplifier. User manual PSP3 Stereo M/S preamplifier User manual AETA AUDIO 361, avenue du Général de Gaulle 92140 Clamart FRANCE Tél. +33 (0)1 41361212 Fax +33 (0)1 41361213 Telex 631178 Web : http://www.aetausa.com 55 000 020

More information

QUALITY AV PRODUCTS INMATE/INMATE USB PROFESSIONAL 19" MIXER. User Guide and Reference Manual

QUALITY AV PRODUCTS INMATE/INMATE USB PROFESSIONAL 19 MIXER. User Guide and Reference Manual INMATE/INMATE USB PROFESSIONAL " MIXER User Guide and Reference Manual INTRODUCTION Welcome to the NEWHANK INMATE and INMATE USB professional " mixers series user manual. INMATE and INMATE USB both offer

More information

MANUAL (p. 2) USB Turntable HAV-TT20USB

MANUAL (p. 2) USB Turntable HAV-TT20USB MANUAL (p. 2) USB Turntable HAV-TT20USB ENGLISH How to Replace the Turntable Stylus (Needle) Removing the old stylus 1. Place a screwdriver at the tip of the stylus and push down in direction A. 2. Remove

More information

PERSONAL MONITOR MIXER/HEADPHONE AMP. S Class Signal Processors

PERSONAL MONITOR MIXER/HEADPHONE AMP. S Class Signal Processors PERSONAL MONITOR MIXER/HEADPHONE AMP S Class Signal Processors Table Of Contents Features 3 Front and Rear Panel Layout 4 Operating the S monitor 5-7 Specifications 8 Wiring Guide 8 Copyright 2003, Samson

More information

Audio-Technica AT-LP60-USB, AT-LP120-USB, AT-LP240-USB & AT-LP1240-USB Turntables. Software Guide

Audio-Technica AT-LP60-USB, AT-LP120-USB, AT-LP240-USB & AT-LP1240-USB Turntables. Software Guide Audio-Technica AT-LP60-USB, AT-LP120-USB, AT-LP240-USB & AT-LP1240-USB Turntables Software Guide Audio-Technica USB Turntables Contents A note about software... 2 System requirements... 2 Installing Audacity

More information

User Guide FFFA001106. www.focusrite.com

User Guide FFFA001106. www.focusrite.com User Guide FFFA001106 www.focusrite.com TABLE OF CONTENTS OVERVIEW.... 3 Introduction...3 Features.................................................................... 3 Box Contents...3 System Requirements....4

More information

User Manual. For additional help please send a detailed e-mail to Support@phnxaudio.com. - 1 Phoenix Audio Technologies www.phnxaudio.

User Manual. For additional help please send a detailed e-mail to Support@phnxaudio.com. - 1 Phoenix Audio Technologies www.phnxaudio. User Manual Please read the instructions in this manual before using the Duet Please refer to our website www.phnxaudio.com for more information, specifically to our Q&A section in our Support page. For

More information

Evo Laser Firmware Developer s Manual

Evo Laser Firmware Developer s Manual Evo Laser Firmware Developer s Manual Table of Content Chapter 1 Introduction Chapter 2 Hardware Overview and Subsystems 2.1 Overview 2.2 Evo Laser Hardware Core System 2.3 Evo Laser Smartport TM Chapter

More information

D01231720A DR-05. Linear PCM Recorder REFERENCE MANUAL

D01231720A DR-05. Linear PCM Recorder REFERENCE MANUAL D01231720A DR-05 Linear PCM Recorder REFERENCE MANUAL Table of Contents 1 Introduction...6 Features... 6 Conventions used in this manual... 8 2 Names and Functions of Parts...9 Top panel... 9 Front panel...

More information

Audacity. For use with MFL Speaking Tests. User Guide (Microsoft Windows version)

Audacity. For use with MFL Speaking Tests. User Guide (Microsoft Windows version) Audacity For use with MFL Speaking Tests User Guide (Microsoft Windows version) Table of Contents Introduction... 3 1 Installation... 3 1.1 Installing Audacity... 3 1.2 Installing Lame MP3 Encoder... 6

More information

AUTOMATIC CALL RECORDER JAMECO PART NO. 2163735

AUTOMATIC CALL RECORDER JAMECO PART NO. 2163735 AUTOMATIC CALL RECORDER JAMECO PART NO. 2163735 Experience Level: Intermediate Time Required: 1-2 Hours This project automatically records phone calls. The program, along with the adapter records each

More information

PS 29M DUAL CHANNEL BELTPACK IN METAL CASE

PS 29M DUAL CHANNEL BELTPACK IN METAL CASE PS 29M DUAL CHANNEL BELTPACK IN METAL CASE USER MANUAL October 2013 This product is designed and manufactured by: ASL Intercom BV Zonnebaan 42 3542 EG Utrecht The Netherlands Phone: +31 (0)30 2411901 Fax:

More information

RN-52 Bluetooth Hookup Guide

RN-52 Bluetooth Hookup Guide Page 1 of 14 RN-52 Bluetooth Hookup Guide CONTRIBUTORS: JOELEB Overview The RN-52 is a sleek Bluetooth audio module from Roving Networks. It allows you to send stereo audio over a wireless Bluetooth connection.

More information

AIRMAX. User Manual Version: 1.0.0.0

AIRMAX. User Manual Version: 1.0.0.0 AIRMAX User Manual Version: 1.0.0.0 D&R Electronica Weesp BV Rijnkade 15B 1382GS Weesp The Netherlands Phone: +31 (0)294-418014 Fax: +31 (0)294-416987 Website: http://www.d-r.nl E-mail: info@d-r.nl AirMax

More information

Innkeeper PBX. Desktop Digital Hybrid. User Guide. JK Audio

Innkeeper PBX. Desktop Digital Hybrid. User Guide. JK Audio Innkeeper PBX Desktop Digital Hybrid User Guide JK Audio Introduction Innkeeper PBX will allow you to send and receive audio through your multi-line PBX, ISDN or analog telephone. While this may seem like

More information

Basics. Mbox 2. Version 7.0

Basics. Mbox 2. Version 7.0 Basics Mbox 2 Version 7.0 Copyright 2005 Digidesign, a division of Avid Technology, Inc. All rights reserved. This guide may not be duplicated in whole or in part without the express written consent of

More information

7/Basic Input and Output

7/Basic Input and Output 7/Basic Input and Output While the Raspberry Pi is, in essence, a very inexpensive Linux computer, there are a few things that distinguish it from laptop and desktop machines that we usually use for writing

More information

PART 1. Using USB Mixer with a Computer

PART 1. Using USB Mixer with a Computer PART 1. Using USB Mixer with a Computer Universal Serial Bus Mixers The USB mixer is equipped with either one or two USB ports that allow you to play and record audio directly from your computer! Just

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

COBRA. Audio Box Detailed User Guide

COBRA. Audio Box Detailed User Guide COBRA Audio Box Detailed User Guide 1 What is the Audio Box? The COBRA Audio Box is a wireless MP3 player that allows you to play music in sync with your fireworks. You connect your audio box to the sound

More information

TG24 / 48 LIGHTING CONTROLLER

TG24 / 48 LIGHTING CONTROLLER TG24 / 48 LIGHTING CONTROLLER USER MANUAL ( Version: 2.0 ) Net.DO LIGHTING CONTROL EQUIPMENT CO.,LTD Contents 1 Summary... 2 1.1 Function... 2 1.2 Specification parameter... 3 2 Installation... 3 2.1 Safety

More information

5inch HDMI LCD User Manual

5inch HDMI LCD User Manual 5inch HDMI LCD User Manual Features 800 480 high resolution Directly-pluggable into any revision of Raspberry Pi (only except the first generation Pi model B which requires an HDMI cable) Driver is provided

More information

ECP240-32 & ECP240-32EX

ECP240-32 & ECP240-32EX ECP240-32 & ECP240-32EX Hardware Manual 11Fl., 684-2, Deungchon 3-Dong, Gangseo-Gu, Seoul, Korea TEL: +82 2 2605 1486 FAX: +82 2 2605 1489 http://www.udptech.co.kr Contents 1. PRODUCT OVERVIEW...1 1.1

More information

Cubase LE 5. Installing Cubase LE 5. Trademarks. Quick Start Guide

Cubase LE 5. Installing Cubase LE 5. Trademarks. Quick Start Guide Cubase LE 5 Quick Start Guide This chapter explains basic operations for using the unit with Cubase LE 5. This explanation is not intended to replace the user s manual for Cubase LE 5. Also, since Cubase

More information

Adafruit's Raspberry Pi Lesson 5. Using a Console Cable

Adafruit's Raspberry Pi Lesson 5. Using a Console Cable Adafruit's Raspberry Pi Lesson 5. Using a Console Cable Created by Simon Monk Last updated on 2014-09-15 12:00:13 PM EDT Guide Contents Guide Contents Overview You Will Need Part Software Installation

More information

Adding Audio to a Presenter File

Adding Audio to a Presenter File Adding Audio to a Presenter File Presenter lets you record your own audio files or impor t existing files. Rec orded files are saved in mp3 format. Imported files can be in WAV or mp3 format. Stereo files

More information

Universal Host. Desktop Digital Hybrid. User Guide. JK Audio

Universal Host. Desktop Digital Hybrid. User Guide. JK Audio Universal Host Desktop Digital Hybrid User Guide JK Audio Introduction Universal Host will allow you to send and receive audio through your multi-line PBX, ISDN, VoIP or analog telephone. While this may

More information

MixMeister EZ Converter Setup & Troubleshooting Contents:

MixMeister EZ Converter Setup & Troubleshooting Contents: MixMeister EZ Converter Setup & Troubleshooting Contents: Windows Vista and Windows 7 Setup Instructions... 2 Windows XP Setup Instructions... 4 Macintosh OSX - Setup Instructions... 6 Troubleshooting...

More information

User Manual CABLE TESTER CT100. Professional 6-in-1 Cable Tester

User Manual CABLE TESTER CT100. Professional 6-in-1 Cable Tester User Manual CABLE TESTER CT100 Professional 6-in-1 Cable Tester 2 CABLE TESTER CT100 User Manual 1. Introduction Congratulations! With the CT100, you have purchased an indispensable tool that enables you

More information

MANUAL PC1000R INFO@APART-AUDIO.COM

MANUAL PC1000R INFO@APART-AUDIO.COM MANUAL PC1000R INFO@APART-AUDIO.COM Features The APart PC1000R is a professional multisource CD/USB/SD card music player, equipped with balanced and unbalanced analog outputs, coaxial and optical digital

More information

Mbox Basics Guide. Version 6.7 for LE Systems on Windows XP or Mac OS X. Digidesign

Mbox Basics Guide. Version 6.7 for LE Systems on Windows XP or Mac OS X. Digidesign Mbox Basics Guide Version 6.7 for LE Systems on Windows XP or Mac OS X Digidesign 2001 Junipero Serra Boulevard Daly City, CA 94014-3886 USA tel: 650 731 6300 fax: 650 731 6399 Technical Support (USA)

More information

UPS PIco. to be used with. Raspberry Pi B+, A+, B, and A. HAT Compliant. Raspberry Pi is a trademark of the Raspberry Pi Foundation

UPS PIco. to be used with. Raspberry Pi B+, A+, B, and A. HAT Compliant. Raspberry Pi is a trademark of the Raspberry Pi Foundation UPS PIco Uninterruptible Power Supply with Peripherals and I 2 C control Interface to be used with Raspberry Pi B+, A+, B, and A HAT Compliant Raspberry Pi is a trademark of the Raspberry Pi Foundation

More information

CPSC 226 Lab Nine Fall 2015

CPSC 226 Lab Nine Fall 2015 CPSC 226 Lab Nine Fall 2015 Directions. Our overall lab goal is to learn how to use BBB/Debian as a typical Linux/ARM embedded environment, program in a traditional Linux C programming environment, and

More information

CONTENTS. Zulu User Guide 3

CONTENTS. Zulu User Guide 3 Copyright Lightspeed Aviation, Inc., 2008. All rights reserved. Lightspeed Aviation is a trademark and Zulu and FRC are registered trademarks of Lightspeed Aviation, Inc. Bluetooth is a registered trademark

More information

AUDIO INTERFACE MANUAL

AUDIO INTERFACE MANUAL AUDIO INTERFACE MANUAL ZOOM Corporation Reproduction of this manual, in whole or in part, by any means, is prohibited. Contents Contents 2 Audio interface and control surface 4 Cubase LE Installation overview

More information

1 All safety instructions, warnings and operating instructions must be read first.

1 All safety instructions, warnings and operating instructions must be read first. ONYX USER MANUAL 2 Dateq ONYX Manual Safety instructions EN Safety instructions 1 All safety instructions, warnings and operating instructions must be read first. 2 All warnings on the equipment must be

More information

The audio input connection on your computer

The audio input connection on your computer This page helps you to connect your audio equipment to your PC so you can start using the xxxxxxx Sound Recorder and Editor and get your recordings to CD or MP3. You can use our software to digitize music

More information

Ultimate USB & XLR Microphone for Professional Recording

Ultimate USB & XLR Microphone for Professional Recording eti pro Ultimate USB & XLR Microphone for Professional Recording 3 desktop or studio, the possibilities are endless. Congratulations on your purchase of Yeti Pro, the first microphone to combine the exceptional

More information

Welcome to the tutorial for the MPLAB Starter Kit for dspic DSCs

Welcome to the tutorial for the MPLAB Starter Kit for dspic DSCs Welcome to the tutorial for the MPLAB Starter Kit for dspic DSCs Welcome to this tutorial on Microchip s MPLAB Starter Kit for dspic Digital Signal Controllers, or DSCs. The starter kit is an all-in-one

More information

EMIC-XM - USB Audio Converter With emic Function User Manual

EMIC-XM - USB Audio Converter With emic Function User Manual EMIC-XM - USB Audio Converter With emic Function User Manual Table of Content 1. Features...2 2. Technical specification...2 3. Quick installation...3 3.1 Hardware installation...3 3.2 Software installation...3

More information

Recording and Editing Audio with Audacity

Recording and Editing Audio with Audacity 1 Recording and Editing Audio with Audacity http://audacity.sourceforge.net/ Audacity is free, open source software for recording and editing sounds. It is available for Mac OS X, Microsoft Windows, Linux,

More information

Beginner s Guide to the PI MATRIX. by Bruce E. Hall, W8BH 1) INTRODUCTION

Beginner s Guide to the PI MATRIX. by Bruce E. Hall, W8BH 1) INTRODUCTION Beginner s Guide to the PI MATRIX - Part 1- by Bruce E. Hall, W8BH 1) INTRODUCTION The Pi Matrix is a fantastic tool for learning GPIO programming on the raspberry pi. Sure, you could hook up a few LEDs

More information

innkeeper PBX Desktop Digital Hybrid User Guide JK Audio

innkeeper PBX Desktop Digital Hybrid User Guide JK Audio innkeeper PBX Desktop Digital Hybrid User Guide JK Audio Introduction Innkeeper PBX will allow you to send and receive audio through your multi-line PBX, ISDN or analog telephone. While this may seem like

More information

innkeeper PBX Desktop Digital Hybrid User Guide JK Audio Warranty

innkeeper PBX Desktop Digital Hybrid User Guide JK Audio Warranty Warranty Innkeeper PBX is covered by a 2-year warranty to be free from defective workmanship and materials. In the event that the innkeeper PBX needs repair, you must call us to get an authorization, and

More information

MXL 990 Virtual Preamp Installation

MXL 990 Virtual Preamp Installation MXL 990 Virtual Preamp Installation The MXL 990 USB will operate without MXL s Virtual Preamp software using the standard drivers included in your computer's operating system. However, the MXL 990 USB

More information

miditech Audiolink II

miditech Audiolink II miditech Audiolink II "Class Compliant" USB Audio Interface (WinXP/Vista/Win7/Mac OSX no drivers necessary) 16 Bit/ 48 khz resolution line stereo interface XLR Mic preamp with 48 V Phantom Power and gain

More information

Chord Limited. Mojo Dac Headphone Amplifier OPERATING INSTRUCTIONS

Chord Limited. Mojo Dac Headphone Amplifier OPERATING INSTRUCTIONS Chord Limited Mojo Dac Headphone Amplifier OPERATING INSTRUCTIONS -!1 - Cleaning and care instructions: Mojo requires no special care other than common sense. Spray window cleaner (clear type) may be used

More information

Flight Controller. Mini Fun Fly

Flight Controller. Mini Fun Fly Flight Controller Mini Fun Fly Create by AbuseMarK 0 Mini FunFly Flight Controller Naze ( Introduction 6x6mm. 6 grams (no headers, 8 grams with). 000 degrees/second -axis MEMS gyro. auto-level capable

More information

Raspberry Pi Adding a Real Time Clock (RTC)

Raspberry Pi Adding a Real Time Clock (RTC) Raspberry Pi Adding a Real Time Clock (RTC) Level of difficulty: Beginner Hardware: Raspberry Pi Model B, RTC Module, wires, optional connectors Tools required: Wire cutters, soldering iron Project cost:

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. For more detailed information, please visit our website at http://www.gigabyte.com.

More information

MP-1010 Capture Device USB

MP-1010 Capture Device USB MP-1010 Capture Device USB USER MANUAL INTRODUCTION All audio connections are cinch. Use good quality cinch-cinch cables to prevent bad audio quality. After connecting the USB audio converter to the other

More information

Marantz PMD660 Digital Recorder Guide

Marantz PMD660 Digital Recorder Guide Marantz PMD660 Digital Recorder Guide August 2005 Set Up Inserting a Compact Flash Card The PMD660 records onto CF or Compact Flash Cards. To insert a CF card: 1. Open the CF Card Door on the front side

More information

QUICK SETUP GUIDE SETUP FOR ICONNEX SOUNDCARD AND AUDACITY RECORDING SOFTWARE

QUICK SETUP GUIDE SETUP FOR ICONNEX SOUNDCARD AND AUDACITY RECORDING SOFTWARE QUICK SETUP GUIDE SETUP FOR ICONNEX SOUNDCARD AND AUDACITY RECORDING SOFTWARE SETUP GUIDE Congratulations on your purchase of the ikey Audio iconnex soundcard. This guide will help you setup the iconnex

More information

Quick Start Guide. The Raspberry Pi Single Board Computer. Source: Raspberry Pi & Wiki

Quick Start Guide. The Raspberry Pi Single Board Computer. Source: Raspberry Pi & Wiki Quick Start Guide The Raspberry Pi Single Board Computer Source: Raspberry Pi & Wiki Chapter 1: RPi Hardware Basic Setup Typical Hardware You Will Need While the RPi can be used without any additional

More information

USER GUIDE ENGLISH ( 3 6 )

USER GUIDE ENGLISH ( 3 6 ) USER GUIDE ENGLISH ( 3 6 ) GUÍA DEL USUARIO ESPAÑOL ( 7 10 ) GUIDE D'UTILISATION FRANÇAIS ( 11 14 ) GUIDA PER L'USO ITALIANO ( 15 18 ) BENUTZERHANDBUCH DEUTSCH ( 19 22 ) USER GUIDE (ENGLISH) Box Contents

More information

Pro Audio Conferencing Kit- Echo Canceling Box with Professional Tabletop Microphone. Quick Start Guide

Pro Audio Conferencing Kit- Echo Canceling Box with Professional Tabletop Microphone. Quick Start Guide Pro Audio Conferencing Kit- Echo Canceling Box with Professional Tabletop Microphone Quick Start Guide OVERVIEW 6ft USB Cable 6ft 3.5mm Audio Cable MT107 Stand MT107 Pro Audio MXL Microphone The Conferencing

More information

EV-1000 Series DVR. Quick Operation Guide. Version 1.0.0

EV-1000 Series DVR. Quick Operation Guide. Version 1.0.0 EV-1000 Series DVR Quick Operation Guide Version 1.0.0 Thank you for purchasing our product. If there is any question or request, please do not hesitate to contact dealer. This manual is applicable to

More information

P420-M TM USB speakerphone

P420-M TM USB speakerphone P420-M TM USB speakerphone User guide Welcome Congratulations on purchasing your new Plantronics product. This guide contains instructions for setting up and using your Plantronics P420-M USB speakerphone.

More information

AUDIO INTERFACE MANUAL

AUDIO INTERFACE MANUAL AUDIO INTERFACE MANUAL ZOOM Corporation Reproduction of this manual, in whole or in part, by any means, is prohibited. Table of Contents Table of Contents 1 Audio interface and control surface 3 Install

More information

eela-audio EA916 Journalist Unit USB Audio module with Telephone Hybrid User manual

eela-audio EA916 Journalist Unit USB Audio module with Telephone Hybrid User manual eela-audio EA916 Journalist Unit USB Audio module with Telephone Hybrid User manual EA Broadcast / Eela Audio, Het Riet 8 A, 5431NM Cuijk, The Netherlands http://www.eela-audio.com e-mail: sales@eela-audio.com

More information

innkeeper PBX Desktop Digital Hybrid User Guide JK Audio Warranty

innkeeper PBX Desktop Digital Hybrid User Guide JK Audio Warranty Warranty Innkeeper PBX is covered by a 2-year warranty to be free from defective workmanship and materials. In the event that the innkeeper PBX needs repair, you must call us to get an authorization, and

More information

VirtualDJ 8 Numark IDJLIVE II 1

VirtualDJ 8 Numark IDJLIVE II 1 VirtualDJ 8 Numark IDJLIVE II 1 Table of Contents Installation... 3 Firmware & Drivers... 3 VirtualDJ 8 Setup... 3 Advanced Setup... 4 Operation... 5 Tailored skin... 7 Advanced Audio Setup... 8 Using

More information

Controls. LCD Display. Tuning Up Time Set and Station Scan

Controls. LCD Display. Tuning Up Time Set and Station Scan PR-D8 GB Revision 3 1 1 2 4 5 7 9 10 12 14 16 18 20 22 24 25 26 27 29 31 33 35 36 37 38 Controls Stereo Built-in Microphone (Left Channel) LCD Display Stereo Built-in Microphone (Right channel) Power/Auto

More information

How to use the OMEGALOG software with the OM-SQ2010/SQ2020/SQ2040 Data Loggers.

How to use the OMEGALOG software with the OM-SQ2010/SQ2020/SQ2040 Data Loggers. How to use the OMEGALOG software with the OM-SQ2010/SQ2020/SQ2040 Data Loggers. OMEGALOG Help Page 2 Connecting Your Data Logger Page 2 Logger Set-up Page 3 Download Data Page 8 Export Data Page 11 Downloading

More information

5 CHANNEL MIXER. S Class Signal Processors

5 CHANNEL MIXER. S Class Signal Processors 0 10 0 10 0 10 0 10 5 CHANNEL MIXER S Class Signal Processors Table Of Contents Introduction and Features 3 Front and Rear Panel Layout 4 Operating the S mix Setting up the S mix 5 Connecting the Input

More information

ReSound Unite TV FREQUENTLY ASKED QUESTIONS. Setup & Configuration. Use & Operation. Troubleshooting

ReSound Unite TV FREQUENTLY ASKED QUESTIONS. Setup & Configuration. Use & Operation. Troubleshooting Tip for use of FAQ: Click on questions to go to answer. Setup & Configuration How do I pair the hearing aids to the Unite TV?... 2 What is the latency of the streamed signal?... 2 Does the Unite TV use

More information

Web Site: www.parallax.com Forums: forums.parallax.com Sales: sales@parallax.com Technical: support@parallax.com

Web Site: www.parallax.com Forums: forums.parallax.com Sales: sales@parallax.com Technical: support@parallax.com Web Site: www.parallax.com Forums: forums.parallax.com Sales: sales@parallax.com Technical: support@parallax.com Office: (916) 624-8333 Fax: (916) 624-83 Sales: (888) 512-124 Tech Support: (888) 997-8267

More information

USER GUIDE ENGLISH ( 3 6 )

USER GUIDE ENGLISH ( 3 6 ) USER GUIDE ENGLISH ( 3 6 ) GUÍA DEL USUARIO ESPAÑOL ( 7 10 ) GUIDE D'UTILISATION FRANÇAIS ( 11 14 ) GUIDA PER L'USO ITALIANO ( 15 18 ) BENUTZERHANDBUCH DEUTSCH ( 19 22 ) USER GUIDE (ENGLISH) Box Contents

More information

SCD Server. SCD Server Pro

SCD Server. SCD Server Pro SCD Server SCD Server Pro SCD Server & SCD Server Pro 9850-000387-01 - Page 1 of 8 SCD Server and SCD Server Pro The SCD Server is a 2U high DMX generator, running the ZerOS Operating System and emulating

More information

PiFace Real Time Clock user guide

PiFace Real Time Clock user guide PiFace Real Time Clock user guide PiFace Real Time Clock means your Raspberry Pi always has the correct time. Furthermore, it s that small you ll hardly notice it s there! You can slip it inside most cases

More information

step 1 Unpack the lunchbox And check whether you have got all the components~ If you have questions please contact us at: info@unitunlikely.

step 1 Unpack the lunchbox And check whether you have got all the components~ If you have questions please contact us at: info@unitunlikely. step 1 Unpack the lunchbox And check whether you have got all the components~ If you have questions please contact us at: info@unitunlikely.com This part is called the PCB (printed circuit board). All

More information

aseries DVR04/DVR08 DIGITAL VIDEO RECORDER Quick Operations Guide

aseries DVR04/DVR08 DIGITAL VIDEO RECORDER Quick Operations Guide aseries DVR04/DVR08 DIGITAL VIDEO RECORDER Quick Operations Guide UD.7L0202B1365B01 Thank you for purchasing our product. If there is any question or request, please do not hesitate to contact dealer.

More information

Open Pro Tools. Click File/ New Session and name your session.

Open Pro Tools. Click File/ New Session and name your session. RECORD USING MIC BOOTH Open Pro Tools. Click File/ New Session and name your session. If you are working to video click File/ Import / Video and select your video. When the video pops up as a track a small

More information

Bob Rathbone Computer Consultancy

Bob Rathbone Computer Consultancy Raspberry PI Stepper Motor Constructors Manual Bob Rathbone Computer Consultancy www.bobrathbone.com 20 th of December 2013 Bob Rathbone Raspberry PI Robotic Arm 1 Contents Introduction... 3 Raspberry

More information

Active Speaker System LX523 AUDAC PROFESSIONAL AUDIO EQUIPMENT. Active Speaker System with remote input LX523. User Manual & Installation Guide

Active Speaker System LX523 AUDAC PROFESSIONAL AUDIO EQUIPMENT. Active Speaker System with remote input LX523. User Manual & Installation Guide Active Speaker System LX523 AUDAC PROFESSIONAL AUDIO EQUIPMENT Active Speaker System with remote input LX523 User Manual & Installation Guide AUDAC PROFESSIONAL AUDIO EQUIPMENT User Manual & Installation

More information

In-System Programmer USER MANUAL RN-ISP-UM RN-WIFLYCR-UM-.01. www.rovingnetworks.com 1

In-System Programmer USER MANUAL RN-ISP-UM RN-WIFLYCR-UM-.01. www.rovingnetworks.com 1 RN-WIFLYCR-UM-.01 RN-ISP-UM In-System Programmer 2012 Roving Networks. All rights reserved. Version 1.1 1/19/2012 USER MANUAL www.rovingnetworks.com 1 OVERVIEW You use Roving Networks In-System-Programmer

More information

Strato Pi Hardware Guide

Strato Pi Hardware Guide Strato Pi Hardware Guide October 2015 Revision 001 a professional expansion board for Raspberry Pi 2 Introduction 3 Features 4 Usage and connections 5 Hardware Installation 5 Strato Pi boards 5 Strato

More information

Adafruit's Raspberry Pi Lesson 5. Using a Console Cable

Adafruit's Raspberry Pi Lesson 5. Using a Console Cable Adafruit's Raspberry Pi Lesson 5. Using a Console Cable Created by Simon Monk Last updated on 2016-04-12 08:03:49 PM EDT Guide Contents Guide Contents Overview You Will Need Part Software Installation

More information

Inuktun Digital Video Recorder (DVR) Start Guide and Manual

Inuktun Digital Video Recorder (DVR) Start Guide and Manual Inuktun Digital Video Recorder (DVR) Start Guide and Manual Version 1.6 June 2012 CONTENTS INTRODUCTION... 3 What s Included...3 Supported Devices and Protocols...3 Connecting your DVR...4 Installation

More information

Chapter 1 Hardware and Software Introductions of pcduino

Chapter 1 Hardware and Software Introductions of pcduino Chapter 1 Hardware and Software Introductions of pcduino pcduino is a high performance, cost effective mini PC platform that runs PC like OS such as Ubuntu Linux. It outputs its screen to HDMI enabled

More information

Lab Experiment 1: The LPC 2148 Education Board

Lab Experiment 1: The LPC 2148 Education Board Lab Experiment 1: The LPC 2148 Education Board 1 Introduction The aim of this course ECE 425L is to help you understand and utilize the functionalities of ARM7TDMI LPC2148 microcontroller. To do that,

More information

USER MANUAL DUET EXECUTIVE USB DESKTOP SPEAKERPHONE

USER MANUAL DUET EXECUTIVE USB DESKTOP SPEAKERPHONE USER MANUAL DUET EXECUTIVE USB DESKTOP SPEAKERPHONE DUET EXE OVERVIEW Control Button Panel Connector Panel Loudspeaker Microphone The Duet is a high performance speakerphone for desktop use that can cover

More information

Recording audio from your computer.

Recording audio from your computer. Recording audio from your computer. Subject Descriptors: Audacity Application (Version): Audacity 1.2, Macintosh OSX, Windows XP-Vista Task Description: This lesson will demonstrate how to record any audio

More information

Banana Pi Open-Source Router Board

Banana Pi Open-Source Router Board Banana Pi Open-Source Router Board The Banana Pi Router Board is a 300Mbps Wireless N Router with both wired and wireless network connections designed specifically for smart home networking use. With 2T2R

More information

Setup guide. point to point wall plate extenders

Setup guide. point to point wall plate extenders SDS-1002/3 point to point wall plate extenders Setup guide For more information visit our website, or talk to one of our technical team tel: +44 (0) 1306 628264 www.smart-e.co.uk SDS-1002 & 1003 SETUP

More information

Step 1: Select the Start Menu, then Control Panel.

Step 1: Select the Start Menu, then Control Panel. Part of the Adobe Connect 9 software includes functionality to support full audio in addition to chat areas, shared spaces, and video. The technology that makes this possible is Voice- Over-IP (VOIP).

More information

IT-12M IT-12D Ver_2.0 INTERPRETATION SYSTEM. User s Manual

IT-12M IT-12D Ver_2.0 INTERPRETATION SYSTEM. User s Manual IT-12M IT-12D Ver_2.0 INTERPRETATION SYSTEM User s Manual Important Notice All the safety and instructions for operation and use of the equipment should be read carefully before the system is operated.

More information

THE ELEMENT SUPPORT OPERATING INSTRUCTIONS AMP+DACS ONLINE BY PHONE BY MAIL CONTACT@JDSLABS.COM 314-252-0936

THE ELEMENT SUPPORT OPERATING INSTRUCTIONS AMP+DACS ONLINE BY PHONE BY MAIL CONTACT@JDSLABS.COM 314-252-0936 OPERATING INSTRUCTIONS AMP+S THE ELEMENT SUPPORT ONLINE BY PHONE BY MAIL CONTACT@JDSLABS.COM JDSLABS.COM/SUPPORT 314-252-0936 9:30AM-6PM CST, MONDAY THROUGH FRIDAY 909 N BLUFF RD COLLINSVILLE, IL 62234

More information