-
Notifications
You must be signed in to change notification settings - Fork 1
/
RobotStatus.h
61 lines (49 loc) · 1.47 KB
/
RobotStatus.h
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
#ifndef ROBOT_STATUS_H
#define ROBOT_STATUS_H
#include <stdint.h>
#include <stddef.h>
#include <string>
#include <vector>
#include "dataEnums.h"
#include "freertos/FreeRTOS.h"
#include "freertos/task.h"
#include "freertos/timers.h"
#include "freertos/semphr.h"
#include "DataAbstract.hpp"
#include "DataStorage.hpp"
#include "DataManager.hpp"
#include "esp_log.h"
enum CarState
{
CAR_MAPPING,
CAR_ENC_READING,
CAR_ENC_READING_BEFORE_FIRSTMARK,
CAR_TUNING,
CAR_STOPPED,
};
class RobotStatus
{
public:
RobotStatus(std::string name);
/**
* @brief Armazena o estado geral do robô.
* @returns Valor do tipo RobotState.
*/
DataAbstract<uint8_t> *robotState;
/**
* @brief Atributo que indica se o robô está lendo o mapeamento para identificar as curvas e retas
* @retval TRUE Se o robô está lendo o mapeamento
* @retval FALSE Se o robô não está lendo o mapeamento
*/
DataAbstract<bool> *TunningMode;
DataAbstract<bool> *OpenLoopControl;
DataAbstract<bool> *HardDeleteMap;
DataAbstract<bool> *LineColorBlack;
DataAbstract<uint16_t> *OpenLoopTreshold; // limite de ativação do controle de malha aberta
DataAbstract<uint8_t> *transitionTrackSegment; // trecho de transição da pista em que o robô se encontra
DataAbstract<uint8_t> *currentTrackSegment; // status atual do trecho da pista em que o robô se encontra
private:
std::string name;
DataManager *dataManager;
};
#endif