-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsercomm.py
64 lines (56 loc) · 1.6 KB
/
sercomm.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
#!/usr/bin/env python
# -*- coding: utf-8 -*-
import serial
import time
import Queue
import thread
class Sercomm(object):
def __init__(self):
try:
self.ser = serial.Serial(
port='/dev/ttyUSB0',
baudrate=19200,
parity=serial.PARITY_NONE,
stopbits=serial.STOPBITS_ONE,
bytesize=serial.EIGHTBITS)
except:
print "Fehler mit der Seriellen Schnittstelle!\nBitte Daten in Datei sercomm.py ueberpruefen!"
exit()
self.warteschlange = Queue.Queue()
self.lock = thread.allocate_lock()
def schreiben(self,befehl):
self.ser.write(befehl)
def lesen(self,befehl):
self.lock.acquire()
self.warteschlange.put(befehl, True)
if self.warteschlange.empty() == True:
print "Warteschlange leer, gehe zurück!"
return
self.ser.write(self.warteschlange.get(True))
out = ''
check = ''
time.sleep(0.1)
while self.ser.inWaiting() > 0:
check= self.ser.read(1)
out += check
if check == ";":
break
self.warteschlange.task_done()
self.lock.release()
if out == '':
out = 'Leere Antwort'
return out
def schliessen(self):
self.ser.close()
def main():
doit = Sercomm()
# print ("Schalte 1 Band hoch")
# doit.schreiben("BU;")
# time.sleep(3)
seq = raw_input("Bitte Befehl eingeben zum Auslesen\n")
# print ("Lese aktuelle Frequenz VFO A aus")
print "Eingegebener Befehl: "+seq+"\n"
print "Antwort des Transceivers: "+doit.lesen(seq)+"\n"
doit.schliessen()
if __name__ == "__main__":
main()