Using BasicX Block Data Objects with PlaySound

Size: px
Start display at page:

Download "Using BasicX Block Data Objects with PlaySound"

Transcription

1 Basic Express Application Note Using BasicX Block Data Objects with PlaySound Introduction The BasicX system library includes a procedure called PlaySound, which can be used to generate audio signals from data stored in EEPROM memory. Block data classes are a convenient way to store mass amounts of data in EEPROM memory. Combining PlaySound with block data classes is an easy way to generate audio signals from sampled data. Hardware interface PlaySound utilizes a software DAC (Digital to Analog Converter) that generates sequences of fast digital pulses, which after filtering produces an analog voltage in range 0.0 V to 4.3 V. The circuit shown in figure 1 (below) can be connected directly to a speaker: Figure 1 Driving Speaker Alternatively, figure 2 shows a circuit that can be connected to standard amplified computer speakers:

2 Figure 2 Driving Audio Amplifier Software interface The syntax for calling PlaySound is as follows: Call PlaySound(Pin, StartAddress, Length, SampleRate, RepeatCount) Item Type Direction Description Pin Byte Input Output pin number. StartAddress UnsignedInteger Input Starting address of data in EEPROM. Length UnsignedInteger Input Length of data. Units are in bytes. SampleRate UnsignedInteger Input Sample rate. Units are Hz. RepeatCount UnsignedInteger Input Number of times to repeat the sound. 2

3 The StartAddress parameter can be obtained from the DataAddress property of a block data object. Here s an example program that shows how it works: Private SoundStep As New ByteVectorData ' 1 Sub Main() ' 2 Dim Address As New UnsignedInteger ' 3 Call SoundStep.Source("SoundStep.txt") ' 4 Address = CuInt(SoundStep.DataAddress) ' 5 Call PlaySound(17, Address, 1000, 1000, 1) ' 6 End Sub ' 7 SoundStep (line 1) declares a block data object that is similar to a 1D byte array. The SoundStep.Source method (line 4) tells the compiler where to find data to load into the object. The data is located in file SoundStep.txt on the PC host computer. The SoundStep.DataAddress property (line 5) tells us where the data is located in EEPROM. That address is used as a parameter to PlaySound (line 6). PlaySound reads 1000 samples at a sample rate of 1000 Hz, and plays the sound through I/O pin 17. Creating block data text files Block data files are regular ASCII text files that the compiler converts to binary form before loading into the BasicX system. In the attached demonstration program, we ll use 3 data files to generate data that are conceptually similar to the following waveforms: Figure 3 Step Waveform Figure 4 Triangle Waveform 3

4 Figure 5 Tremolo Waveform The 3 filenames are SoundStep.txt, SoundTriangle.txt and SoundTremolo.txt. A Visual Basic program was used to create the 3 files. Source code is included in a VB form file called frmmain.frm. All together now Program SoundFile puts everyting together and generates audio signals from the 3 data files listed above. Souce code is attached in file SoundFile.bas, and is listed below: Option Explicit ' This program demonstrates the PlaySound procedure. PlaySound generates ' sound from sampled data stored in EEPROM. ' ' A convenient way of storing data in EEPROM is through the use of block ' data objects, which read files from the PC host computer and downloads ' the data to EEPROM. ' These are read-only block data objects. Private SoundStep As New ByteVectorData Private SoundTriangle As New ByteVectorData Private SoundTremolo As New ByteVectorData Public Sub Main() Const OutputPin As Byte = 17 Dim Note As Integer Dim Length As New UnsignedInteger Dim SampleRate As New UnsignedInteger Dim RepeatCount As New UnsignedInteger Dim File As Integer Dim Address As New UnsignedInteger "Demonstration of PlaySound" "with block data objects" Call Delay(0.5) Call SoundStep.Source("SoundStep.txt") Call SoundTriangle.Source("SoundTriangle.txt") Call SoundTremolo.Source("SoundTremolo.txt") Length = 1000 RepeatCount = 4 ' Bytes 4

5 For File = 1 To 3 SampleRate = 1000 ' Hz Select Case File Case 1 Address = CuInt(SoundStep.DataAddress) " File SoundStep.txt:" Case 2 Address = CuInt(SoundTriangle.DataAddress) " File SoundTriangle.txt:" Case 3 Address = CuInt(SoundTremolo.DataAddress) " File SoundTremolo.txt:" End Select For Note = 1 To 3 " Sample rate = "; CStr(SampleRate); " Hz" Call Delay(0.2) Call PlaySound(OutputPin, Address, Length, SampleRate, RepeatCount) SampleRate = SampleRate * 2 ' Increase by octave. Call Delay(0.5) Next Next End Sub 2002 by NetMedia, Inc. All rights reserved. Basic Express, BasicX, BX-01, BX-24 and BX-35 are trademarks of NetMedia, Inc. All other trademarks are the property of their respective owners A 5

Basic Express. Basic Express. Compiler User's Guide. Version 1.46

Basic Express. Basic Express. Compiler User's Guide. Version 1.46 Basic Express Basic Express Compiler User's Guide Version 1.46 1998-2000 by NetMedia, Inc. All rights reserved. Basic Express, BasicX, BX-01 and BX-24 are trademarks of NetMedia, Inc. 1.46A 2 Contents

More information

Using a 74HCT259 8 Bit Addressable Latch with BasicX

Using a 74HCT259 8 Bit Addressable Latch with BasicX Basic Express Application Note Using a 74HCT259 8 Bit Addressable Latch with BasicX Introduction This application note illustrates how to use a 74HCT259 8-bit addressable latch with a BasicX system. The

More information

Basic Express, BasicX, BX-01, BX-24 and BX-35 are trademarks of NetMedia, Inc.

Basic Express, BasicX, BX-01, BX-24 and BX-35 are trademarks of NetMedia, Inc. 1997-2002 by NetMedia, Inc. All rights reserved. Basic Express, BasicX, BX-01, BX-24 and BX-35 are trademarks of NetMedia, Inc. Microsoft, Windows and Visual Basic are either registered trademarks or trademarks

More information

Audio Controller i. Audio Controller

Audio Controller i. Audio Controller i Audio Controller ii Contents 1 Introduction 1 2 Controller interface 1 2.1 Port Descriptions................................................... 1 2.2 Interface description.................................................

More information

Using BasicX to Derive Acceleration From GARMIN GPS Text Data

Using BasicX to Derive Acceleration From GARMIN GPS Text Data Basic Express Application Note Using BasicX to Derive Acceleration From GARMIN GPS Text Data Introduction Global Positioning System (GPS) receivers are typically able to measure position, velocity and

More information

by NetMedia, Inc. All rights reserved. Basic Express, BasicX, BX-01, BX-24 and BX-35 are trademarks of NetMedia, Inc.

by NetMedia, Inc. All rights reserved. Basic Express, BasicX, BX-01, BX-24 and BX-35 are trademarks of NetMedia, Inc. Version 2.0 1998-2002 by NetMedia, Inc. All rights reserved. Basic Express, BasicX, BX-01, BX-24 and BX-35 are trademarks of NetMedia, Inc. Microsoft, Windows and Visual Basic are either registered trademarks

More information

Programming Timer1 as a Stopwatch

Programming Timer1 as a Stopwatch Basic Express Application Note Programming Timer1 as a Stopwatch What is Timer1? BasicX systems have a built-in timer called Timer1. This timer can be used for several functions, one of which is measuring

More information

Contents. 1 Using a Recorded Waveform as Stimulus Rules An Example... 2

Contents. 1 Using a Recorded Waveform as Stimulus Rules An Example... 2 Contents 1 Using a Recorded Waveform as Stimulus 1 1.1 Rules............................... 1 1.2 An Example........................... 2 1. Using a Recorded Waveform as Stimulus The DAC-stimulus template

More information

PROGRAMMING AND CUSTOMIZING

PROGRAMMING AND CUSTOMIZING PROGRAMMING AND CUSTOMIZING THE PICAXE MICROCONTROLLER SECOND EDITION DAVID LINCOLN Mc Grauu Hill New York Chicago San Francisco Lisbon London Madrid Mexico City Milan New Delhi San Juan Seoul Singapore

More information

CS Programming In C

CS Programming In C CS 24000 - Programming In C Week Two: Basic C Program Organization and Data Types Zhiyuan Li Department of Computer Science Purdue University, USA 2 int main() { } return 0; The Simplest C Program C programs

More information

PP Quick Start Guide Version 1.3.1

PP Quick Start Guide Version 1.3.1 Version 1.3.1 FRONT PANEL Power Indicator Indicates power status of unit. Power Button Press to turn unit ON or OFF. On/Off Alarm Select Power PP2000 Reference Grade AC Conditioner LCD Display LCD display

More information

Binary representation and data

Binary representation and data Binary representation and data Loriano Storchi loriano@storchi.org http:://www.storchi.org/ Binary representation of numbers In a positional numbering system given the base this directly defines the number

More information

THE LPC84X MCU FAMILY A MULTI-TESTER TOOL OFFERING FEATURES FOR YOUR NEXT IOT DESIGN

THE LPC84X MCU FAMILY A MULTI-TESTER TOOL OFFERING FEATURES FOR YOUR NEXT IOT DESIGN THE LPC84X MCU FAMILY A MULTI-TESTER TOOL OFFERING FEATURES FOR YOUR NEXT IOT DESIGN KEVIN TOWNSEND (MICROBUILDER) BRENDON SLADE (NXP) Agenda Part I Overview of the LPC84x Multi-Tester Swiss army knife

More information

Experiment 6 The Real World Interface

Experiment 6 The Real World Interface Experiment 6 The Real World Interface Instructions You are required to design, code, test and document the C program from the experiment listed below. You should prepare the pseudocode for the program

More information

Basic Express BX-01. BX-01 Hardware Reference. Version 1.46

Basic Express BX-01. BX-01 Hardware Reference. Version 1.46 Basic Express BX-01 BX-01 Hardware Reference Version 1.46 1998-2000 by NetMedia, Inc. All rights reserved. Basic Express, BasicX, BX-01 and BX-24 are trademarks of NetMedia, Inc. Microsoft, Windows and

More information

KX1400 Software Tools User s Guide

KX1400 Software Tools User s Guide Application Note KX1400 Software Tools User s Guide APPLICABLE DEVICES This Application Note applies to the following Keterex devices: KX1400EW and KX1400EG. INTRODUCTION The KX1400 Software Tools Suite

More information

LCD Display. Other I/O. LCD display Flash ROM SPI EPROM Keyboard (PS/2) UART connectors DAC ADC. 2-line, 16 character LCD display

LCD Display. Other I/O. LCD display Flash ROM SPI EPROM Keyboard (PS/2) UART connectors DAC ADC. 2-line, 16 character LCD display Other I/O LCD display Flash ROM SPI EPROM Keyboard (PS/2) UART connectors DAC ADC LCD Display 2-line, 16 character LCD display 4-bit interface Relatively easy to use once you have it mapped into your processor

More information

Physical Computing Self-Quiz

Physical Computing Self-Quiz Physical Computing Self-Quiz The following are questions you should be able to answer without reference to outside material by the middle of the semester in Introduction to Physical Computing. Try to answer

More information

Arduino Cookbook O'REILLY* Michael Margolis. Tokyo. Cambridge. Beijing. Farnham Koln Sebastopol

Arduino Cookbook O'REILLY* Michael Margolis. Tokyo. Cambridge. Beijing. Farnham Koln Sebastopol Arduino Cookbook Michael Margolis O'REILLY* Beijing Cambridge Farnham Koln Sebastopol Tokyo Table of Contents Preface xiii 1. Getting Started 1 1.1 Installing the Integrated Development Environment (IDE)

More information

Parsing Instrument Data in Visual Basic

Parsing Instrument Data in Visual Basic Application Note 148 Parsing Instrument Data in Visual Basic Introduction Patrick Williams Instruments are notorious for sending back cryptic binary messages or strings containing a combination of header

More information

Digital Fundamentals

Digital Fundamentals Digital Fundamentals Tenth Edition Floyd Chapter 1 Modified by Yuttapong Jiraraksopakun Floyd, Digital Fundamentals, 10 th 2008 Pearson Education ENE, KMUTT ed 2009 Analog Quantities Most natural quantities

More information

Variables in VB. Keeping Track

Variables in VB. Keeping Track Variables in VB Keeping Track Variables Variables are named places in the computer memory that hold information. Variables hold only a single value at a time. Assigning a new value to them causes the old

More information

SECOND EDITION. Arduino Cookbook. Michael Margolis O'REILLY- Tokyo. Farnham Koln Sebastopol. Cambridge. Beijing

SECOND EDITION. Arduino Cookbook. Michael Margolis O'REILLY- Tokyo. Farnham Koln Sebastopol. Cambridge. Beijing SECOND EDITION Arduino Cookbook Michael Margolis Beijing Cambridge Farnham Koln Sebastopol O'REILLY- Tokyo Table of Contents Preface xi 1. Getting Started 1 1.1 Installing the Integrated Development Environment

More information

UNIT 1: PROGRAMMING ENVIRONMENT

UNIT 1: PROGRAMMING ENVIRONMENT UNIT 1: PROGRAMMING ENVIRONMENT 1.1 Introduction This unit introduces the programming environment for the Basic Digital Signal Processing course. It gives a brief description of the Visual Basic classes

More information

Intro To Pure Data Documentation

Intro To Pure Data Documentation Intro To Pure Data Documentation Release 1.0a1 Erik Schoster July 09, 2016 Contents 1 Digital Audio 3 2 Sampling Signals 5 3 Dynamic Range 7 4 Bit Depth & Binary Integers 9 5 Quantization Noise 11 6 Data

More information

ZBasic Language Reference Manual

ZBasic Language Reference Manual ZBasic Language Reference Manual Including Information on the ZX Series Microcontrollers Version 4.3.2 Publication History Copyright 2005-2015 Elba Corp. All rights Reserved. November 2005 May 2006 August

More information

Microchip Technology Enhances Popular 16- and 32-bit Development Platform with Application-Specific Expansion Hardware

Microchip Technology Enhances Popular 16- and 32-bit Development Platform with Application-Specific Expansion Hardware Editorial Contact: Reader/Literature Inquiries: Eric Lawson 1-888-MCU-MCHP 480-792-7182 www.microchip.com/pictailplus eric.lawson@microchip.com Microchip Technology Enhances Popular 16- and 32-bit Development

More information

CHAPTER TWELVE - Memory Devices

CHAPTER TWELVE - Memory Devices CHAPTER TWELVE - Memory Devices 12.1 6x1,024 = 16,384 words; 32 bits/word; 16,384x32 = 524,288 cells 12.2 16,384 addresses; one per word. 12.3 2 16 = 65,536 words = 64K. Thus, memory capacity is 64Kx4.

More information

ZBasic Language Reference Manual

ZBasic Language Reference Manual ZBasic Language Reference Manual Including Information on the ZX Series Microcontrollers Version 3.1.1 Publication History Copyright 2005-2010 Elba Corp. All rights Reserved. November 2005 February 2006

More information

Portable Bluetooth Amp for Home Speakers. Team 53 - Anthony Pham, Nicholas Jew, Austin Palanca ECE 445 Project Proposal - Spring 2018 TA: Zhen Qin

Portable Bluetooth Amp for Home Speakers. Team 53 - Anthony Pham, Nicholas Jew, Austin Palanca ECE 445 Project Proposal - Spring 2018 TA: Zhen Qin Portable Bluetooth Amp for Home Speakers Team 53 - Anthony Pham, Nicholas Jew, Austin Palanca ECE 445 Project Proposal - Spring 2018 TA: Zhen Qin February 8th, 2018 Table of Contents 1 Introduction 2 1.1

More information

NetMedia 2x16 Serial LCD Display Module V1.5

NetMedia 2x16 Serial LCD Display Module V1.5 NetMedia 2x16 Serial LCD Display Module V1.5 Table of Contents: Pinout... 2 Interfacing... 3 LCD Control Codes... 4 Creating Custom Characters... 6 BasicX-24 Example Program:... 7 2x16 Specifications...

More information

Parallax Audio Amplifier AppMod (#29143)

Parallax Audio Amplifier AppMod (#29143) 599 Menlo Drive, Suite 100 Rocklin, California 95765, USA Office: (916) 624-8333 Fax: (916) 624-8003 General: info@parallax.com Technical: support@parallax.com Web Site: www.parallax.com Educational: www.stampsinclass.com

More information

Arduino Programming and Interfacing

Arduino Programming and Interfacing Arduino Programming and Interfacing Stensat Group LLC, Copyright 2017 1 Robotic Arm Experimenters Kit 2 Legal Stuff Stensat Group LLC assumes no responsibility and/or liability for the use of the kit and

More information

Programming in C++ 6. Floating point data types

Programming in C++ 6. Floating point data types Programming in C++ 6. Floating point data types! Introduction! Type double! Type float! Changing types! Type promotion & conversion! Casts! Initialization! Assignment operators! Summary 1 Introduction

More information

Data Communication/MIDI. Juan P Bello

Data Communication/MIDI. Juan P Bello Data Communication/MIDI Juan P Bello MIDI The Musical Instrument Digital Interface (MIDI) is a standard for communication between electronic musical instruments, which has also been applied to a larger

More information

ingenia dspic bootloader User s Guide

ingenia dspic bootloader User s Guide ingenia dspic bootloader User s Guide version 1.3 24/07/06 2006, ingenia-cat S.L. ingenia dspic bootloader Guide: V1.3 Copyright 2006 ingenia-cat S.L. Permission is granted to copy and/or distribute this

More information

EE445L Fall 2012 Quiz 2B Page 1 of 6

EE445L Fall 2012 Quiz 2B Page 1 of 6 EE445L Fall 2012 Quiz 2B Page 1 of 6 Jonathan W. Valvano First: Last: November 16, 2012, 10:00-10:50am. Open book, open notes, calculator (no laptops, phones, devices with screens larger than a TI-89 calculator,

More information

Lab 16: Tri-State Busses and Memory U.C. Davis Physics 116B Note: We may use a more modern RAM chip. Pinouts, etc. will be provided.

Lab 16: Tri-State Busses and Memory U.C. Davis Physics 116B Note: We may use a more modern RAM chip. Pinouts, etc. will be provided. Lab 16: Tri-State Busses and Memory U.C. Davis Physics 116B Note: We may use a more modern RAM chip. Pinouts, etc. will be provided. INTRODUCTION In this lab, you will build a fairly large circuit that

More information

Adapted from a lab originally written by Simon Hastings and Bill Ashmanskas

Adapted from a lab originally written by Simon Hastings and Bill Ashmanskas Physics 364 Arduino Lab 1 Adapted from a lab originally written by Simon Hastings and Bill Ashmanskas Vithayathil/Kroll Introduction Last revised: 2014-11-12 This lab introduces you to an electronic development

More information

Hand Controlled Audio Synthesizer

Hand Controlled Audio Synthesizer Alex Sanchez & Behram Mistree 6.111 Final Project Proposal 11.3.2006 Coordinate TA: Javy Hand Controlled Audio Synthesizer 1. Proposed Functionality We propose to build a device that incorporates a video

More information

SiSonic FLEX Evaluation Kit KAS USER GUIDE.

SiSonic FLEX Evaluation Kit KAS USER GUIDE. Contents 1. Digital to Analog Converter (DAC) PCB 2. Mic-On-Flex Assemblies (10 Total) 3. Adapter PCBs (Digital and Analog) 1 2 3 Description The evaluation kit allows for simple and easy evaluation of

More information

HD Audio Converter Incorporates HDMI technology

HD Audio Converter Incorporates HDMI technology HD Audio Converter Incorporates HDMI technology HDMI input HDMI, Optical, Coaxial and 3.5mm audio output MODEL : HA-110SA OWNERS MANUAL 1 INTRODUCTION Congratulations on your purchase of the HD Audio Converter.

More information

NetMedia 2x16 Serial LCD Display Module V1.2

NetMedia 2x16 Serial LCD Display Module V1.2 NetMedia 2x16 Serial LCD Display Module V1.2 RS232 compatible serial interface (2400 & 9600 baud selectable) Externally selectable serial polarities (Inverted & Non-Inverted) Serially controllable contrast

More information

The Programming Process Summer 2010 Margaret Reid-Miller

The Programming Process Summer 2010 Margaret Reid-Miller The Programming Process 15-110 Margaret Reid-Miller Hardware Components Central Processing Unit (CPU) Program control Arithmetic/logical operations Coordinates data movement between memory and registers

More information

Formats. Formats Under UNIX. HEXw. format. $HEXw. format. Details CHAPTER 11

Formats. Formats Under UNIX. HEXw. format. $HEXw. format. Details CHAPTER 11 193 CHAPTER 11 Formats Formats Under UNIX 193 Formats Under UNIX This chapter describes SAS formats that have behavior or syntax that is specific to UNIX environments. Each format description includes

More information

Speaker-less Audio. Private and Business aircraft owners demand high fidelity state of the art audio performance in a noisy cabin environment.

Speaker-less Audio. Private and Business aircraft owners demand high fidelity state of the art audio performance in a noisy cabin environment. Speaker-less Audio Private and Business aircraft owners demand high fidelity state of the art audio performance in a noisy cabin environment. Solution Interior panels become the speakers. Speakerless Audio

More information

ECGR 4101/5101, Fall 2016: Lab 1 First Embedded Systems Project Learning Objectives:

ECGR 4101/5101, Fall 2016: Lab 1 First Embedded Systems Project Learning Objectives: ECGR 4101/5101, Fall 2016: Lab 1 First Embedded Systems Project Learning Objectives: This lab will introduce basic embedded systems programming concepts by familiarizing the user with an embedded programming

More information

Macintosh SE/30. Overview

Macintosh SE/30. Overview Overview The Macintosh SE/30 personal computer was designed for people who want maximum performance from a compact computer system. It provides up to four times the computational speed of the Macintosh

More information

DATABASE AUTOMATION USING VBA (ADVANCED MICROSOFT ACCESS, X405.6)

DATABASE AUTOMATION USING VBA (ADVANCED MICROSOFT ACCESS, X405.6) Technology & Information Management Instructor: Michael Kremer, Ph.D. Database Program: Microsoft Access Series DATABASE AUTOMATION USING VBA (ADVANCED MICROSOFT ACCESS, X405.6) AGENDA 3. Executing VBA

More information

EE445L Fall 2010 Final Version A Page 1 of 10

EE445L Fall 2010 Final Version A Page 1 of 10 EE445L Fall 2010 Final Version A Page 1 of 10 Jonathan W. Valvano First: Last: This is the closed book section. You must put your answers in the boxes on this answer page. When you are done, you turn in

More information

Data encoding. Lauri Võsandi

Data encoding. Lauri Võsandi Data encoding Lauri Võsandi Binary data Binary can represent Letters of alphabet, plain-text files Integers, floating-point numbers (of finite precision) Pixels, images, video Audio samples Could be stored

More information

USB-SD MP3 Module Manual

USB-SD MP3 Module Manual USB-SD MP3 Module Manual WT9501M03 www.elechouse.com Copyright reserved by elechouse Features www.elechouse.com Can play 8 ~ 320Kbps MP3 audio files; Support maximum capacity of 32G Byte SD card; Support

More information

Input File Syntax The parser expects the input file to be divided into objects. Each object must start with the declaration:

Input File Syntax The parser expects the input file to be divided into objects. Each object must start with the declaration: TCC Low Level Parser Purpose The TCC low level parser is designed to convert the low level ASCII based configuration files into a binary format which can then be downloaded to the Alpha processor boards.

More information

CSE 123 Introduction to Computing

CSE 123 Introduction to Computing CSE 123 Introduction to Computing Lecture 6 Programming with VBA (Projects, forms, modules, variables, flowcharts) SPRING 2012 Assist. Prof. A. Evren Tugtas Starting with the VBA Editor Developer/Code/Visual

More information

Travel Charger, USB Type-C, 45W

Travel Charger, USB Type-C, 45W Travel Charger, USB Type-C, 45W User Manual 31812 The ednet Travel Charger USB Type-C allows you to charge all of your devices (Notebooks, Tablets, Smartphones, Power Banks, Speakers, etc.). It can be

More information

Basic Express Compiler User's Guide. Version 2.1

Basic Express Compiler User's Guide. Version 2.1 Basic Express Compiler User's Guide Version 2.1 1998-2003 by NetMedia, Inc. All rights reserved. Basic Express, BasicX, BX-01, BX-24 and BX-35 are trademarks of NetMedia, Inc. Microsoft, Windows and Visual

More information

Microsoft Visual Basic 2015: Reloaded

Microsoft Visual Basic 2015: Reloaded Microsoft Visual Basic 2015: Reloaded Sixth Edition Chapter Three Memory Locations and Calculations Objectives After studying this chapter, you should be able to: Declare variables and named constants

More information

Installation instructions DC Protection and Delay unit, Version 1.2 The package should contain: A piece of normal gauge yellow wire for the AC connect

Installation instructions DC Protection and Delay unit, Version 1.2 The package should contain: A piece of normal gauge yellow wire for the AC connect Installation instructions DC Protection and Delay unit, Version 1.2 How does the unit work? Delay: Basically a capacitor is charged via a resistor, when the voltage of the capacitor reach a certain level,

More information

AZ1111. CD Sound Machine. CD Sound Machine

AZ1111. CD Sound Machine. CD Sound Machine Synchronises the start of a recording on audio cassette with the start of a CD at the touch of a button. CD Player Single Cassette Deck AZ1111 Standard product information Amplifier Output power : 2 x

More information

VComm Signal File Specification

VComm Signal File Specification VComm Signal File Specification SimPhonics, Inc. 3226 North Falkenburg Road Tampa, Florida 33619 Voice (877) 205-4901 X102 FAX (813) 623-5119 CAGE: 0L4C8 Email: info@simphonics.com Table of Contents 1

More information

Procedures. This is a common situation -- there is some functionality that computers should have that the do not the solution is to write a procedure

Procedures. This is a common situation -- there is some functionality that computers should have that the do not the solution is to write a procedure Procedures Procedures are familiar in everyday life -- they are a standard process for achieving some objective. Procedures in computers are similar: They are a standard process of computing some result.

More information

What you need to know about the stored program model

What you need to know about the stored program model What you need to know about the stored program model CMSC 122 CMSC 122 What you need to know about the stored program model 1 / 8 Outline 1 Introduction Overview of the Stored Program Model Using JavaScript

More information

CS16 Exam #1 7/17/ Minutes 100 Points total

CS16 Exam #1 7/17/ Minutes 100 Points total CS16 Exam #1 7/17/2012 75 Minutes 100 Points total Name: 1. (10 pts) Write the definition of a C function that takes two integers `a` and `b` as input parameters. The function returns an integer holding

More information

TIP550. Optically Isolated 8/4 Channel 12-bit D/A. Version 1.2. User Manual. Issue October 2009

TIP550. Optically Isolated 8/4 Channel 12-bit D/A. Version 1.2. User Manual. Issue October 2009 The Embedded I/O Company TIP550 Optically Isolated 8/4 Channel 12-bit D/A Version 1.2 User Manual Issue 1.2.0 October 2009 TEWS TECHNOLOGIES GmbH Am Bahnhof 7 25469 Halstenbek, Germany Phone: +49 (0) 4101

More information

MemoryKeyerV2.0.ino (AtoM.h, MtoA.h, Canned.h)

MemoryKeyerV2.0.ino (AtoM.h, MtoA.h, Canned.h) MemoryKeyerV2.0.ino (AtoM.h, MtoA.h, Canned.h) This is an Arduino sketch that acts as an iambic memory keyer for amateur radio use. It can easily be constructed in a Standard Arduino Enclosure (Altoids

More information

afrc616 + Micro SD Card dual set solution Data sheet APLUS INTEGRATED CIRCUITS INC.

afrc616 + Micro SD Card dual set solution Data sheet APLUS INTEGRATED CIRCUITS INC. afrc616 + Micro SD Card dual set solution Data sheet APLUS INTEGRATED CIRCUITS INC. Address: 3 F-10, No. 32, Sec. 1, Chenggung Rd., Taipei, Taiwan 115, R.O.C. TEL: 886-2-2782-9266 FAX: 886-2-2782-9255

More information

MICROPROCESSORS A (17.383) Fall Lecture Outline

MICROPROCESSORS A (17.383) Fall Lecture Outline MICROPROCESSORS A (17.383) Fall 2010 Lecture Outline Class # 04 September 28, 2010 Dohn Bowden 1 Today s Lecture Syllabus review Microcontroller Hardware and/or Interface Programming/Software Lab Homework

More information

Owner s Manual DA-300USB D/A CONVERTER. Appendix. Contents. You can print more than one page of a PDF onto a single sheet of paper.

Owner s Manual DA-300USB D/A CONVERTER. Appendix. Contents. You can print more than one page of a PDF onto a single sheet of paper. DA-300USB D/A CONVERTER Owner s Manual You can print more than one page of a PDF onto a single sheet of paper. Front panel Display Rear panel Contents Accessories 3 Features 4 High quality sound 4 High

More information

An overview about DroidBasic For Android

An overview about DroidBasic For Android An overview about DroidBasic For Android from February 25, 2013 Contents An overview about DroidBasic For Android...1 Object-Oriented...2 Event-Driven...2 DroidBasic Framework...2 The Integrated Development

More information

Model DVS-2A 2-Port DVI Switch with Audio, Serial Control & Long Cable Equalization

Model DVS-2A 2-Port DVI Switch with Audio, Serial Control & Long Cable Equalization Hall Research Technologies, Inc. Model DVS-2A 2-Port DVI Switch with Audio, Serial Control & Long Cable Equalization UMA1127 Rev B Copyright 2007. Hall Research Technologies, Inc. All rights 1163 Warner

More information

IS 320 A/B Winter 1998 Page 1 Exam 1

IS 320 A/B Winter 1998 Page 1 Exam 1 IS 320 A/B Winter 1998 Page 1 Use your own paper to answer the questions. You may do work on this document but transfer your answers to separate sheets of paper. Turn in this document as well as your answers

More information

Topics. Hardware and Software. Introduction. Main Memory. The CPU 9/21/2014. Introduction to Computers and Programming

Topics. Hardware and Software. Introduction. Main Memory. The CPU 9/21/2014. Introduction to Computers and Programming Topics C H A P T E R 1 Introduction to Computers and Programming Introduction Hardware and Software How Computers Store Data Using Python Introduction Computers can be programmed Designed to do any job

More information

Iteration -- Once Is Not Enough

Iteration -- Once Is Not Enough Iteration -- Once Is Not Enough ),7 Congratulations! The Day Find project is done! -- Reflect This is a significant accomplishment Understand a fundamental algorithm -- binary search Know how to search

More information

Name EGR 2131 Lab #6 Number Representation and Arithmetic Circuits

Name EGR 2131 Lab #6 Number Representation and Arithmetic Circuits Name EGR 2131 Lab #6 Number Representation and Arithmetic Circuits Equipment and Components Quartus software and Altera DE2-115 board PART 1: Number Representation in Microsoft Calculator. First, let s

More information

University Program Advance Material

University Program Advance Material University Program Advance Material Advance Material Modules Introduction ti to C8051F360 Analog Performance Measurement (ADC and DAC) Detailed overview of system variances, parameters (offset, gain, linearity)

More information

Lecture 4 DLLs and Custom Hardware Programming

Lecture 4 DLLs and Custom Hardware Programming Lecture 4 DLLs and Custom Hardware Programming Dynamically Link Libraries (DLL) Generating EXE file involves: (1) Compile source, which generates object/libraries files (.OBJ,.LIB), and (2) Linking object

More information

UNIVERSAL SERIAL INTERFACE

UNIVERSAL SERIAL INTERFACE UNIVERSAL SERIAL INTERFACE Coastal Environmental Systems Application Note ZENO_MANUAL_USI.DOC 4/21 UNIVERSAL SERIAL INTERFACE Overview The Universal Serial Interface lets you program your ZENO to communicate

More information

HELP - VB TIPS. ANIMATE AN IMAGE BOX Insert a module. In this module, create a global variable: Global x

HELP - VB TIPS. ANIMATE AN IMAGE BOX Insert a module. In this module, create a global variable: Global x HELP - VB TIPS Load an image to an image box from a certain folder If you use this method, won t work on N:\ To load an image to a image control Image1.Picture = LoadPicture("H:\MyVBfolder\stop.gif") Load

More information

Object Oriented Programming with Visual Basic.Net

Object Oriented Programming with Visual Basic.Net Object Oriented Programming with Visual Basic.Net By: Dr. Hossein Hakimzadeh Computer Science and Informatics IU South Bend (c) Copyright 2007 to 2015 H. Hakimzadeh 1 What do we need to learn in order

More information

DoIP Interfacer System: A Low-Cost Alternative to Computer for Basic Network Communication in LAN Environment

DoIP Interfacer System: A Low-Cost Alternative to Computer for Basic Network Communication in LAN Environment Journal of Computer Science 5 (7): 471-475, 2009 ISSN 1549-3636 2009 Science Publications DoIP Interfacer System: A Low-Cost Alternative to Computer for Basic Network Communication in LAN Environment Emmanuel

More information

KALI Technical Manual. This document covers the Technical Details of KALI

KALI Technical Manual. This document covers the Technical Details of KALI KALI Technical Manual This document covers the Technical Details of KALI 1 KALI RECLOCKER The Kali takes the digital audio signals (I2S) from Sparky SBC or RPI through the on board FPGA based FIFO and

More information

Execute Server Actions from Client Methods

Execute Server Actions from Client Methods Execute Server Actions from Client Methods Contents Scenario... 1 One Problem... 6 A Solution... 8 Create a client event... 8 Assign actions to new event... 8 Fire event... 11 Test... 17 Conclusion...

More information

20. VB Programming Fundamentals Variables and Procedures

20. VB Programming Fundamentals Variables and Procedures 20. VB Programming Fundamentals Variables and Procedures 20.1 Variables and Constants VB, like other programming languages, uses variables for storing values. Variables have a name and a data type. Array

More information

Computer Hardware Requirements for ERTSs: Microprocessors & Microcontrollers

Computer Hardware Requirements for ERTSs: Microprocessors & Microcontrollers Lecture (4) Computer Hardware Requirements for ERTSs: Microprocessors & Microcontrollers Prof. Kasim M. Al-Aubidy Philadelphia University-Jordan DERTS-MSc, 2015 Prof. Kasim Al-Aubidy 1 Lecture Outline:

More information

Owner s Manual for the. ClockMaster. Models: CM2-100-PCI

Owner s Manual for the. ClockMaster. Models: CM2-100-PCI Owner s Manual for the ClockMaster Models: CM2-100-PCI SpinCore Technologies, Inc. 3525 NW 67 th Avenue Gainesville, Florida 32653, USA Phone: (352)-271-7383 http:// Congratulations and THANK YOU for choosing

More information

Pearson Education Limited Edinburgh Gate Harlow Essex CM20 2JE England and Associated Companies throughout the world

Pearson Education Limited Edinburgh Gate Harlow Essex CM20 2JE England and Associated Companies throughout the world Pearson Education Limited Edinburgh Gate Harlow Essex CM20 2JE England and Associated Companies throughout the world Visit us on the World Wide Web at: www.pearsoned.co.uk Pearson Education Limited 2014

More information

DEV-1 HamStack Development Board

DEV-1 HamStack Development Board Sierra Radio Systems DEV-1 HamStack Development Board Reference Manual Version 1.0 Contents Introduction Hardware Compiler overview Program structure Code examples Sample projects For more information,

More information

Lab 16: Data Busses, Tri-State Outputs and Memory

Lab 16: Data Busses, Tri-State Outputs and Memory Lab 16: Data Busses, Tri-State Outputs and Memory UC Davis Physics 116B Rev. 0.9, Feb. 2006 1 Introduction 1.1 Data busses Data busses are ubiquitous in systems which must communicate digital data. Examples

More information

S300i. Two Channel Integrated Audio Amplifier

S300i. Two Channel Integrated Audio Amplifier User's Guide S300i e.one Two Channel Integrated Audio Amplifier Series Bel Canto Design, LTD. 212 Third Avenue North Minneapolis, MN 55401 Phone: (612) 317.4550 Fax: (612) 359.9358 www.belcantodesign.com

More information

Getting Embedded Software into the Target System using Device Programmer

Getting Embedded Software into the Target System using Device Programmer Embedded Software development Process and Tools: Lesson-5 Getting Embedded Software into the Target System using Device Programmer 1 1. Device PROM or Flash Programmer 2 Device programmer also called laboratory

More information

Project phase 1 Scanner front-end assigned Tuesday 2 September, due Tuesday 16 September

Project phase 1 Scanner front-end assigned Tuesday 2 September, due Tuesday 16 September CS 351 Design of Large Programs, Fall 2003 1 Project phase 1 Scanner front-end assigned Tuesday 2 September, due Tuesday 16 September 1.1 Task Write Java classes and interfaces to implement the scanner

More information

Lab 01 Arduino 程式設計實驗. Essential Arduino Programming and Digital Signal Process

Lab 01 Arduino 程式設計實驗. Essential Arduino Programming and Digital Signal Process Lab 01 Arduino 程式設計實驗 Essential Arduino Programming and Digital Signal Process Arduino Arduino is an open-source electronics prototyping platform based on flexible, easy-to-use hardware and software. It's

More information

Objectives. Connecting with Computer Science 2

Objectives. Connecting with Computer Science 2 Objectives Learn why numbering systems are important to understand Refresh your knowledge of powers of numbers Learn how numbering systems are used to count Understand the significance of positional value

More information

Unit 1. Digital Representation

Unit 1. Digital Representation 1 Unit 1 Digital Representation 2 Information Representation All information is represented as sequences of 1's and 0's 5 kinds of information Numbers Text Instructions Sound Image/Video 3 Why 1 s and

More information

PAD ANALOG / DIGITAL TRAINER OPERATOR S MANUAL

PAD ANALOG / DIGITAL TRAINER OPERATOR S MANUAL PAD - 234 ANALOG / DIGITAL TRAINER OPERATOR S MANUAL Rev. 7/94 GENERAL OPERATING PROCEDURES 1. This manual should be read thoroughly before engaging in any experimentation. 2. As a general rule, NEVER

More information

SP8 Programmers. User's Guide. TEL: FAX: WEB: Publication Release Date: August 2011 Revision A1

SP8 Programmers. User's Guide. TEL: FAX: WEB:  Publication Release Date: August 2011 Revision A1 SP8 Programmers SHENZHEN SOFI TECHNOLOGY CO.,LTD. TEL: 0755-8486 7757 FAX: 0755-8486 7941 WEB: www.sofi-tech.com Publication Release Date: August 2011 Revision A1 Contents Chapter 1. Introduction into

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

Design of New Oscillograph based on FPGA

Design of New Oscillograph based on FPGA Available online at www.sciencedirect.com Procedia Engineering 23 (2011) 60 64 Design of New Oscillograph based on FPGA Hu Haoran,ZHANG Fei School of Computer & Information, Anqing Teachers College, Anqing

More information

Embedded Piano Interfaced with LCD

Embedded Piano Interfaced with LCD Embedded Piano Interfaced with LCD Akshita Vinod Nichani U.G. Student, Electronics and Telecommunication Department, DJSCE Shruti Tushar Pistolwala U.G. Student, Electronics and Telecommunication Department,

More information

Visual Basic. Chapter 3

Visual Basic. Chapter 3 Visual Basic Chapter 3 Structured Visual Basic In this chapter, we will begin to learn how to write structured Visual Basic programs Creating a flowchart and/or creating pseudocode before you create the

More information