def get_stim_sequence(self): # This is the stimuli = [] for i in range(5): stimuli.append(Pause(duration=4)) stimuli.append(ArduinoCommStimulus(duration=0)) return stimuli
def get_stim_sequence(self): stimuli = [ Pause(duration=self.period_sec - self.flash_duration), FullFieldVisualStimulus(duration=self.flash_duration, color=(255, 255, 255)), ] return stimuli
def get_stim_sequence(self): stimuli = [ Pause(duration=self.params["period_sec"] - self.params["flash_duration"]), FullFieldVisualStimulus(duration=self.params["flash_duration"], color=(255, 255, 255)), ] return stimuli
def get_stim_sequence(self): # This is the method we need to write to create a new stimulus list. # In this case, the protocol is simply a 1 second flash on the entire screen # after a pause of 4 seconds: stimuli = [ Pause(duration=4.), FullFieldVisualStimulus(duration=1., color=(255, 255, 255)), ] return stimuli
def get_stim_sequence(self): return [Pause(duration=4.0)]