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.
Diego.h
- Committer:
- DiegoRivera
- Date:
- 2016-02-12
- Revision:
- 14:968673858d9a
- Parent:
- 12:6437206cd4d5
- Child:
- 15:c1fdacc370d5
File content as of revision 14:968673858d9a:
#ifndef Diego
#define Diego
#include "mbed.h"
DigitalOut rojo(LED_RED);
void Diego_Choque(int dataX)
{
rojo=1;
if(abs(dataX)>32000)
{
while(1)
{
rojo=!rojo;
wait(.1);
}
}
}
#endif
