Simultan korrigiert

This commit is contained in:
starcalc 2020-06-29 22:41:53 +01:00
parent 142c62852c
commit a4307e767a
1 changed files with 13 additions and 7 deletions

20
Pi/s.py Normal file → Executable file
View File

@ -14,24 +14,30 @@ SoundFF = pygame.mixer.Sound('ogg/F#3v16.ogg')
# port = serial.Serial("/dev/ttyS0", baudrate=115200, timeout=.001)
port = serial.Serial("/dev/ttyS0", baudrate=115200)
# port = serial.Serial("/dev/ttyAMA0", baudrate=115200)
SoundA.play();
oldrcv = port.read()
while True:
# rcv decodieren
rcv = port.read()
# Zustand merken, und nur "neu" starten, wenn sich etwas von 0 auf 1 veraendert hat.
if rcv[0] & ( 1 << 1 ) :
print("1");
SoundC.stop()
SoundC.play()
if not oldrcv[0] & ( 1 << 1 ):
print("1");
SoundC.stop()
SoundC.play()
else:
SoundC.stop()
rcvstate0 = False
if rcv[0] & ( 1 << 0 ) :
print("0");
SoundA.stop()
SoundA.play()
if not oldrcv[0] & ( 1 << 0 ):
print("0");
SoundA.stop()
SoundA.play()
else:
SoundA.stop()
oldrcv = rcv