我使用2个覆盆子pi通过433mhz rf发送器和reciver发送数据,它在命令行中工作
在reciver上我键入sudo RFSniffer 在发射器上我键入sudo sendcode(12345)
reciver将在终端中显示收到的代码,
但是,我需要一个能够对所收到的代码采取行动的程序,
当触发不同的输入时,我可以使用子进程模块从发送器上的python发送代码但是如何在python中使用被回收的代码?
答案 0 :(得分:0)
您可以创建一个在命令行上接受输入的python程序。使用bash脚本来管道(https://unix.stackexchange.com/questions/30759/whats-a-good-example-of-piping-commands-together)接收器的输出到python程序。