mirror of
https://github.com/adrigongv23/G26---Telemetry-Software.git
synced 2026-05-25 12:31:27 +02:00
Creación de repositorio, copia de pantalla
This commit is contained in:
commit
6adc19faf6
71 changed files with 241507 additions and 0 deletions
38
include/data_processor.hpp
Normal file
38
include/data_processor.hpp
Normal file
|
|
@ -0,0 +1,38 @@
|
|||
#ifndef DATAPROCESSOR_HPP
|
||||
#define DATAPROCESSOR_HPP
|
||||
|
||||
#include "common/common_libraries.hpp"
|
||||
#include "common/display_id.hpp"
|
||||
#include "led_strip.hpp"
|
||||
#include "crowpanel_controller.hpp"
|
||||
|
||||
#include "freertos/FreeRTOS.h"
|
||||
#include "freertos/semphr.h"
|
||||
|
||||
class DataProcessor {
|
||||
public:
|
||||
DataProcessor() = default;
|
||||
char* process(std::vector<float> data);
|
||||
void send_serial(byte type, unsigned int value);
|
||||
void send_serial_frame_0(int rpmh, int rpml, int tpsh, int tpsl, int ecth, int ectl, int gear);
|
||||
void send_serial_frame_1(int lfws, int rfws, int lrws, int rrws, int maph, int mapl, int ect);
|
||||
void send_serial_frame_2(int lambh, int lambl, int lamth, int lamtl, int bvolth, int bvoltl, int iat);
|
||||
void send_serial_frame_3(int aux1, int aux2, int aux3, int aux4, int aux5, int aux6, int aux7);
|
||||
void send_serial_frame_4(int aux1, int aux2, int aux3, int aux4, int aux5, int aux6, int aux7);
|
||||
void send_serial_change_display(int display);
|
||||
void send_serial_screen_test(int test);
|
||||
void set_led_strip(LedStrip *led_strip){
|
||||
_led_strip = led_strip;
|
||||
}
|
||||
void set_crow_panel_controller(CrowPanelController *crow_panel_controller) {
|
||||
_crow_panel_controller = crow_panel_controller;
|
||||
}
|
||||
|
||||
private:
|
||||
LedStrip *_led_strip;
|
||||
CrowPanelController *_crow_panel_controller;
|
||||
int current_display=0;
|
||||
bool change_screen_requested=false;
|
||||
};
|
||||
|
||||
#endif
|
||||
Loading…
Add table
Add a link
Reference in a new issue