You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
13 lines
178 B
Python
13 lines
178 B
Python
8 years ago
|
#!/usr/bin/env python
|
||
|
|
||
|
import os, random, time
|
||
|
|
||
|
while True:
|
||
|
freq = str(random.randint(0,10)*110)
|
||
|
print(freq)
|
||
|
os.system('echo "'+freq+';" | pdsend 3000')
|
||
|
time.sleep(0.25)
|
||
|
|
||
|
|
||
|
|