PRO7_TEL ver1_0 FINAL.BS2

Size: px
Start display at page:

Download "PRO7_TEL ver1_0 FINAL.BS2"

Transcription

1 '{$STAMP BS2} PRO7_TEL ver1_0 FINAL.BS2 ' Programme: TEL.BS2 Simulateur de Ligne Telephonique ' Par: Sylvain Bergeron Date: 2000-FEV ' Versions: ' 0.1 Routines de SelfCheck: 2000-Fev-04 ' 0.2 Routines OK: 2000-Feb-07 ' connect, busy, SelfCheck, Manual Ring, Display ' 0.5 Change DTMF SD read routine for button function 2000-Feb-09 ' Work only for manual dialing, not computer, too slow ' Change SD read for flip-flop action on IN4 to prevent false trig ' and fast action ' Change 3 & 25 sec timers tick to 10ms, faster respond time to DTMF ' Clean-up variables ' Clean-up SelCheck routines ' 1.0 Final version, model 7 or 11 digits phone no Feb-10 ' Ce programme controle mon simulateur de ligne telephonique. ' Deux RJ11, J1 et J2 connectent les 2 appareils. L'appel debute en ' decrochant J1. Les "Confort Tones" sont generes et le Talk Voltage (-28V) ' est present. Les tonalites sont: ' 1- Dial tone si on decroche J1 ' 2- Ligne occupee si J2 est decroche apres composition, "b" est affiche ' 3- Alert tone si ligne decrochee sur J1 et aucune action pour plus de 20s ' Un afficheur 7 segments affiche les tonalites composes de 0-9. ' L'affichage est allonge pour mieux voir les codes. ' La derniere tonalite est affichee pour 3 sec. ' Le * est affiche par A, le # par P. En attente, affiche n pour normal. ' Si on compose un numero de 7 ou 11 chiffres, le telephone sur J2 sonne. ' Si J2 decroche, J1 et J2 sont connectes ensemble. Un module ring ' generateur reproduit parfaitement le ring 20Hz, 90V peak sinusoidale. ' Un interrupteur "Ring" permet de faire sonner manuellement J1 sans ' compose un numero sur J1. Durant le ring, "r" est affiche. ' Une sortie jack 1/8 permet de monitorer L'audio sur la ligne a l'aide ' de haut-parleur amplifies. ' Declarations A0 con 0 ' DataBus Line 0 A1 con 1 ' DataBus Line 1 A2 con 2 ' DataBus Line 2 A3 con 3 ' DataBus Line 3 SD con 4 ' DTMF Code available, valide 1 OE con 5 ' OutputEnable DTMF Decoder M-8870, active 1 CE con 6 ' ChipSelect Tone Gen M-991, active 0 RING_I con 7 ' Ring Button, active 0 OFFHK1 con 8 ' OffHook J1, Detect Off-Hook J1, active 1 OFFHK2 con 9 ' OffHook J2, Detect Off-Hook J2, active 1 CLK con 10 ' 7 Seg display shift register Clock DAT con 11 ' Data STB con 12 ' Strobe CPC con 13 ' CPC Control, active 1 RING_O con 14 ' Ring command to ring gen, active 0 RLY con 15 ' Relay to connect J1-J2, active 1 LOCAL con 7 ' Number of digit for a local call LONGDST con 11 ' Nb of digit long dist call, start with 1 Flag var bit ' Flag Tempo var nib ' Tempo variable Limit var nib ' Counter to count LOCAL(7) or LONGDST(11) Page 1

2 Timer var word ' 3sec Timer to display last DTMF code pressed Alert var word ' 0-25sec timer to generate alert tone Code var byte ' Code DTMF to display for display: routine NBDigit var byte ' Counter nb digit 0-11, nib range 0-15 DTMF var byte(15)' Array, contain binary word to shift out to ' display DTMF Code on 7 seg display. ' 0=n(ormal),1-9 = digits 1-9, 10=0, 11=A, 12=P, ' 13 = b(usy), 14 = r(ing) ' DTMF Code display Definition, 8bits, CA display (0=ON) '7segments Pgfedcba 'P=DP DTMF(0) = % 'Display "n" for NORMAL DEC=171 DTMF(1) = % 'Key 1 DTMF(2) = % 'Key 2 DTMF(3) = % 'Key 3 DTMF(4) = % 'Key 4 DTMF(5) = % 'Key 5 DTMF(6) = % 'Key 6 DTMF(7) = % 'Key 7 DTMF(8) = % 'Key 8 DTMF(9) = % 'Key 9 DTMF(10) = % 'Key 0 DTMF(11) = % 'Key *, display A DEC=136 DTMF(12) = % 'Key #, display P DEC=140 DTMF(13) = % 'Display "b" for BUSY DEC=131 DTMF(14) = % 'Display "r" for RING DEC=175 'Display "E" 'Dispaly "C" 'Display DP 'Blank DEC=255 DEC=134 DEC=198 DEC=127 ' Initialisation init: dirl = % ' Pins direction definition dirh = % NBDigit = 0 ' Initialize variables Limit = LOCAL ' Turn off & Deactivate everything low OE outd = %0000 ' low RING_O,RLY,CPC,STB shiftout DAT,CLK,msbfirst,[127] 'Display DP ' Main Loop ' Wait for offhook on J1 then start dial tone. Wait 25 sec for 1 valid ' DTMF tone to start ReadKey OR Hang-up on J1. Use ms click to ' timeout 25 sec and check regularly SD and OFFHK1. ' If doesn't do anything in 25 sec, get re-order tone. ' If press manual RING_I switch, go directly to wait for OFFHK2. main: if IN8 = 0 then main Code = 0 dira = %1111 outa = %0000 dira = %0000 Alert = 0 'Display "n"ormal 'Start Dial Tone, A0-A3 OUTPUT 'Dial Tone 'Start 'A0-A3 return to INPUTS 'Start 25 sec timeout Page 2

3 waitdtmf: Timer = 0 if IN7 = 1 then m1 goto waithk2 m1: if IN4 = 0 then m2 goto readkey m2: if IN8 = 0 then cpc_hangup if Alert = 250 then timeout pause 101 Alert = Alert + 1 goto waitdtmf timeout: dira = %1111 PRO7_TEL ver1_0 FINAL.BS2 'Manual RING? 'Stop Dial Tone 'Stop Dial Tone 'End if hang-up J1 'wait 0.1 sec 'Start Reorder Tone, A0-A3 OUTPUT outa = %0110 'Reorder Tone reorder: 'ON if IN8 = 0 then m3 'Perte OFFHK1? pause 250 'On/Off 250 ms tone 'OFF shiftout DAT,CLK,msbfirst,[255] 'Blank pause 250 Code = 0 'Pulse Display "n" goto reorder m3: 'Stop tone dira = %0000 'A0-A3 return to INPUTS goto cpc_hangup ' readkey: ' Read Valid DTMF Tones (SD=1) and count 7 (local) or 11 digit ' (long distance) phone call. If 1 digit is #, access selfcheck ' instead. Continu to check OFFHK1 and 25 sec timeout afetr each ' key. If doesn't complete number in 25 sec, get re-order tone. readkey: Alert = 0 'Reset 25sec Timer high OE 'Activate DTMF Decoder outputs Code = INA 'Store read key in tempo variable low OE NBDigit = NBDigit + 1 'Increment number of digit received z1: if IN4 = 1 then z1 'Wait for SD to drop to 0 to continue if NBDigit > 1 then timer3s if Code = 12 then selfcheck 'If 1st time press #, go selftest if Code = 1 then r1 'Limit = Local number (7 digits) goto timer3s ' or Long Distance (11 digits) r1: Limit = LONGDST ' timer3s: ' Display last digit for 3 sec. Check OFFHK1 for hang-up each 100ms. timer3s: if NBDigit < Limit then cont Page 3

4 'Display DTMF Code for Timer = 0 to 30 '30 X 100 ms = 3sec if IN8 = 0 then cpc_hangup 'Leave if hangup J1 pause 100 Code = 0 'Display "n" goto waithk2 ' cont: ' Continue to read key until reach Limit. ' Display last digit for 3 sec and continue to check OFFHK1. ' Start also 25 sec timeout after each digit if doesn't complete call. cont: shiftout DAT,CLK,msbfirst,[DTMF(Code)] c1: if IN8 = 0 then cpc_hangup 'Leave if hangup J1 if Timer = 300 OR Alert = 2500 then c2 '3sec or 25sec timeout if IN4 = 1 then readkey 'With "if IN4=0 then" in waitdtmf 'works as a Flip-Flow, see flowchart pause 10 '10ms timer click, better to read fast DTMF Timer = Timer + 1 '3sec Code display Timer Alert = Alert + 1 '25sec no action timeout goto c1 c2: if Timer <> 300 then timeout shiftout DAT,CLK,msbfirst,[134] 'Display "E", debug goto waitdtmf waithk2: if IN9 = 0 then connect 'Phone hang-up on J2? Code = 13 'Display "b"usy dira = %1111 'Start Busy Tone, A0-A3 OUTPUT outa = %0110 'Busy Tone busy: 'ON if IN8 = 0 then wk1 'Perte OFFHK1? 'On/Off 500 ms tone 'OFF shiftout DAT,CLK,msbfirst,[255] 'Blank Code = 13 'Pulse Display "b" goto busy wk1: 'stop tone goto cpc_hangup connect: dira = %1111 'Start Busy Tone, A0-A3 OUTPUT outa = %0011 'Ring Tone ring: Code = % 'Display "r"ing + DP shiftout DAT,CLK,msbfirst,[Code] 'ON Ring tone high RING_O 'ON Ring Generator Page 4

5 for Timer = 0 to 180 'On 2 sec, click 10ms if IN8 = 0 then cpc_hangup 'Perte OFFHK1? if IN9 = 1 then ring1 'Take call if off-hook pause 10 Code = 14 'Display "r"ing low RING_O for Timer = 0 to 35 'Off 4 sec, click 100ms if IN8 = 0 then cpc_hangup 'Perte OFFHK1? if IN9 = 1 then ring1 'Take call if off-hook pause 100 goto ring ring1: shiftout DAT,CLK,msbfirst,[198] 'Display "C"onnect 'Stop tone and Generator low RING_O high RLY 'Connect 'Let time to connect ring2: if IN8=1 AND IN9=1 then ring2 'Continue until both hang-up cpc_hangup: high CPC 'Active CPC function low CPC goto init ' SelfCheck Routines ' Test1 - Check inputs. Display 0=wait,1=Ring,2=OffhkJ2,3=OffhkJ3 ' Test2 - Activate RLY + CONNECT Led with ring switch ' Test3 - Activate Ring Generator + RING Led with ring switch ' Test4 - Display DTMF Key codes press on the J1 telephone ' Test5 - Test display, scan all characters ' Test6 - Exercise all Confort Tones in sequence selfcheck: Flag = 0 'Flag = 1 if press Key "#" 2X in routine select: ' Read code and select proper routine shiftout DAT,CLK,msbfirst,[127] ' Flash DP when waiting for code pause 50 shiftout DAT,CLK,msbfirst,[255] 'Blank pause 50 if IN4 = 0 then select 'Wait for valid DTMF code HIGH OE 'Activate DTMF Decoder outputs tempo = INA 'Save code LOW OE sc1: if IN4 = 1 then sc1 if tempo = 12 then end_test '# = Return if tempo > 7 then select if tempo = 1 then test1 if tempo = 2 then test2 if tempo = 3 then test3 if tempo = 4 then test4 if tempo = 5 then test5 if tempo = 6 then test6 goto select Page 5

6 end_test: return PRO7_TEL ver1_0 FINAL.BS2 test1: 'Check inputs Ring SW, OffHook detectors J1 & J2 shiftout DAT,CLK,msbfirst,[DTMF(10)] test1a: if IN7 = 1 then test1a 'Wait for RING SW shiftout DAT,CLK,msbfirst,[DTMF(1)] test1b: if IN9 = 0 then test1b 'Wait for OffHK2 sur J2 shiftout DAT,CLK,msbfirst,[DTMF(2)] test1c: if IN8 = 0 then test1c 'Wait for OffHK1 sur J1 shiftout DAT,CLK,msbfirst,[DTMF(3)] test2: 'Activate RLY + CONNECT Led with ring switch shiftout DAT,CLK,msbfirst,[DTMF(2)] 'Show 2 if IN7 = 1 then test2 HIGH RLY test2a: if IN7 = 0 then test2a LOW RLY test3: 'Activate Ring Generator + RING Led with ring switch shiftout DAT,CLK,msbfirst,[DTMF(3)] 'Show 3 if IN7 = 1 then test3 HIGH RING_O test3a: if IN7 = 0 then test3a LOW RING_O test4: 'Display DTMF Key codes press on the J1 telephone if IN4 = 0 then test4 'Wait for valid DTMF code HIGH OE 'Activate DTMF Decoder outputs if INA <> 12 then disp 'Return if press # two times if flag = 1 then end_test4 flag = 1 disp: shiftout DAT,CLK,msbfirst,[DTMF(INA)] 'Display DTMF Code LOW OE pause 100 shiftout DAT,CLK,msbfirst,[255] 'Blank display goto test4 end_test4: flag = 0 test5: 'Test display, scan all characters for Timer = 0 to 14 shiftout DAT,CLK,msbfirst,[DTMF(Timer)] pause 300 Page 6

7 shiftout DAT,CLK,msbfirst,[134] 'Show "E" pause 300 shiftout DAT,CLK,msbfirst,[198] 'Show "C"onnect pause 300 test6: 'Exercise all Confort Tones in sequence shiftout DAT,CLK,msbfirst,[DTMF(6)] 'Show 6 dira = %1111 'A0-A3 switch to OUTPUT for Timer = 0 to 9 'Scan all codes outa = Timer pause 600 dira = %0000 'A0-A3 return to INPUTS ' Display Routine Code = code to display display: shiftout DAT,CLK,msbfirst,[DTMF(Code)] return Page 7

Parallax BASIC Stamp IIsx

Parallax BASIC Stamp IIsx Parallax BASIC Stamp IIsx The Parallax BASIC Stamp IIsx module is an extended form of the BASIC Stamp II that incorporates several key features of the Scenix Semiconductor SX microcontroller and an advanced

More information

Advanced Codes Settings for the H650IVN

Advanced Codes Settings for the H650IVN Advanced Codes Settings for the H650IVN Special Notes: Voice Mail- 30 minutes of record time. When the voice mail becomes full with recorded messages, new messages will not overwrite or erase stored messages.

More information

Connevans. DeafEquipment.co.uk. This product may be purchased from Connevans Limited secure online store at

Connevans. DeafEquipment.co.uk. This product may be purchased from Connevans Limited secure online store at Connevans Solutions to improve the quality of life This product may be purchased from Connevans Limited secure online store at www.deafequipment.co.uk DeafEquipment.co.uk Solutions to improve the quality

More information

C-2000 Manual Addendum

C-2000 Manual Addendum C-2000 Manual Addendum C-2000 SF and EMSTEL Operation: This manual addendum describes two modes of operation that are independent from normal C2000 Console operation. These two modes are available only

More information

Wait 456±10ms. Unscrambled ONES in high band. Fig. 1. V.22 Connect Handshake. * Guard tones are country dependent

Wait 456±10ms. Unscrambled ONES in high band. Fig. 1. V.22 Connect Handshake. * Guard tones are country dependent COMMUICATIO ICs Application ote V.22 Call Setup with the CMX867 V.22 Call Setup with the CMX867 This document provides details on the V.22 wireline communications protocol and pointers on how the handshaking

More information

DT6I Series 2 INTERROGATABLE 6 CHANNEL TALKING DIALLER. INSTALLATION MANUAL 2 nd EDITION.

DT6I Series 2 INTERROGATABLE 6 CHANNEL TALKING DIALLER. INSTALLATION MANUAL 2 nd EDITION. INTERROGATABLE 6 CHANNEL TALKING DIALLER 2 nd EDITION. NEW FEATURES Simplified memory layout allowing for quicker and easier programming. Can now record individual messages for each of the 5 external alarm

More information

IHF 1500 Bluetooth Handsfree Kit. Troubleshooting. and. Frequently Asked Questions Guide (FAQ) Version 1.0 Dec. 1st, 2006 All Rights Reserved

IHF 1500 Bluetooth Handsfree Kit. Troubleshooting. and. Frequently Asked Questions Guide (FAQ) Version 1.0 Dec. 1st, 2006 All Rights Reserved IHF 1500 Bluetooth Handsfree Kit Troubleshooting and Frequently Asked Questions Guide (FAQ) Version 1.0 Dec. 1st, 2006 All Rights Reserved Item Symptom Solution Next-Level Solution Last Solution a.1 Can't

More information

121000TP227S USER'S MANUAL

121000TP227S USER'S MANUAL 121000TP227S USER'S MANUAL TABLE OF CONTENTS FEATURE LIST SAFETY INSTRUCTIONS INTRODUCTION LOCATION OF CONTROLS FUNCTION BUTTONS MENU SETTINGS CALLER ID INFORMATION DISPLAY MESSAGES CALLER ID SYSTEM OPERATION

More information

Sopho-S/iS3000 Series

Sopho-S/iS3000 Series Avaya Modular Messaging Configuration Note 88516 Version G (1/10) PHILIPS SOPHO (EMEA) Sopho-S/iS3000 Series SOPHO Message Application Server Return to Operator Voice Boards Call ID MinimumSoftware Release

More information

SS-10 3G USER MANUAL FIXED CELLULAR TERMINAL. DOC. NO: SS-10 3G-14 (Rev. 01) Page 1 of 20

SS-10 3G USER MANUAL FIXED CELLULAR TERMINAL. DOC. NO: SS-10 3G-14 (Rev. 01) Page 1 of 20 SS-10 3G FIXED CELLULAR TERMINAL USER MANUAL DOC. NO: SS-10 3G-14 (Rev. 01) Page 1 of 20 Revision History: Revision 01 Original document 12 August 2010 CONTENTS 1 INTRODUCTION...3 2 FEATURES...4 2.1 PHYSICAL

More information

Chapter 2. Overview of Architecture and Microcontroller-Resources

Chapter 2. Overview of Architecture and Microcontroller-Resources Chapter 2 Overview of Architecture and Microcontroller-Resources Lesson 4 Timers, Real Time Clock Interrupts and Watchdog Timer 2 Microcontroller-resources Port P1 Port P0 Port P2 PWM Timers Internal Program

More information

ALPHATECH TECHNOLOGIES s.r.o. Jeremenkova 88, Praha 4, Czech Republic LINE SWITCH DIN. User guide

ALPHATECH TECHNOLOGIES s.r.o. Jeremenkova 88, Praha 4, Czech Republic   LINE SWITCH DIN. User guide ALPHATECH TECHNOLOGIES s.r.o. Jeremenkova 88, Praha 4, Czech Republic www.alphatechtechnologies.cz LINE SWITCH DIN User guide LINE SWITCH DIN Generally The device LINESWITCH DIN contents 4 relais. You

More information

Laboratory 10. Programming a PIC Microcontroller - Part II

Laboratory 10. Programming a PIC Microcontroller - Part II Laboratory 10 Programming a PIC Microcontroller - Part II Required Components: 1 PIC16F88 18P-DIP microcontroller 1 0.1 F capacitor 3 SPST microswitches or NO buttons 4 1k resistors 1 MAN 6910 or LTD-482EC

More information

ALCATEL 2315 USER GUIDE

ALCATEL 2315 USER GUIDE Computer & Telephone Services Ltd NZ 0800 366363 support@cts.co.nz ALCATEL 2315 USER GUIDE 1 1. LAYOUT 2. INSTALLATION 3. OUTGOING CALL 3.1 Handset Mode 3.2 Handsfree Mode 4. INCOMING CALL 4.1. Handset

More information

SELECT ENTRY SYSTEMS

SELECT ENTRY SYSTEMS SELECT ENTRY SYSTEMS SAT2R Hands Free USER / INSTALLER MANUAL Select Engineered Systems, Inc. SAT 2R R SELECT ENTRY SYSTEMS User / Installer Guide SAT2R S elf Identifying A utomatic T elephone 2R Select

More information

Linksys configuration for working with Novataxe. Ver 4.3.1

Linksys configuration for working with Novataxe. Ver 4.3.1 Linksys configuration for working with Novataxe. Ver 4.3.1 Table of Contents Connection...2 Connect Network Cable...2 Detecting the Linksys GW IP address...2 Default...2 Using Telephone connected...2 Setting

More information

Connect BS2 to Phone Lines, Give the BS1 an LED Display

Connect BS2 to Phone Lines, Give the BS1 an LED Display Stamp Applications no. 19 (September 96): Connect BS2 to Phone Lines, Give the BS1 an LED Display Project double-header for the BASIC Stamps I and II by Scott Edwards THIS MONTH we re going to blast our

More information

Switchvox/Digium Hardware Interface Lab

Switchvox/Digium Hardware Interface Lab Switchvox/Digium Hardware Interface Lab Created: 08.09.10 Agenda Required Equipment Overview Digium Cards Appliance Hardware Matrix Hardware Card installation Hardware Card configuration in Switchvox Test

More information

RTU8 Compact Telemetry Outstation IOTOOL32 PRO Software. Getting Started Guide

RTU8 Compact Telemetry Outstation IOTOOL32 PRO Software. Getting Started Guide 1 RTU8 Compact Telemetry Outstation IOTOOL32 PRO Software Getting Started Guide V. 1.00 / Feb 2006 / Doc 40031 2 1. Introduction The RTU8 range of Compact Telemetry Outstations provide an efficient and

More information

Home Security System with Remote Home Automation Control

Home Security System with Remote Home Automation Control Home Security System with Remote Home Automation Control Justin Klumpp Senior Project Hardware Description Western Washington University April 24 2005 Professor Todd Morton Introduction: This document

More information

' The highest number we can use is in a PIC is 65,535. Therefore, we ' Must use small numbers for our math.

' The highest number we can use is in a PIC is 65,535. Therefore, we ' Must use small numbers for our math. '****************************************************************** '* Name : Compass.BAS * '* Author : Ed Cannady edcannady@earthlink.net * '* Notice : Copyright (c) 2003 * '* All Rights Reserved * '*

More information

ARC Modem Low Power Modem LP9624

ARC Modem Low Power Modem LP9624 Over a decade of service to the Data Commination Industry 800-926-0226 / 281-392-6333 ARC Modem Low Power Modem LP9624 After 5 seconds of inactivity, the unit automatically goes into power down mode The

More information

DTMF Device/ Relay Remote Controller

DTMF Device/ Relay Remote Controller DTMF Device/ Relay Remote Controller This high quality board is designed to get DTMF input from Internet / Mobile / Wireless receivers/ Computer for operation of 4 relays. AC 250 V AC rated Relays can

More information

HI-8683, HI ARINC INTERFACE DEVICE ARINC 429 & 561 Serial Data to 8-Bit Parallel Data APPLICATIONS DESCRIPTION. PIN CONFIGURATIONS (Top View)

HI-8683, HI ARINC INTERFACE DEVICE ARINC 429 & 561 Serial Data to 8-Bit Parallel Data APPLICATIONS DESCRIPTION. PIN CONFIGURATIONS (Top View) October 2008 DESCRIPTION HI-8683, HI-8684 ARINC INTERFACE DEVICE ARINC 429 & 561 Serial Data to 8-Bit Parallel Data APPLICATIONS The HI-8683 and HI-8684 are system components for interfacing incoming ARINC

More information

Using the HT16K33 in DVD Player Panel Applications

Using the HT16K33 in DVD Player Panel Applications Using the HT16K33 in DVD Player Panel Applications D/N:AN0363E Introduction The HT16K33 is a memory mapping and multi-function LED controller driver. The maximum display capacity in the device is 128 dots

More information

Intercom User Manual v1.1

Intercom User Manual v1.1 Intercom 102153-01 User Manual v1.1 Content of delivery - Intercom unit, art no. 102153-01 - DIN clips and screws - Intercom Manual (this document), art no. 162153-01M Art. No. 162153-01M v1.1c 2012-12-20

More information

REVISED 1/15/01. AT&T and the globe symbol are registered trademarks of AT&T Corp. licensed to Advanced American Telephones.

REVISED 1/15/01. AT&T and the globe symbol are registered trademarks of AT&T Corp. licensed to Advanced American Telephones. REVISED 1/15/01 1 USER S MANUAL Part 2 1718 Digital Answering System Fold open this manual for information about this product s installation and operation. Please also read Part 1 Important Product Information.

More information

Demystifying Character Based LCDs

Demystifying Character Based LCDs Column #31, September 1997 by Jon Williams: Demystifying Character Based LCDs There is no doubt that Scott s LCD Backpack has saved countless Stamp projects from oblivion and, in the process, has become

More information

AppKit: Using the DS1302 Trickle Charge Timekeeping Chip

AppKit: Using the DS1302 Trickle Charge Timekeeping Chip AppKit: Using the DS1302 Trickle Charge Timekeeping Chip This AppKit shows how to use the Dallas Semiconductor DS1302 Trickle Charge Timekeeping Chip with the Parallax BASIC Stamp II single-board computer

More information

ENGR PBASIC programming

ENGR PBASIC programming ENGR 1100 PBASIC programming Variables Why variables? To store values, Why store variables? To count, Why count? To control and keep track of the number of times something happens Variables Variables can

More information

MODEL NC400 MULTI-FUNCTION TOUCH-TONE DECODER INSTRUCTION MANUAL

MODEL NC400 MULTI-FUNCTION TOUCH-TONE DECODER INSTRUCTION MANUAL 15385 Carrie Drive Grass Valley, CA 95959 Office: (530) 477-8400 Tech. Support: (530) 477-8402 FAX: (530) 477-8403 Sales: (800) 874-8663 Email: tech@ norcommcorp.com Web: www.norcommcorp.com MODEL NC400

More information

2-10 Access Mode, Recall a Ports Access Mode (006) 2-8 Access Mode, Set Up a Ports Access Mode (005) 1-5 Adjusting the Receiver Port 1-5 Adjusting

2-10 Access Mode, Recall a Ports Access Mode (006) 2-8 Access Mode, Set Up a Ports Access Mode (005) 1-5 Adjusting the Receiver Port 1-5 Adjusting 2-10 Access Mode, Recall a Ports Access Mode (006) 2-8 Access Mode, Set Up a Ports Access Mode (005) 1-5 Adjusting the Receiver Port 1-5 Adjusting the RLC-3 Controller 1-5 Adjusting the Transmitter Port

More information

CORTELCO 2700 Single-Line / Multi-Feature Set. Instruction Manual

CORTELCO 2700 Single-Line / Multi-Feature Set. Instruction Manual CORTELCO 2700 Single-Line / Multi-Feature Set Instruction Manual 1 Table of Contents Why VoiceManager SM with Cortelco Phones?... 2 Cortelco 2700 Set Features... 3 Telephone Set Part Identification...

More information

This document is available at BIOS Communication version 1.4 or later. Application Notes. For STEPPII-55/56 & STEPPII-55/56-LT

This document is available at  BIOS Communication version 1.4 or later. Application Notes. For STEPPII-55/56 & STEPPII-55/56-LT This document is available at HTTP://WWW.FALCOM.DE/. BIOS Communication version 1.4 or later Application Notes For STEPPII-55/56 & STEPPII-55/56-LT Table Of Contents 1 INTRODUCTION...2 1.1 FEATURES...2

More information

REVISED 5/1/01. AT&T and the globe symbol are registered trademarks of AT&T Corp. licensed to Advanced American Telephones.

REVISED 5/1/01. AT&T and the globe symbol are registered trademarks of AT&T Corp. licensed to Advanced American Telephones. REVISED 5/1/01 1 USER S MANUAL Part 2 1818 Digital Answering System Speakerphone Fold open this manual for information about this product s installation and operation. Please also read Part 1 Important

More information

CL210A TELEPHONE & ANSWERING MACHINE

CL210A TELEPHONE & ANSWERING MACHINE CL210A TELEPHONE & ANSWERING MACHINE CONTENTS CONTENTS CONTENTS 1 INTRODUCTION 3 Unpacking the Telephone 4 DESCRIPTION 5 General Description 5 INSTALLATION 7 Setting Up 7 Wall Mounting 7 SETTINGS 8 Ringer

More information

DT1 Series 2.1 SINGLE CHANNEL TALKING DIALLER # N761. INSTALLATION MANUAL 3 rd EDITION.

DT1 Series 2.1 SINGLE CHANNEL TALKING DIALLER # N761. INSTALLATION MANUAL 3 rd EDITION. SINGLE CHANNEL TALKING DIALLER 3 rd EDITION. N761 1 2 3 4 5 6 7 8 9 0 # - SINGLE CHANNEL TALKING DIALLER TABLE OF CONTENTS PAGE PRODUCT FEATURES... 1 NEW FEATURES... 1 SPECIFICATIONS... 2 DIALLER OPERATION...

More information

USER MANUEL OF MT26 EXCHANGES

USER MANUEL OF MT26 EXCHANGES USER MANUEL OF MT26 EXCHANGES file:///c /Documents%20and%20Settings/x/Desktop/MT26%20USER%20MANUEL2.htm (1 of 67) [02.06.2004 12:08:45] INDEX USER MANUEL OF MT26 EXCHANGES PAGE Capacity Of Mt26 Exchanges

More information

Communi-Cell Communicator Nokia Version

Communi-Cell Communicator Nokia Version Communi-Cell Communicator Nokia Version Jan 2007 Instruction Manual 1 ABOUT THE COMMUNI-CELL COMMUNICATOR SYSTEM The Communi-Cell Communicator system is based on GSM SMS technology. It uses a standard

More information

Microprocessor Fundamentals. Topic 7 Timing: the Timer/Counter

Microprocessor Fundamentals. Topic 7 Timing: the Timer/Counter Microprocessor Fundamentals Topic 7 Timing: the Timer/Counter Objectives Examine the Timer/Counter Register: TCNT0 Examine the Timer/Counter Control Register: TCCR0 Write a time delay for the previous

More information

SAT SELECT ENTRY SYSTEMS. User / Installer Guide. Dec 08 SAT3 SAT3/D

SAT SELECT ENTRY SYSTEMS. User / Installer Guide. Dec 08 SAT3 SAT3/D SAT3 USER / INSTALLER GUIDE SAT 3 SELECT ENTRY SYSTEMS User / Installer Guide Dec 08 SAT3 SAT3/D SAT3 USER / INSTALLER GUIDE V1.X S elf Identifying A utomatic T elephone 3 & 3/D Select Engineered Systems,

More information

PICOBLAZE INTERRUPT INTERFACE

PICOBLAZE INTERRUPT INTERFACE CHAPTER 17 PICOBLAZE INTERRUPT INTERFACE 17.1 INTRODUCTION During normal program execution, a microcontroller polls the I/O peripherals (i.e., checks the status signals) and determines the course of action

More information

2 IDS LCD Keypad User Manual C Issued March 2009

2 IDS LCD Keypad User Manual C Issued March 2009 2 3 4 Contents 1. Introduction to the IDS LCD Digital Keypad...8 2. Arming the Control Panel...8 2.1 Away Arming...8 2.1.1 How to Away Arm...8 2.1.2 Quick Away Arm Shortcut Key...8 2.2 Stay Arming...9

More information

Property of Monitronics Inc

Property of Monitronics Inc Enter Program (Locations 034 to 410) 1. Press Program Button on main panel 2. At keypad press 9 + Program Code (9 8 7 6 5) or 1. Power down with black switch on bottom left of panel 2. Power up while holding

More information

Topics. Interfacing chips

Topics. Interfacing chips 8086 Interfacing ICs 2 Topics Interfacing chips Programmable Communication Interface PCI (8251) Programmable Interval Timer (8253) Programmable Peripheral Interfacing - PPI (8255) Programmable DMA controller

More information

PIO 8255 (cont..) M Krishna kumar MAM/M3/LU9e/V1/2004 1

PIO 8255 (cont..) M Krishna kumar MAM/M3/LU9e/V1/2004 1 PIO 8255 (cont..) The parallel input-output port chip 8255 is also called as programmable peripheral input-output port. The Intel s 8255 is designed for use with Intel s 8-bit, 16-bit and higher capability

More information

Cisco CallManager w/vg-248

Cisco CallManager w/vg-248 Avaya Modular Messaging Configuration Note 88057 Version D (5/08) Cisco CallManager w/vg-248 Cisco CallManager PC LAN CARD I P Message Application Server CPU Minimum Software See Section 3.1 COM PORT N

More information

Application Note. Motorola MC to CMX865A Migration. CML Microcircuits

Application Note. Motorola MC to CMX865A Migration. CML Microcircuits CML Microcircuits COMMUICATIO SEMICODUCTORS A/Telecom/CMX865A Migration/1 February 2007 Application ote Motorola MC145443 to CMX865A Migration 1 Introduction Many designs have used the Motorola/Freescale

More information

T-30 Skype USB Phone Gateway User Manual

T-30 Skype USB Phone Gateway User Manual T-30 Skype USB Phone Gateway User Manual 1. Skype Driver Installation Note: Cancel this procedure if you have already installed Skype software 1.1 Install Skype Put the CD from package into CD-ROM; click

More information

ADVANCED USER S GUIDE

ADVANCED USER S GUIDE ADVANCED USER S GUIDE MFC-7360 MFC-7360N MFC-7460DN MFC-7470D MFC-7860DW Not all models are available in all countries. Version A SAF/GLF User's Guides and where do I find it? Which manual? What's in it?

More information

About Transferring License Rights for. PL7 V4.5 and Unity Pro V2.3 SP1 Software

About Transferring License Rights for. PL7 V4.5 and Unity Pro V2.3 SP1 Software Page 1 of 38 Click here to access the English Cliquez ici pour accéder au Français Klicken Sie hier, um zum Deutschen zu gelangen Premete qui per accedere all' Italiano Pulse acquì para acceder al Español

More information

Telenetics dial modems are based upon Rockwell chipsets. These chipsets contain Rockwell's "AT" command set.

Telenetics dial modems are based upon Rockwell chipsets. These chipsets contain Rockwell's AT command set. AT COMMAND SET and S-REGISTERS Telenetics dial modems are based upon Rockwell chipsets. These chipsets contain Rockwell's "AT" command set. A summary of the Rockwell command set for the PE2496 and PE14.4

More information

ECE 511 Project Group 11: MP3 Boombox 12/03/2013. Carlos R Araujo Divya Chinthalapuri Leegia S Jacob Brian D Jarvis Shawn Wilkinson

ECE 511 Project Group 11: MP3 Boombox 12/03/2013. Carlos R Araujo Divya Chinthalapuri Leegia S Jacob Brian D Jarvis Shawn Wilkinson ECE 511 Project Group 11: MP3 Boombox 12/03/2013 Carlos R Araujo Divya Chinthalapuri Leegia S Jacob Brian D Jarvis Shawn Wilkinson Motivation A toy in the entertainment genre: With the use of a single

More information

THE BASIC KEYS ON YOUR PHONE

THE BASIC KEYS ON YOUR PHONE THE BASIC KEYS ON YOUR PHONE SPEAKER Press key to use as a speakerphone. The light on the key is lit when active. (Note: Make sure your Microphone Indicator is lit, or the other person won t be able to

More information

Device Logic I/O Operation

Device Logic I/O Operation Logic Control in Tesira Device Logic I/O Operation Mute Control 1 logic input per audio channel, up to 16 channels (56 ganged) Logic input 1 causes audio channel to mute. Logic input 0 causes audio channel

More information

1 The Attractions of Soft Modems

1 The Attractions of Soft Modems Application Note AN2451/D Rev. 0, 1/2003 Interfacing a Low Data Rate Soft Modem to the MCF5407 Microprocessor The traditional modem has been a box or an add-on card with a phone connection on one end and

More information

GSM PAGER VT 21. Installation manual. VARIANT plus, spol. s.r.o., U Oburky 5, TREBIC,

GSM PAGER VT 21. Installation manual. VARIANT plus, spol. s.r.o., U Oburky 5, TREBIC, Pager VT 21 manual II GSM PAGER VT 21 Installation manual VARIANT plus, spol. s.r.o., U Oburky 5, 674 01 TREBIC, www.variant.cz technik@variant.cz Date of create 16. 5. 2007 VARIANT plus s.r.o. VARIANT

More information

Area of Rescue Command Unit Installation Instructions Model AOR-8 / Model AOR-16

Area of Rescue Command Unit Installation Instructions Model AOR-8 / Model AOR-16 THIS PRODUCT MUST BE INSTALLED IN ACCORDANCE WITH THE APPLICABLE INSTALLATION CODE BY A PERSON FAMILIAR WITH THE CONSTRUCTION AND OPERATION OF THE PRODUCT AND THE HAZARDS INVOLVED CE PRODUIT DOIT ÊTRE

More information

LX8 emfone. Installation and Configuration. TVL No. 336 Issue No. 1 03/10/2011

LX8 emfone. Installation and Configuration. TVL No. 336 Issue No. 1 03/10/2011 LX8 emfone Installation and Configuration TVL No. 336 Issue No. 1 03/10/2011 Thames Valley Controls Unit 15 Manor Farm Industrial Estate Flint Flintshire CH6 5UY T: +44 (0) 1352 793222 F: +44 (0) 1352

More information

Advantages and disadvantages

Advantages and disadvantages Advantages and disadvantages Advantages Disadvantages Asynchronous transmission Simple, doesn't require synchronization of both communication sides Cheap, timing is not as critical as for synchronous transmission,

More information

Autodialer ADC Series

Autodialer ADC Series Advanced Life Safety Solutions Autodialer ADC Series Telephone Access System 3 4 5 7 8 9 0 User s Guide LT-883 Rev. 0 April 2005 Autodialer ADC Series Telephone Access System User Guide Contents Introduction...

More information

Business Lines Guide. SmartVoice

Business Lines Guide. SmartVoice Business Lines Guide SmartVoice 03/26/2017 Quick Reference CODE FUNCTION Activate 72 76 78 89 9 3 03 67 82 31 3 1 69 66 70 7 7 21 0 98 22 62 Feature Access Code Calls (Always) Busy Call Forward No Answer

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

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

PROTOCOL COMMUNICATION pag. 1/22 NEMO 96 HD/HD+ Profibus DP Interface. Application manual

PROTOCOL COMMUNICATION pag. 1/22 NEMO 96 HD/HD+ Profibus DP Interface. Application manual pag. 1/22 NEMO 96HD/HD+ Profibus DP Interface 02/06/08 NEMO 96 HD/HD+ Profibus DP Interface Application manual Table of contents 1. General description 2. Installation of NEMO 96 HD Profibus 3. User Communication

More information

Instruction Manual. CORTELCO 2720 Two-Line / Caller ID / Type II Set

Instruction Manual. CORTELCO 2720 Two-Line / Caller ID / Type II Set 1 Instruction Manual CORTELCO 2720 Two-Line / Caller ID / Type II Set Table of Contents Why VoiceManager SM with Cortelco Phones?... 2 Cortelco 2720 Telephone Set Features... 3 Telephone Set Part Identification...

More information

Visit us at AT&T and the Globe Design are trademarks of AT&T Corp. licensed to Advanced American Telephones.

Visit us at   AT&T and the Globe Design are trademarks of AT&T Corp. licensed to Advanced American Telephones. Visit us at www.telephones.att.com 2002 Advanced American Telephones. All rights reserved. AT&T and the Globe Design are trademarks of AT&T Corp. licensed to Advanced American Telephones. Printed in China.

More information

Meridian 5216 Table of Contents

Meridian 5216 Table of Contents Meridian 5216 Table of Contents The Basics Answering a call on a DN Making an outgoing call on a DN Answering an ACD call Placing a call on hold Ending a call Setting the ringing volume Setting the handset

More information

Call Forwarding Busy Line Fixed Allows you to redirect calls to another telephone number when your telephone line is busy.

Call Forwarding Busy Line Fixed Allows you to redirect calls to another telephone number when your telephone line is busy. Calling Features User Guide Call Forwarding Busy Line Fixed Allows you to redirect calls to another telephone number when your telephone line is busy. 2. Press *90 3. When you hear the interrupted dial

More information

Table of Contents. Introductory Material

Table of Contents. Introductory Material Table of Contents Introductory Material 0.1 Equipment Intoduction 1 breadboard area stimulator board 2 The Board of Education The TDS 340 oscilloscope 0.2 Getting Started with the Micro-controller The

More information

Switch Board for communicator Alarm

Switch Board for communicator Alarm Switch Board for communicator Alarm User Guide 1 Connection SwitchBoard Switch board is simply device for communication between machine room and lift cabin. 2 Wiring SwitchBoard SwitchBoard is connected

More information

ID-Manager. PC program for Windows 98 and later versions of Windows. User manual for ID Manager

ID-Manager. PC program for Windows 98 and later versions of Windows. User manual for ID Manager ID-Manager PC program for Windows 98 and later versions of Windows User manual for ID Manager Contents 1 INSTALLATION...3 1.1 MANAGER INSTALLATION...3 1.2 INSTALLATION OF USB DRIVER...3 2 ID MANAGER PROGRAM

More information

Standby. ** Onis only. * Onis Memo only SETUP

Standby. ** Onis only. * Onis Memo only SETUP Standby R PHONE BOOK Add Entry Remove Entry RINGERS Handset Base Station 7 SETUP Automatic Dialling Pause Dial Mode Network Type Recall Type Add Handset Remove Handset Register Handset Change Base Station

More information

8254 is a programmable interval timer. Which is widely used in clock driven digital circuits. with out timer there will not be proper synchronization

8254 is a programmable interval timer. Which is widely used in clock driven digital circuits. with out timer there will not be proper synchronization 8254 is a programmable interval timer. Which is widely used in clock driven digital circuits. with out timer there will not be proper synchronization between two devices. So it is very useful chip. The

More information

Specification of Vacuum Fluorescent Display NORITAKE ITRON CORPORATION Sheet 1/19 DS25404

Specification of Vacuum Fluorescent Display NORITAKE ITRON CORPORATION Sheet 1/19 DS25404 Specification of Vacuum Fluorescent Display NORITAKE ITRON CORPORATION Sheet 1/19 DS2544 Rev. Spec. No. Date(M-D-Y) Item No. P-R Aug-1-7 DS1625M 1 P-R1 Dec-1-7 2 P-R2 Dec-19-7 3 T-R Dec-26-7 4 T-R1 Jan-7-8

More information

Berkshire 600 AG. User Guide

Berkshire 600 AG. User Guide Berkshire 600 AG Thank you for choosing a Berkshire 600 AG telephone. You have selected a carefully designed telephone that incorporates the very latest technology, offering a stylish instrument, and providing

More information

INPUTS: Are 10K end of line monitored, with a response time of 300 ms. Alarm triggers SIREN, STROBE and REPORTING (depending on setup)

INPUTS: Are 10K end of line monitored, with a response time of 300 ms. Alarm triggers SIREN, STROBE and REPORTING (depending on setup) INPUTS: All inputs: Inputs 1 to 24: Tamper: Panic: Fire: Keyswitch: 16-18VAC: Are 10K end of line monitored, with a response time of 300 ms. Alarm triggers SIREN, STROBE and REPORTING (depending on setup)

More information

User s manual Line small business system with speakerphone

User s manual Line small business system with speakerphone User s manual 1040 4-Line small business system with speakerphone Congratulations on purchasing your new AT&T product. Before using this AT&T product, please read the Important product information on pages

More information

SD Model. Instruction Manual. Sound Level Meter/ Data logger. reedinstruments. www. com

SD Model. Instruction Manual. Sound Level Meter/ Data logger. reedinstruments. www. com Model SD-4023 Sound Level Meter/ Data logger Instruction Manual www com Table of Contents Features... 3 Specifications...4-5 Instrument Description... 6 Operating Instructions...7-11 Function Selection...

More information

SMS Transceiver V3 User manual

SMS Transceiver V3 User manual SMS Transceiver V3 User manual SMS Transceiver V3 - User manual ver. 1.8.3 - Fw: 3.0.7 - Sw: 1.6.2 Contents Page 1. Introduction 3 2. Connections 3 2.1 Inputs 3 2.2 Outputs 3 2.3 Power supply 3 2.4 Contacts

More information

Gigaset 5015* Quick Guide Display symbols Keys Safety precautions

Gigaset 5015* Quick Guide Display symbols Keys Safety precautions Gigaset 5015* Quick Guide 8 7 6 Keys 1 Repertory keys 2 Last number redial key 3 Recall key 4 Mute key 5 Shift key 6 Quiet key 7 Loudspeaker key (handsfree) 8 Loud key 9 Set key 10 Lock key 11 Reset key

More information

Quick start guide. TL86109 DECT line corded/cordless telephone/ answering system with

Quick start guide. TL86109 DECT line corded/cordless telephone/ answering system with Quick start guide TL86109 DECT 6.0 2-line corded/cordless telephone/ answering system with BLUETOOTH wireless technology Installation You must install and charge the handset battery before using the cordless

More information

Win Com 5 USER S MANUAL

Win Com 5 USER S MANUAL Win Com 5 USER S MANUAL 11/2003 Table of contents 1. Installation...1 2. Overview...1 3. Quick start...2 4. File menu...3 4.1 View connection log... 3 4.2 View alarms... 4 4.3 View vmachs data... 5 4.4

More information

Owners Manual: G-Tel 525(Wire-line)

Owners Manual: G-Tel 525(Wire-line) Owners Manual: G-Tel 525(Wire-line) Getting started: 1. Connect the phone s RJ11 phone jack to the local telephone line. 2. Lift hand-set, listen for dial tone, LCD will display PLEASE DIAL. 3. Dial desired

More information

8032 MCU + Soft Modules. c = rcvdata; // get the keyboard scan code

8032 MCU + Soft Modules. c = rcvdata; // get the keyboard scan code 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 { 0x25, 0x66 }, // "4" { 0x2E, 0x6D }, // "5" { 0x36, 0x7D }, // "6" { 0x3D, 0x07 }, // "7" { 0x3E, 0x7F }, // "8" { 0x46,

More information

Panasonic KX-T30810/T61610 *

Panasonic KX-T30810/T61610 * Smooth Operator Configuration Note For Smooth Operator Family of Products Octel Voice Processing Module Configuration Note 77205 Panasonic KX-T30810/T61610 * Revised 9/17/97 Panasonic 308/616 Analog Ports

More information

C-Bus Telephone Interface Training Manual V T Series

C-Bus Telephone Interface Training Manual V T Series V1.2 5100T Series Table of Contents 1.0 INTRODUCTION...4 2.0 DESCRIPTION...4 2.1 The CBTI unit comes with the following:...4 3.0 ABBREVIATIONS...5 4.0 CONTEXT DIAGRAM...5 4.1 Power supply...6 4.2 C-Bus

More information

ADVANCED USER S GUIDE

ADVANCED USER S GUIDE ADVANCED USER S GUIDE MFC-9460CDN MFC-9465CDN Not all models are available in all countries. Version 0 UK/IRE User's Guides and where do I find it? Which manual? What's in it? Where is it? Safety and Legal

More information

Configure the ATA 191

Configure the ATA 191 Telephony s, page 1 Product-Specific Configuration Parameters, page 7 Add Users to Cisco Unified page 12 Telephony s The following table lists the supported telephony features. Use Cisco Unified Communications

More information

Chapter 5 AT Commands

Chapter 5 AT Commands Chapter 5 AT Commands GENERAL This chapter describes commands used to select options and to operate the modem. Some options depend on or are restricted by the mode of operation. COMMAND CATEGORIES The

More information

Section 1 Basic System Construction. 1.1 Product Specification

Section 1 Basic System Construction. 1.1 Product Specification GX450 GSM Gateway Contents Section 1 Basic System Construction... 1 1.1 Product Specification... 1 1.2 Packing Contents and Accessories... 2 1.3 Connecting Diagram... 3 Section 2 Installation... 3 2.1

More information

Drum Machine Manual V1.2.0

Drum Machine Manual V1.2.0 Drum Machine Manual V1.2.0 Rugged Circuits and Wusik Dot Com 2011 Welcome to Beat707 Arduino Shield This board requires an Arduino Board plugged on the bottom of the Beat707, you can also use a NetDuino

More information

University of Technology

University of Technology University of Technology Lecturer: Dr. Sinan Majid Course Title: microprocessors 4 th year Lecture 13 Counters Overview Counters are important components in computers The increment or decrement by one

More information

EITF35 - Introduction to the Structured VLSI Design (Fall 2016) Interfacing Keyboard with FPGA Board. (FPGA Interfacing) Teacher: Dr.

EITF35 - Introduction to the Structured VLSI Design (Fall 2016) Interfacing Keyboard with FPGA Board. (FPGA Interfacing) Teacher: Dr. EITF35 - Introduction to the Structured VLSI Design (Fall 2016) Interfacing Keyboard with FPGA Board (FPGA Interfacing) Teacher: Dr. Liang Liu v.1.0.0 1 Abstract This document describes the basic behavior

More information

Attendant Viewer Version

Attendant Viewer Version En Attendant Viewer Version 3.0.0.3 User Manual TABLE OF CONTENTS Table of contents... 2 Install... 4 Setup... 4 License activation... 4 Make a call... 5 Generic call... 5 Call an extension... 5 Call a

More information

CHAPTER 11 INTERRUPTS PROGRAMMING

CHAPTER 11 INTERRUPTS PROGRAMMING CHAPTER 11 INTERRUPTS PROGRAMMING Interrupts vs. Polling An interrupt is an external or internal event that interrupts the microcontroller To inform it that a device needs its service A single microcontroller

More information

Delta 40. This user guide will ensure you obtain the best use of your answer machine. USER GUIDE

Delta 40. This user guide will ensure you obtain the best use of your answer machine. USER GUIDE Delta 40 Thank you for choosing a Delta 40 Answer Machine. You have selected a carefully designed answer machine that incorporates the latest technology giving 40 minutes total recording time, a unique

More information

9. PERIPHERAL CHIPS 9a

9. PERIPHERAL CHIPS 9a 9. PERIPHERAL CHIPS 9a 8255: Programmable Peripheral Interface. Draw the pin diagram of PPI 8255. Ans. The pin diagram of 8255 is shown in Fig. 9a. PA 3 4 PA 4 PA2 2 39 PA 5 PA 3 38 PA 6 PA 4 37 PA7 RD

More information

Designing Your Own Soft Modules

Designing Your Own Soft Modules 4 Objectives Learn how to create circuit schematics with OrCAD Learn how to export a circuit from OrCAD as an EDIF netlist. Learn how to import an EDIF netlist into the FastChip library as a new soft module.

More information

Interactive GSM-control GSM-RELAY PROBYTE OY

Interactive GSM-control GSM-RELAY PROBYTE OY Interactive GSM-control GSM-RELAY PROBYTE OY General PROBYTE GSM-control is a real time and interactive GSM-control- and measuring device, which allows user remotely control all the electrical appliances

More information