Saturday 18 August 2018

audio - How to build a telephone answering machine with caller id



I'm brand new to electronics. I'm interested in building my own telephone answering machine with caller id receiver from scratch as a learning project. How would you suggest I get started?



Answer




The operation of such a device is really quite simple. Take a look at the description of ATA cards and the Asterisk Project.


You need three components: A telephone interface. A computer with some DSP like functionality, this might be some sort of microcontroller with fixed point math ability. A user interface, a combination of software and hardware to interface to the above.


The caller id (CID) functions differently in each country. But, generally it is a low baudrate FSK (frequency shift keying) signal sent between the first and second ring. You don't hear it simply because the receiving phone is on hook, however it can be recovered with the correct electronics.


Your DSP can demodulate the FSK into baseband and find the CID signal within that.


Technically in most countries, interfacing any electronics to the telepone network is against the rules, though there is little that can be done to detect you are playing with the phone system.


WARNING: During ring-in there is >50V AC present on the line. If you touch it it really hurts (I've been there) and can be dangerous.


There are many examples of telephone interface circuits of varying complexity available on the internet.


No comments:

Post a Comment

arduino - Can I use TI's cc2541 BLE as micro controller to perform operations/ processing instead of ATmega328P AU to save cost?

I am using arduino pro mini (which contains Atmega328p AU ) along with cc2541(HM-10) to process and transfer data over BLE to smartphone. I...