Skip to content

Commit 13fcf0c

Browse files
committed
updated stimulus_process.py to match new release
1 parent dc34c18 commit 13fcf0c

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

experiments/custom/stimulus_process.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -77,19 +77,19 @@ def get_start_time(self):
7777
def example_protocol_run(condition_q: mp.Queue):
7878
current_trial = None
7979
# dmod_device = DigitalModDevice('Dev1/PFI0')
80-
led_machine = DigitalArduinoDevice("COM5")
80+
#led_machine = DigitalArduinoDevice("COM5")
8181
while True:
8282
# if no protocol is selected, running default picture (background)
8383
if condition_q.full():
8484
current_trial = condition_q.get()
8585
if current_trial is not None:
8686
show_visual_stim_img(type=current_trial, name="DlStream")
8787
# dmod_device.toggle()
88-
led_machine.turn_on()
88+
#led_machine.turn_on()
8989
else:
9090
show_visual_stim_img(name="DlStream")
9191
# dmod_device.turn_off()
92-
led_machine.turn_off()
92+
#led_machine.turn_off()
9393

9494
if cv2.waitKey(1) & 0xFF == ord("q"):
9595
break

0 commit comments

Comments
 (0)