No description
  • C++ 89.2%
  • HTML 10.7%
Find a file
Repository files (latest commit first)
Filename Latest commit message Latest commit date
2020-01-23 12:42:56 +01:00
documents Add first version with websockets suppot 2020-01-16 19:37:24 +01:00
include Update tunnel modus and put config files 2020-01-23 12:42:56 +01:00
src Update tunnel modus and put config files 2020-01-23 12:42:56 +01:00
.gitignore Update master communication 2020-01-13 16:00:02 +01:00
build.sh Add some commands and a build shell script for the website 2020-01-08 10:30:30 +01:00
LICENSE Initial commit 2019-11-25 09:53:31 +01:00
platformio.ini Some spell errors 2020-01-23 11:17:28 +01:00
README.md Update some code and add first tunnel support 2020-01-13 20:47:10 +01:00

RescueBot

Technische Informatica - Project 2 (RescueBot) - Group 5

Slave to Master protocol

Values to receive from nano:

  • distance_to_object represents the distance the the object in front of the car in cm
  • distance_to_left represents the distance to first left object / wall in cm
  • distance_to_right represents the distance to first right object / wall in cm
  • distance_to_ground represents the distance to the ground in cm
  • ir_left the value of the ir sensor on the left site as boolean (1 means border found)
  • ir_right the value of the ir sensor on the right site as boolean (1 means border found)
struct slave_to_master {
    uint8_t distance_to_object;
    uint8_t distance_to_left;
    uint8_t distance_to_right;
    uint8_t distance_to_ground;
    uint8_t ir_left;
    uint8_t ir_right;
};