Python Forum
Insert command line in script
Thread Rating:
  • 0 Vote(s) - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
Insert command line in script
#1
Hello,

I know very little about Python programming, so be gentle with me please

I have a script for detecting a PIR movement on a Raspberry Pi 3b.

from gpiozero import MotionSensor
import os
import RPi.GPIO as GPIO
import time
pir = MotionSensor(21)
while True:
        pir.wait_for_motion()
        print("You moved")
        pir.wait_for_no_motion()
I want to turn a monitor on with the command 'DISPLAY=:0.0 xrandr --output HDMI-1 --auto --rotate left' if movement is detected and off with the command 'DISPLAY=:0.0 xrandr --output HDMI-1 --off' after, say, 5 minutes.

I would be grateful if anyone can tell me how to run these commands from within a Python script

Thanks in advance
Reply
#2
"I want to turn a monitor on with the command"

If you mean enter it on the command line, use subprocess.run
Reply
#3
That is the command line that I want to run from within a python script
Reply
#4
(Mar-24-2025, 08:49 AM)lif Wrote: if movement is detected and off with the command 'DISPLAY=:0.0 xrandr --output HDMI-1 --off' after, say, 5 minutes.
As mention use subprocess and is better to use eg schedule when you need to wait 5-min.
import schedule
import time
import subprocess
from gpiozero import MotionSensor

pir = MotionSensor(21)

def turn_monitor_on():
    subprocess.run("DISPLAY=:0.0 xrandr --output HDMI-1 --auto --rotate left", shell=True)
    print("Monitor turned on.")

def turn_monitor_off():
    subprocess.run("DISPLAY=:0.0 xrandr --output HDMI-1 --off", shell=True)
    print("Monitor turned off.")

def schedule_monitor_off():
    schedule.clear()
    schedule.every(5).minutes.do(turn_monitor_off)
    print("Monitor off scheduled in 5 minutes.")

while True:
    pir.wait_for_motion()
    turn_monitor_on()
    schedule_monitor_off()
    # Check periodically for new motion and run scheduled jobs.
    # If new motion is detected, break out to restart the cycle.
    while not pir.motion_detected:
        schedule.run_pending()
        time.sleep(1)
lif likes this post
Reply
#5
Thank you very much, that works perfectly apart from running a second time after I ctrl z to stop the script running.


(Mar-24-2025, 04:23 PM)snippsat Wrote:
(Mar-24-2025, 08:49 AM)lif Wrote: if movement is detected and off with the command 'DISPLAY=:0.0 xrandr --output HDMI-1 --off' after, say, 5 minutes.
As mention use subprocess and is better to use eg schedule when you need to wait 5-min.
import schedule
import time
import subprocess
from gpiozero import MotionSensor

pir = MotionSensor(21)

def turn_monitor_on():
    subprocess.run("DISPLAY=:0.0 xrandr --output HDMI-1 --auto --rotate left", shell=True)
    print("Monitor turned on.")

def turn_monitor_off():
    subprocess.run("DISPLAY=:0.0 xrandr --output HDMI-1 --off", shell=True)
    print("Monitor turned off.")

def schedule_monitor_off():
    schedule.clear()
    schedule.every(5).minutes.do(turn_monitor_off)
    print("Monitor off scheduled in 5 minutes.")

while True:
    pir.wait_for_motion()
    turn_monitor_on()
    schedule_monitor_off()
    # Check periodically for new motion and run scheduled jobs.
    # If new motion is detected, break out to restart the cycle.
    while not pir.motion_detected:
        schedule.run_pending()
        time.sleep(1)
Reply


Possibly Related Threads…
Thread Author Replies Views Last Post
  Simplest way to run external command line app with parameters? Winfried 2 1,153 Aug-19-2024, 03:11 PM
Last Post: snippsat
  Is possible to run the python command to call python script on linux? cuten222 6 2,284 Jan-30-2024, 09:05 PM
Last Post: DeaD_EyE
  Python Serial: How to read the complete line to insert to MySQL? sylar 1 1,534 Mar-21-2023, 10:06 PM
Last Post: deanhystad
  python insert blank line in logger mg24 1 4,869 Nov-02-2022, 08:36 AM
Last Post: snippsat
  Command line argument issue space issue mg24 5 2,285 Oct-26-2022, 11:05 PM
Last Post: Yoriz
  accept command line argument mg24 5 2,274 Sep-27-2022, 05:58 PM
Last Post: snippsat
  Help, a script line is skipped kucingkembar 5 2,362 Dec-29-2021, 07:34 PM
Last Post: deanhystad
  Accessing varying command line arguements Rakshan 3 2,919 Jul-28-2021, 03:18 PM
Last Post: snippsat
  Run CMD Command In Python Script shantanu97 2 7,367 May-13-2021, 08:08 AM
Last Post: Gribouillis
  How to input & output parameters from command line argument shantanu97 1 3,526 Apr-13-2021, 02:12 PM
Last Post: Larz60+

Forum Jump:

User Panel Messages

Announcements
Announcement #1 8/1/2020
Announcement #2 8/2/2020
Announcement #3 8/6/2020