MATLAB: Send serially 1s from computer.

data acquisitionserial communication interface

i m trying to do something in matlab ,where whenever the result is true serially 1 should be sent from the serial port.what should i do for this.plss help
thanks

Best Answer

while ResultIsTrue()
fwrite(SerialPort, char(1));
end
Related Question