Skip to content

giampy1969/legacy-matlab-and-simulink-support-for-arduino

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

4 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

legacy-matlab-and-simulink-support-for-arduino

MATLAB® class and Simulink® blocks for communicating with an Arduino board

View legacy-matlab-and-simulink-support-for-arduino on File Exchange

NOTE: This solution (formerly known as "Arduino IO Package") is no longer supported. It is recommended that you use Arduino support packages that are developed and supported by MathWorks:

Use this legacy support only if one of the following is true:

  • You are using MATLAB R2013b or earlier (but not earlier than R2011a).
  • You are using unsupported Arduino clones which won't work with the official packages (e.g. ChipKit32)

Sample usage:

%-- connect to the board a = arduino('COM9')

%-- specify pin mode a.pinMode(4,'input'); a.pinMode(13,'output');

%-- digital i/o a.digitalRead(4) % read pin 4 a.digitalWrite(13,0) % write 0 to pin 13

%-- analog i/o a.analogRead(5) % read analog pin 5 a.analogWrite(9, 155) % write 155 to analog pin 9

%-- serial port a.serial % get serial port a.flush; % flushes PC's input buffer a.roundTrip(42) % sends 42 to the arduino and back

%-- servos a.servoAttach(9); % attach servo on pin #9 a.servoWrite(9,100); % rotates servo on pin #9 to 100 degrees val=a.servoRead(9); % reads angle from servo on pin #9 a.servoDetach(9); % detach servo from pin #9

%-- encoders a.encoderAttach(0,3,2) % attach encoder #0 on pins 3 (pin A) and 2 (pin B) a.encoderRead(0) % read position a.encoderReset(0) % reset encoder 0 a.encoderStatus; % get status of all three encoders a.encoderDebounce(0,12) % sets debounce delay to 12 (~1.2ms) a.encoderDetach(0); % detach encoder #0

%-- adafruit motor shield (with AFMotor library) a.motorRun(4, 'forward') % run motor forward a.stepperStep(1, 'forward', 'double', 100); % move stepper motor

%-- close session delete(a)

Some slides and examples related to this package can be found here: https://www.mathworks.com/matlabcentral/fileexchange/27843

Finally, more detailed info about use and troubleshooting can be found in the readme.txt file contained in this submission.

About

MATLAB class and Simulink blocks for communicating with an Arduino board

Resources

License

Security policy

Stars

Watchers

Forks

Packages

No packages published