raspberry script

This commit is contained in:
interfisch 2020-01-23 00:14:14 +01:00
parent 576272face
commit 5562af89f2
5 changed files with 59 additions and 0 deletions

26
.gitignore vendored Normal file
View File

@ -0,0 +1,26 @@
# For PCBs designed using KiCad: http://www.kicad-pcb.org/
# Format documentation: http://kicad-pcb.org/help/file-formats/
# Temporary files
*.000
*.bak
*.bck
*.kicad_pcb-bak
*.sch-bak
*~
_autosave-*
*.tmp
*-save.pro
*-save.kicad_pcb
fp-info-cache
# Netlist files (exported from Eeschema)
*.net
# Autorouter files (exported from Pcbnew)
*.dsn
*.ses
# Exported BOM files
*.xml
*.csv

BIN
Pi/ogg/A3v16.ogg Normal file

Binary file not shown.

BIN
Pi/ogg/C3v16.ogg Normal file

Binary file not shown.

BIN
Pi/ogg/F#3v16.ogg Normal file

Binary file not shown.

33
Pi/s.py Normal file
View File

@ -0,0 +1,33 @@
#!/usr/bin/python3
import serial
import pygame
pygame.mixer.pre_init(buffer=32)
pygame.init()
pygame.mixer.quit()
pygame.mixer.init(buffer=32)
SoundC = pygame.mixer.Sound('ogg/C3v16.ogg')
SoundA = pygame.mixer.Sound('ogg/A3v16.ogg')
SoundFF = pygame.mixer.Sound('ogg/F#3v16.ogg')
# port = serial.Serial("/dev/ttyS0", baudrate=115200, timeout=.001)
port = serial.Serial("/dev/ttyS0", baudrate=115200)
while True:
# rcv decodieren
rcv = port.read()
if rcv[0] & ( 1 << 1 ) :
SoundC.stop()
SoundC.play()
else:
SoundC.stop()
if rcv[0] & ( 1 << 2 ) :
SoundA.stop()
SoundA.play()
else:
SoundA.stop()