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

Dependencies:   HC_SR04_Ultrasonic_Library PinDetect

Committer:
vhx
Date:
Fri Jun 29 08:52:41 2018 +0000
Revision:
1:b4179d7a5f2c
Parent:
0:23a36e52a5fa
Envoi d'une donn?e

Who changed what in which revision?

UserRevisionLine numberNew contents of line
vhx 0:23a36e52a5fa 1 #include <mbed.h>
vhx 0:23a36e52a5fa 2 #include "client.h"
vhx 0:23a36e52a5fa 3 #include "radar.h"
vhx 0:23a36e52a5fa 4
vhx 0:23a36e52a5fa 5 int main() {
vhx 0:23a36e52a5fa 6
vhx 0:23a36e52a5fa 7 printf("Welcome Bedbox!\n");
vhx 0:23a36e52a5fa 8 init_nw();
vhx 0:23a36e52a5fa 9 /* run radar forever */
vhx 0:23a36e52a5fa 10 radar();
vhx 0:23a36e52a5fa 11 return 0;
vhx 0:23a36e52a5fa 12 }