This commit is contained in:
DashyFox 2024-09-09 10:51:55 +03:00
parent 3f29b8f596
commit 6c8ff18de0

View File

@ -18,7 +18,7 @@
#define INFO "IR_FOX TEST" #define INFO "IR_FOX TEST"
#define SERIAL_SPEED 115200 #define SERIAL_SPEED 115200
constexpr uint8_t cmd_oar_car = CarCmd::stop; // <<<<<<<<< CMD FOR CAR constexpr uint8_t cmd_for_car = CarCmd::stop_Tmp_H_S; // <<<<<<<<< CMD FOR CAR
//////////////// Var ///////////////// //////////////// Var /////////////////
@ -237,7 +237,7 @@ void loop() {
if(responsponse_f && millis() - responsponse_tim > 100) { if(responsponse_f && millis() - responsponse_tim > 100) {
responsponse_f=false; responsponse_f=false;
encForward.sendData(IR_Broadcast, cmd_oar_car); encForward.sendData(IR_Broadcast, cmd_for_car);
} }
} }