# WHAT IT DO...
- Open door anywhere from the world
- Auto-Timer #shedule call #Open Door
# WORKING:
CIRCUIT-01
Transmitter circuit which is the output of the Arduino(UNO)
the Variable resistance is conected to the transmitter for specific resistance of the transmitter
the transmitter is switched on (default) so to send a signal to the receiver as it gets the specific current
the transmitter is switched on (default) so to send signal to the reciver as it get the specific current
Current required for the transmitter is provided by the Arduino(UNO)
interacting with UNO:-
int
transmitter = 13;
int
vs = 9; // vibration
sensor
void
setup()
{
pinMode(transmitter, OUTPUT);
pinMode(vs, INPUT);
Serial.begin(9600);
}
void
loop()
{
long
measurement = vibration();
delay(50);
Serial.println(measurement);
if (measurement > 50)
{
digitalWrite(transmitter, HIGH);
}
else {
digitalWrite(transmitter, LOW);
}
long
vibration()
{
long
measurement = pulseIn(vs, HIGH); // wait
for the pin to get HIGH and returns measurement
return measurement;
}
CIRCUIT-02
Gear operate the door [Closing/opening] operated by the radio receiver circuit