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:
- tjsken
- Date:
- 2015-03-13
- Revision:
- 0:3ba635798440
File content as of revision 0:3ba635798440:
#include "mbed.h"
#include "seg7_LED.h"
seg7_LED seg7led(p24, p23, p18, p19, p20, p22, p21);
int main(){
while(1){
for(int i = 0; i < 10; i++){
seg7led.disp_num(i);
wait(0.5);
seg7led.disp_num(i);
wait(0.5);
}
}
return 0;
}