Hi everyone! Newbie here, I am using the below script to generate a push notification when I get a delivery at home / someone walks into my garden, using input from some outdoor infrared beams.
This has been working really well with code running on a Raspberry Pi, but I wanted to expand the script to also switch on some smart lights. I am doing this with requests.post via IFTT, but am trying to find a solution to only action this command when it is dark, between sunset and sunrise.
I have done some searching and found Projects like Astral, but with my limited coding knowledge I am a little confused how I would use Astral to do this, so thought I might try to source current time via datetime, specify sunset and sunrise times manually and only action the post request if the event time falls between these times. Would really appreciate any pointers about how I can integrate this.
This has been working really well with code running on a Raspberry Pi, but I wanted to expand the script to also switch on some smart lights. I am doing this with requests.post via IFTT, but am trying to find a solution to only action this command when it is dark, between sunset and sunrise.
I have done some searching and found Projects like Astral, but with my limited coding knowledge I am a little confused how I would use Astral to do this, so thought I might try to source current time via datetime, specify sunset and sunrise times manually and only action the post request if the event time falls between these times. Would really appreciate any pointers about how I can integrate this.
from pushbullet import Pushbullet import RPi.GPIO as GPIO import requests from time import sleep from gpiozero import Button button = Button(2) pb = Pushbullet("my_account_api") pbv = Pushbullet("my_account_api_1") print(pb.devices) print(pbv.devices) while True: if button.is_pressed: print("Detect") push = pb.push_note("IR Detect", "Beams Detect") push = pbv.push_note("IR Detect", "Beams Detect") requests.post('https://maker.ifttt.com/trigger/beamstrigger/json/with/key/xxxxx') sleep(21) else: print("Released")