Important changes to repositories hosted on mbed.com
Mbed hosted mercurial repositories are deprecated and are due to be permanently deleted in July 2026.
To keep a copy of this software download the repository Zip archive or clone locally using Mercurial.
It is also possible to export all your personal repositories from the account settings page.
Dependencies: mbed
main.cpp
- Committer:
- rossatmsoe
- Date:
- 2017-11-06
- Revision:
- 0:ab5b6bca3e25
- Child:
- 1:e9cb1aec787c
File content as of revision 0:ab5b6bca3e25:
#include "mbed.h"
/* MATLAB can send data over to the Nucleo to control its operation or
to output data via AnalogOut, etc. In this case, MATLAB sends a number and the
onboard LED is set to blink that many times in 2 seconds.
*/
PwmOut light(LED1);
Serial matlab(USBTX,USBRX);
int main() {
int x;
light=0.5; // turn on light
while(1){
matlab.scanf("%d",&x); // get number from MATLAB
light.period(2.0/x); // set new period for blinking
}
}