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.
main.cpp
- Committer:
- Jamess
- Date:
- 2015-08-05
- Revision:
- 0:978160d93f83
File content as of revision 0:978160d93f83:
#include "mbed.h" #include "Signal.h" Serial pc(USBTX,USBRX); int main() { Signal Acc[10]; for(int x=0;x<10;x++){ Acc[x].setValue(x); } for(int y=0;y<10;y++){ pc.printf("%i",Acc[y].getValue()); } }