Skip to content

Commit

Permalink
Add support for Wind and Temp to support IMT
Browse files Browse the repository at this point in the history
Added environment path mappings to pull Wind and Outside temperature. from com.victronenergy.meteo
  • Loading branch information
nmbath committed Aug 15, 2022
1 parent 627c470 commit dca143e
Showing 1 changed file with 10 additions and 0 deletions.
10 changes: 10 additions & 0 deletions venusToDeltas.js
Original file line number Diff line number Diff line change
Expand Up @@ -522,6 +522,16 @@ module.exports = function (app, options, handleMessage) {
return { latitude: lastLat, longitude: msg.value }
}
}
},
'/ExternalTemperature': {
path: 'environment.outside.temperature',
requiresInstance: false,
conversion: celsiusToKelvin,
units: 'K'
},
'/WindSpeed': {
path: 'environment.wind.speedApparent',
requiresInstance: false
}
}

Expand Down

0 comments on commit dca143e

Please sign in to comment.