raspberry script
This commit is contained in:
parent
576272face
commit
5562af89f2
|
@ -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
|
Binary file not shown.
Binary file not shown.
Binary file not shown.
|
@ -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()
|
||||||
|
|
Loading…
Reference in New Issue