26 lines
572 B
C
26 lines
572 B
C
#pragma once
|
|
|
|
#define DEVICE_NAME "Overland Controller"
|
|
|
|
// Relay Outputs
|
|
#define RELAY_1_PIN 16
|
|
#define RELAY_2_PIN 17
|
|
|
|
// DS18B20 Bus
|
|
#define ONEWIRE_PIN 4
|
|
|
|
// Ignition Sense
|
|
#define IGNITION_PIN 34
|
|
|
|
// Cargo OLED service/setup display
|
|
#define OLED_I2C_SDA_PIN 21
|
|
#define OLED_I2C_SCL_PIN 22
|
|
#define OLED_SETUP_BUTTON_PIN 25
|
|
|
|
// Dashboard communication is WiFi/HTTP.
|
|
// Legacy UART dashboard support is retired from active hardware use.
|
|
#define DASHBOARD_UART_ENABLED 0
|
|
#define DASHBOARD_UART_BAUD 115200
|
|
|
|
// RS-485/MAX3485 is fallback only and not currently planned.
|