add cfg files from wip

Change-Id: I71b647c269c10eac7241970377d6f812636d082f
This commit is contained in:
2024-01-29 10:45:42 +01:00
parent 91d0f2c635
commit f1115c937b
4 changed files with 134 additions and 4 deletions

27
cfg/drums_cfg.py Normal file
View File

@@ -0,0 +1,27 @@
Node('relais.psi.ch',
'relais test',
'tcp://5000',
)
Mod('rl',
'frappy_psi.ionopimax.DigitalOutput',
'left relais',
addr = 'o1',
value = 0, # start with relais off
)
Mod('rr',
'frappy_psi.ionopimax.DigitalOutput',
'right relais',
addr = 'o2',
value = 0, # start with relais off
)
Mod('drummer',
'frappy_psi.drums.Drums',
'drummer',
target = 150,
pattern='l2L2rl1R1L2',
left='rl',
right='rr',
)