Diego Rivera
/
CerraduraBluetooth
Cerradura controlada por bluetooth
Diff: main.cpp
- Revision:
- 0:bc7b5ae725ef
- Child:
- 1:1c8a6c4ddc4f
--- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/main.cpp Fri Feb 19 13:11:19 2016 +0000 @@ -0,0 +1,27 @@ +#include "mbed.h" +#include "Cerradura.h" + +//DigitalOut cerradura (D2); + +Serial bluetooth(USBTX, USBRX); +Cerradura cerradura(LED1); + +void leer() +{ + uint8_t in; + bluetooth.scanf("%d", in); + if(in==1) + cerradura.abrir(); + if(in==0) + cerradura.cerrar(); +} + +int main() +{ + bluetooth.baud(9600); + bluetooth.format(8, SerialBase::None, 1); + bluetooth.attach(&leer, Serial::RxIrq); + while(1) + { + } +}