hello!
I’ve been working on getting Matlab to talk to my SSC32, and while progress has been made on the matlab end of things, I’ve hit a dead end as far as what to send through my serial connection to the board. I am pretty sure I have established connection to the SSC32 (when I run my program and have it print messages to the board my green l.e.d. goes out… ).
here is what I have currently in matlab
ssc32 = serial(‘COM3’, ‘BaudRate’, 115200); <------ side note: do I need the Terminator and CR/LF stuff? If so could anyone help me understand what this is?
fopen(ssc32)
fprintf(ssc32, ‘MESSAGE’)
fclose(ssc32)
So, basically what do I replace the word MESSAGE with to set multiple servo positions for a certain amount of time? Where do I find documentation on what to print and whatnot?
Thanks a bunch!