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
28 lines
496 B
Python
28 lines
496 B
Python
"""
|
|
Configuration for dbus-vrm-history service
|
|
"""
|
|
|
|
VRM_CONFIG = {
|
|
'base_url': 'https://vrmapi.victronenergy.com/v2',
|
|
'refresh_interval_minutes': 15,
|
|
'request_timeout_seconds': 30,
|
|
}
|
|
|
|
DBUS_CONFIG = {
|
|
'service_name': 'com.victronenergy.vrmhistory',
|
|
'settings_path': '/Settings/VrmHistory',
|
|
}
|
|
|
|
LOGGING_CONFIG = {
|
|
'level': 'INFO',
|
|
'include_timestamp': False,
|
|
}
|
|
|
|
STATUS = {
|
|
'UNCONFIGURED': 0,
|
|
'READY': 1,
|
|
'FETCHING': 2,
|
|
'ERROR': 3,
|
|
'DISCOVERING': 4,
|
|
}
|