提问人:De Funct 提问时间:5/6/2023 更新时间:5/6/2023 访问量:31
Python 子进程是否允许从 Python 文件中执行 shell 变量?
Does Python subprocess allow for executing shell variables from within the Python file?
问:
我有一些消息来源。在源代码中,我需要使用 shell 变量来促进在 python 脚本期间将几个 GPIO 引脚更改为输入。
GPIO引脚默认输出,我只希望它们在源的特定时间间隔内输入......
单独使用 python 是否可行,或者应该使用 shell 变量使其更容易?
例如。。。我使用:
from pathlib import Path
from time import sleep
Sense = Path('/sys/class/gpio/gpio60/value')
sense.write_text('low')
sleep(1)
sense.write_text('high')
sleep(2)
这将使用有问题的GPIO引脚作为输出,然后关闭一秒钟,然后打开两秒钟,然后停止事件序列。
有没有办法 w/ pathlib.使输出成为输入的路径?
答: 暂无答案
评论