Organizes 11 projects for Cerbo GX/Venus OS into a single repository: - axiom-nmea: Raymarine LightHouse protocol decoder - dbus-generator-ramp: Generator current ramp controller - dbus-lightning: Blitzortung lightning monitor - dbus-meteoblue-forecast: Meteoblue weather forecast - dbus-no-foreign-land: noforeignland.com tracking - dbus-tides: Tide prediction from depth + harmonics - dbus-vrm-history: VRM cloud history proxy - dbus-windy-station: Windy.com weather upload - mfd-custom-app: MFD app deployment package - venus-html5-app: Custom Victron HTML5 app fork - watermaker: Watermaker PLC control UI Adds root README, .gitignore, project template, and per-project .gitignore files. Sensitive config files excluded via .gitignore with .example templates provided. Made-with: Cursor
22 lines
706 B
Plaintext
22 lines
706 B
Plaintext
# NMEA Server Configuration
|
|
# Copy this file to .env and modify as needed
|
|
|
|
# Required: IP address of the interface connected to Raymarine network
|
|
# This is where multicast data is received from
|
|
# Find your interface IP with: ip addr show | grep "inet "
|
|
RAYMARINE_INTERFACE=198.18.5.5
|
|
|
|
# IP address to bind NMEA server (default: 0.0.0.0 = all interfaces)
|
|
# Use a specific IP to expose NMEA on a different interface than Raymarine
|
|
# Example: Receive from Raymarine on 198.18.5.5, serve NMEA on 198.18.10.62
|
|
NMEA_HOST=0.0.0.0
|
|
|
|
# NMEA TCP server port (default: 10110)
|
|
NMEA_PORT=10110
|
|
|
|
# Update interval in seconds (default: 1.0)
|
|
UPDATE_INTERVAL=1.0
|
|
|
|
# Logging level: DEBUG, INFO, WARNING, ERROR
|
|
LOG_LEVEL=INFO
|