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: Pulse1 TextLCD mbed
Fork of irda_V_aula by
main.cpp
- Committer:
- tony63
- Date:
- 2013-11-07
- Revision:
- 0:74d57f8ae247
- Child:
- 2:6a15ab0305c8
File content as of revision 0:74d57f8ae247:
#include "mbed.h"
#include <Pulse1.h>
PulseInOut irda(PTD5);
Serial pc(USBTX, USBRX);
DigitalOut led(LED1);
int tiempo;
int main(){
while(1){
tiempo = irda.read_high_us();
led=1;
pc.printf("Header bajo dura %d us\n", tiempo);
wait(0.3);
led=0;
}
}
