Hello Josh,
I couldn't run that script. Now I set circuit in RP2 to get TTL from Bpod. I connect BNC out 1 Bpod to BNC in RP2. I wrote this script bu didnt consider TTL to only open and close Valve:
function Airpuf
global BpodSystem
MaxTrials = 5;
for currentTrial = 1:MaxTrials
sma = NewStateMachine;
sma = AddState(sma, 'Name', 'Openvalve', ...
'Timer',3,...
'StateChangeConditions', {'Tup', 'Closevalve'},...
'OutputActions', {'Valve1',1});
sma = AddState(sma, 'Name', 'Closevalve', ...
'Timer', 2,...
'StateChangeConditions', {'Tup', 'exit'},...
'OutputActions', {'Valve1',0});
SendStateMatrix(sma);
RawEvents = RunStateMatrix;
end
end
But when I run this script RP2 also generate sound for each iteration. Could you please advise me about that.
Best Regards