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
23 lines
504 B
Python
23 lines
504 B
Python
"""
|
|
Configuration for dbus-YOUR-SERVICE-NAME.
|
|
|
|
Rename this file is not needed -- just update the values below.
|
|
"""
|
|
|
|
# Service identity
|
|
SERVICE_NAME = 'com.victronenergy.yourservice'
|
|
DEVICE_INSTANCE = 0
|
|
PRODUCT_NAME = 'Your Service Name'
|
|
PRODUCT_ID = 0xA1FF # Pick a unique product ID (0xA100-0xA1FF range)
|
|
FIRMWARE_VERSION = 0
|
|
CONNECTED = 1
|
|
|
|
# Version
|
|
VERSION = '0.1.0'
|
|
|
|
# Timing
|
|
MAIN_LOOP_INTERVAL_MS = 1000 # Main loop tick (milliseconds)
|
|
|
|
# Logging
|
|
LOG_LEVEL = 'INFO' # DEBUG, INFO, WARNING, ERROR
|