All pastes #329875 Raw Edit

Mine

public text v1 · immutable
#329875 ·published 2007-01-27 02:56 UTC
rendered paste body
# save as rand.py
import hal, random, time
comp = hal.component("rand")
comp.newpin("out", hal.HAL_FLOAT, hal.HAL_OUT)
comp.ready()

try:
    while 1:
        comp['out'] = random.uniform()
        time.sleep(random.uniform() * .1)
except KeyboardInterrupt: pass