All pastes #848190 Raw Edit

Untitled

public text v1 · immutable
#848190 ·published 2008-01-09 15:42 UTC
rendered paste body
import emc, time
s = emc.stat()

lv = None
while 1:
    s.poll()
    v = s.current_vel
    if v < 0 and v != lv:
        print v
        lv = v
    time.sleep(.001)