mirror of
https://github.com/adrigongv23/G26---Telemetry-Software.git
synced 2026-08-25 11:33:17 +02:00
22 lines
No EOL
214 B
C++
22 lines
No EOL
214 B
C++
#include "can.hpp"
|
|
#include "led.hpp"
|
|
#include "configuracion.hpp"
|
|
|
|
CAN can;
|
|
|
|
void setup(){
|
|
|
|
Serial.begin(115200);
|
|
|
|
led_startup();
|
|
|
|
can.start();
|
|
can.start_listening_task();
|
|
|
|
}
|
|
|
|
void loop(){
|
|
|
|
|
|
|
|
} |