UNPKG

signalk-to-venus

Version:

Injects batteries, tanks, environment sensors, and switches as virtual devices and battery monitor into the Victron Cerbo GX Venus OS.

19 lines (18 loc) 711 B
export default { venusHost: 'venus.local', interval: 1000, batteryCapacity: 800, // Default battery capacity in Ah for time-to-charge calculation enabledDevices: { batteries: true, tanks: true, environment: true, switches: true }, defaultBatteryCapacity: 800.0, // Default battery capacity in Ah for battery monitor batteryRegex: /^electrical\.batteries\.\d+\./, tankRegex: /^tanks\.[^.\/]+\.[^.\/]+\./, temperatureRegex: /^environment\..*\.temperature$|^propulsion\..*\.temperature$/, humidityRegex: /^environment\..*\.(humidity|relativeHumidity)$/, switchRegex: /^electrical\.switches\.[^.]+\.state$/, dimmerRegex: /^electrical\.switches\.[^.]+\.dimmingLevel$/ };