All these files were removed since accidental commit, revert and merge in 2.8.ea31f0ac3b+0a4e170c28+11f9a23a28+7b27b10fa6
8 lines
153 B
Python
8 lines
153 B
Python
#!/usr/bin/python
|
|
import aud, time
|
|
device = aud.Device()
|
|
sine = aud.Sound.sine(440)
|
|
square = sine.threshold()
|
|
handle = device.play(square)
|
|
time.sleep(3)
|