STM32 Nucleo F207Z ultrasonic radar. TODO: send the data over the net

Dependencies:   HC_SR04_Ultrasonic_Library PinDetect

main.cpp

Committer:
vhx
Date:
2018-06-29
Revision:
1:b4179d7a5f2c
Parent:
0:23a36e52a5fa

File content as of revision 1:b4179d7a5f2c:

#include <mbed.h>
#include "client.h"
#include "radar.h"

int main() {
    
    printf("Welcome Bedbox!\n");
    init_nw();
    /* run radar forever */
    radar();
    return 0;
}