Hello!
tl;dr - display wakes/sleeps repeatedly.
Display sleeps fine, but once PIR Sensor is triggered, the monitor wakes, then immediately sleeps, then wakes, then sleeps, and so on, until I remove myself as a trigger to the PIR Sensor.
FWIW - I utilized a tutorial for setting up the PIR Sensor and testing it via python script to see if it is even working. Here’s the script:
from gpiozero import MotionSensor
pir = MotionSensor(4)
while True:
if pir.motion_detected:
print("Motion detected!")
It works, but it continues to print over and over (and so on) until I remove the trigger for the PIR Sensor (much like how the display wakes and sleeps repeatedly).
I’m honestly not sure if it is supposed to print that output over and over (like mine does), or not. But I feel like the two might be connected.
Any pointers here would be much obliged. Thank you!