Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations SkipVought on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Modem AutoAnswer

Status
Not open for further replies.

roydiculous

Technical User
Mar 25, 2004
12
0
0
US
I don't know if this is possible but is there a program that can have my modem automatically pick up the phone when it is receiving a call and send the digit 9 beep.

ie:

Manually I put:

AT D9,9,9,9,9,9,9,9

But I want it to answer with 9s instead of try to connect as a modem.
 
There is no program that I know of that can do this, but there are several programs with scripting languages that will allow you to do this.

Basically you want to wait for "RING" and type:

ATDT9,9,9,9,9,9,9,9;

and then press Enter. The semicolon at the end of the line tells the modem to return to command mode at the end of the command rather than entering data mode. You also need some way to determine that the call has ended in order to send the "ATH" to hang up the phone line.

Better yet, if you have a voice modem, you could use that to receive and send without concerning yourself with going into data mode.

As far as software goes, if you are a Windows user the only software that I could recommend would be Procomm, which uses the ASPECT scripting language that is very powerful. It is also pretty expensive for simple terminal emulation software.

If you are willing use Linux, you can use the SEND/EXPECT, or chat or numerous other methods to process the incoming strings and produce outgoing responses.


pansophic
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top