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-28
Revision:
0:23a36e52a5fa

File content as of revision 0:23a36e52a5fa:

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

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