These days, we all order things online. Yet no matter how automated the process of Amazon is, when talking about 2018, we still have humans delivering the packages to our doorsteps. Sometimes, you want them to know a few things about where to leave the parcel. Now that we are becoming more and more automated, gone are the days when you might leave a note outside your gate. It's time to make something really interesting with our technology. To do that, we hardly need to do anything serious. All we need to do is to wire up the components as shown in the following diagram:
The PIR sensor must be placed so that it gives a logic high whenever there is movement around the gate.
Once that is done, go ahead and upload the following code:
import RPi.GPIO as GPIO
import time
Import os
GPIO.setmode(GPIO.BCM)
PIR = 13
GPIO.setup(PIR,GPIO.IN)
while True:
if GPIO.input(PIR) == 1 :
os.system('echo "Hello, welcome to my house"|festival --tts ')
time.sleep(0.2)
os.system('echo "If you are a delivery agent then please leave the package here"|festival --tts ')
time.sleep(0.2)
os.system('echo "If you are a guest then I'm sorry I have to leave I will be back after 7pm"|festival --tts ')
time.sleep(0.2)
os.system('echo "also Kindly don't step over the grass, its freshly grown and needs some time"|festival --tts ')
time.sleep(1)
os.system('echo "Thank you !"|festival --tts ')
Now what we have done is very simple. As soon as the PIR sensor gives a logic high, a certain instruction is spoken. There is no need of an explanation. You can refer to the previous code if you need any clarification.