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.
Diff: main.cpp
- Revision:
- 0:e4c3edb3c5ea
--- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/main.cpp Sat Feb 11 14:53:40 2017 +0000 @@ -0,0 +1,15 @@ +#include "katodo.h" +//Programa de ejemplo +int main() +{ + katodo disp; // Creo el objeto disp quien es el que realiza las acciones + disp.configura(PA_5,PA_6,PA_7,PB_6,PC_7,PA_9,PA_8);//Configuración de pines (a,b,c,d,e,f,g) + while(1) + { + for(int i=0;i<10;i++) + { + disp.visual(i);//Visualiza en el display + wait(0.025);//retardo de medio segundo + } + } +} \ No newline at end of file