-
Notifications
You must be signed in to change notification settings - Fork 23
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Retrieve Wallbox history data #54
Comments
just fyi, I opened a support ticket at E3DC to ask for help |
@mdhom @vchrisb Is there any news regarding this enhancement? The python module is really great, but unfortunately the wallbox data is missing. I would also like to connect this via the internet. Has the support of e3dc commented on this and have you found a way to implement the wallbox data? I came across your pull request here, but it doesn't seem to be remembered yet, does it? Thank you guys already for your feedback as well as in general for the work you each have done with here already. Many greetings |
I don't know any other implementation supporting the WB history data in this detail. This information was added to the E3DC website long after the "documentation" of the RSCP protocol, so there is no information on how to retrieve this data (if it was added to the protocol at all). However, it is possible to get the total WB consumption (total, net and solar) using a REQ_HISTORY_* request.
|
I tried to get wallbox history data this way, but without success. response = self.sendRequest(
(
RscpTag.DB_REQ_HISTORY_DATA_DAY,
RscpType.Container,
[
(
RscpTag.DB_REQ_HISTORY_TIME_START,
RscpType.Uint64,
startTimestamp,
),
(
RscpTag.DB_REQ_HISTORY_TIME_INTERVAL,
RscpType.Uint64,
timespanSeconds,
),
(
RscpTag.DB_REQ_HISTORY_TIME_SPAN,
RscpType.Uint64,
timespanSeconds,
),
],
),
(
RscpTag.WB_REQ_DATA,
RscpType.Container,
[
(
RscpTag.WB_INDEX,
RscpType.Uint32,
0,
),
RscpTag.WB_REQ_ENERGY_ALL,
RscpTag.WB_REQ_ENERGY_SOLAR,
],
),
keepAlive=keepAlive,
) Response always contains just the data like ``def get_db_data_timestamp```. Has anyone an idea how to get the history data from wallbox ? |
Hey folks,
do you know of any possibility to get the wallbox history data, that can be seen in the online portal?
![image](https://user-images.githubusercontent.com/30362954/149301425-502c4033-f2ec-4256-a4a8-1b8773324087.png)
Thanks for your help!
Max
The text was updated successfully, but these errors were encountered: