我正在使用这里的一些代码从linux笔记本电脑上的usb鼠标中获取x,y deltas。它是一个获取增量的脚本,并使用matplotlib绘制它。但主要的问题是,我不能在不杀死整个脚本的情况下停止测量。我仍然是编程方面的初学者,所以任何帮助都会很好。
我的代码:
import struct
import matplotlib.pyplot as plt
import numpy as np
import time
from drawnow import *
file = open( "/dev/input/mouse2", "rb" );
test = []
plt.ion()
def makeFig():
plt.plot(test)
#plt.show()
def getMouseEvent():
buf = file.read(3);
button = ord( buf[0] );
bLeft = button & 0x1;
x,y = struct.unpack( "bb", buf[1:] )
print ("x: %d, y: %d\n" % (x, y) )
return x,y
while True:
test.append(getMouseEvent())
drawnow(makeFig)
file.close();
答案 0 :(得分:0)
您必须决定您希望脚本停止的条件。例如,这将在5秒后停止:
start_time = time.time()
elapsed = 0
while elapsed < 5:
elapsed = time.time() - start_time:
test.append(getMouseEvent())
drawnow(makeFig)
如果您希望在100次测量后停止:
count = 0
while count < 100:
count += 1
test.append(getMouseEvent())
time.sleep(1) # <-- optional
drawnow(makeFig)