Marcel Goerentz
Marcel Goerentz
Hi @dag81, thanks for your input I will check how fast I can fix this. Someone was already asking for support of older devices. Unfortunately I don't have access to...
Will recreate the PR.
Hey, I've left out the forecast data. But you can use the http binding if you are only interested to store them in a database. I could also add the...
You could also utilize evcc to send data directly via mqtt, if that helps.
> Please don't add raw data channels, instead model everything to openHAB domain. That is what I expected and therefore I didn't implemented it, yet.
@lsiepel the forecast data contains a large set of timestamp for up to 4 days. Is there any good way to provide this data in meaningful way in openHAB without...
Thanks, I will have a look and may start the implementation. ```java TimeSeries timeSeries = new TimeSeries(REPLACE); for (int i = 0; i < data.values.length; i++) { timeSeries.add(Instant.ofEpochSecond(data.timestampsEpochSecs[i]), getState(data.values[i], unit));...
@jlaur There is no channel right now. In general the binding is polling the data from a evcc instance. Once the data has been fetched the bridge will inform the...
@lsiepel this one is ready for review :)
Hey, The current implementation simply does not support this feature yet. The documentation you found is probably for the old binding. The new one from the marketplace differs and can...