Diego Rivera / Mbed 2 deprecated DetectorImpacto

Dependencies:   MMA8451Q mbed

Embed: (wiki syntax)

« Back to documentation index

Show/hide line numbers cruz.h Source File

cruz.h

00001 #ifndef CRUZ
00002 #define CRUZ
00003 
00004 #include "mbed.h"
00005 void cruz_choqueY(int dataY)
00006 {
00007     DigitalOut azul(LED_BLUE);
00008     azul=1;
00009     
00010     if(abs(dataY)>32000)
00011     {
00012         azul=0;
00013         while(1)
00014         {
00015              azul=!azul;
00016         }
00017     }
00018 }
00019 #endif