-
Notifications
You must be signed in to change notification settings - Fork 34
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
api.tlx_detail(tlx_id) not getting all timestamps #54
Comments
I'd have to take a look at this myself, I bet the app has started making a different API call. |
Alright @muppet3000 , that would be a big help, thank you. |
@muppet3000 any update on this? |
Hi @codac sorry for not coming back to you sooner, I've been quite busy with non-opensource things. |
@codac regarding your difference in data between the API and the app. I think the API data is the power generated by the solarpanels (DC) and the app show the power delivered to your house (AC@230V). If you look at your account on the Growatt website you will see: dashboard: hover over the graph, it shows 'solar' + power Now notice 'energy PAC' is always less then 'energy PV1 + PV2' and 'energy PV1 + PV2' is equal to dashboard and API power. However the API data is labelled 'invPacData', inverter Power AC data (I guess). This is confusing. From the website (HTTP response): |
@codac regarding missing data. I can not repoduce this. I do notice your data is chronological ordered. The data I receive is in random order. But it might you have ordered the data to make it more readable. {'2023-04-27 16:20': 1722.5501708984375, And chronological [{'2023-04-27 06:10': 0}, |
@Vic-s Thank you for your reply. |
Calling the TLX Detail API with the following command results in a restricted ouput.
Call:
api.tlx_data(device_sn, date=dayToProcess)
The values of the key "invPacData" results always with a start at 11:15 and end at 17:10 even though there are data points before 11:15 and after 17:10. No matter what day you provide, its always the same. Every datapoint before and after gets ignored.
Further more the format/values of the numbers is different. For example:
'2022-11-06 11:15': 386, #comma but no decimals; but in the growatt ap there is a decimal of .25
'2022-11-06 11:30': 623.2000122070312, #here you have the proper decimals
The text was updated successfully, but these errors were encountered: