Download as pdf or txt
Download as pdf or txt
You are on page 1of 4

Uka, Johannie S.

BS EEng 5A

Telephone Communication System

Description:

Telephone is an instrument designed for the simultaneous transmission and


reception of the human voice. It is simple to operate, and offers its users an immediate,
personal type of communication.

Working Components:

- Power source
- Switch hook
- Dialer
- Ringer
- Transmitter
- Receiver
- Anti-sidetone circuit
- Power cord
- Modem/Router
- Ethernet Cable
- Telephone Cord
- Cable Splitter
- Wrench
- Cable Clips
- Coaxial Cable
How to set up the service:

- Locate the Network Interface Device box (NID box is where the
telephone wire from the phone company terminates, and also where the
phone wiring going into the house will connect to your landline phone)
- Open the box. Inside, you will notice modular plugs and screws.
- Unplug the phone company line for safety precaution before beginning
your wiring project. Make sure you plug it back once you have completed
the wiring
- Install your telephone jack.
- Run the telephone wire back to your Network Interface Device Box.
- Attach the telephone jack to your Network Interface Device Box.
- Plug the company line back in.
- Plug the telephone wire into the telephone jack.
- Attach the other end of the wire to your landline receiver.
- Attach your landline’s receiver to your router or modem. Use an ethernet
cable to connect the internet port on your receiver to any free port on the
back of your router.
- Plug your receiver into a power outlet.
- Test your phone.

Phone Call Simulation Sample using TinkerCAD:


#include <LiquidCrystal.h>

LiquidCrystal lcd(12, 11, 7, 6, 5, 4);

int led = 9;

void setup()

pinMode(9, OUTPUT);

lcd.begin(16, 2);

lcd.print("ENGINEERS GARAGE");

lcd.setCursor(0, 1);

lcd.print(" GSM CALLING ");

pinMode(led, OUTPUT);

Serial.begin(9600);

delay(100);

Serial.print("ATD09895941988;\n\r");

void loop()

digitalWrite(led, HIGH);

delay(1000);

digitalWrite(led, LOW);

delay(1000);

You might also like