El_clan_zoncillo / Mbed 2 deprecated Practica2_3

Dependencies:   mbed

Embed: (wiki syntax)

« Back to documentation index

Show/hide line numbers main.cpp Source File

main.cpp

00001 #include "mbed.h"
00002 DigitalIn boton(PC_13);
00003 int main()
00004 {
00005  int contador =0;
00006  while(1) {
00007  contador++;
00008  if(boton==0) {
00009  printf("El contador vale %d\n",contador);
00010  }
00011  wait(0.10);
00012  }
00013 }