mirror of
https://github.com/adrigongv23/G26---Telemetry-Software.git
synced 2026-05-25 12:31:27 +02:00
35 lines
No EOL
1.1 KiB
C++
35 lines
No EOL
1.1 KiB
C++
#ifndef DISPLAY_ID_HPP
|
|
#define DISPLAY_ID_HPP
|
|
|
|
#define DISPLAY_0_ID 0x00
|
|
#define DISPLAY_1_ID 0x01
|
|
#define DISPLAY_2_ID 0x02
|
|
#define DISPLAY_3_ID 0x03
|
|
#define DISPLAY_4_ID 0x04
|
|
|
|
#define RPM_ID 0x51 //RPM
|
|
#define ECT_IN_ID 0x52 //Temperatura entrada del radiador
|
|
#define GEAR_ID 0x53 //Marcha
|
|
#define TPS_ID 0x54 //Posición pedal acelerador
|
|
#define BPS_ID 0x55 //Presión de freno
|
|
#define BVOLT_ID 0x56 //Voltaje de batería
|
|
#define LAMBDA_ID 0x57 //Lambda
|
|
#define LR_WS_ID 0x58 //Velocidad de rueda LR
|
|
#define RR_WS_ID 0x59 //Velocidad de rueda RR
|
|
#define LF_WS_ID 0x60 //Velocidad de rueda LF
|
|
#define RF_WS_ID 0x61 //Velocidad de rueda RF
|
|
#define ECT_OUT_ID 0x62 //Temperatura salida del radiador
|
|
#define IAT_ID 0x63 //IAT
|
|
#define MAP_ID 0x64 //IAT
|
|
#define AFR_ID 0x65 //Target Lambda
|
|
#define CAN1_ID 0x66 //CAN_DIG#1
|
|
#define CAN2_ID 0x67 //CAN_DIG#2
|
|
#define CAN3_ID 0x68 //CAN_DIG#3
|
|
#define CAN4_ID 0x69 //CAN_DIG#4
|
|
#define CAN5_ID 0x70 //CAN_DIG#5
|
|
#define CAN6_ID 0x71 //CAN_DIG#6
|
|
#define TEMP_WARNING 0x72 //Warning de temperatura
|
|
#define OIL_TEMP_ID 0x73 //Temperatura de aceite
|
|
#define FUEL_PRESSURE_ID 0x74 //Presión de combustible
|
|
|
|
#endif |