20 lines
352 B
C
20 lines
352 B
C
#pragma once
|
|
|
|
#define DEVICE_NAME "Xterra Controller"
|
|
|
|
// Relay Outputs
|
|
#define RELAY_STARLINK_PIN 16
|
|
#define RELAY_FRIDGE_PIN 17
|
|
|
|
// DS18B20 Bus
|
|
#define ONEWIRE_PIN 4
|
|
|
|
// Ignition Sense
|
|
#define IGNITION_PIN 34
|
|
|
|
// UART over CAT5 to Pico dashboard
|
|
#define UART_TX_PIN 21
|
|
#define UART_RX_PIN 22
|
|
|
|
// RS-485/MAX3485 fallback only; not currently planned
|