Replies: 1 comment
-
for inverter 0 use For each panel, i.e. 2 panels on inverter 0: if curl doesn't support --no-progress-meter option, use -s (silent) option |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
There is the following example in the documentation:
~$ curl --no-progress-meter http://192.168.10.10/api/livedata/status | jq '.total | .Power.v'
140.7999878
What do I need to change to read Power of each panel? What I already tried:
$ curl --no-progress-meter http://192.168.179.38/api/livedata/status | jq '.inverters | .[0].Power.v'
null
$ curl --no-progress-meter http://192.168.179.38/api/livedata/status | jq '.inverters | .[1].Power.v'
null
$ curl --no-progress-meter http://192.168.179.38/api/livedata/status | jq '.inverters | .Power.v'
jq: error (at :0): Cannot index array with string "Power"
$ curl --no-progress-meter http://192.168.179.38/api/livedata/status | jq '.inverters | .serial'
jq: error (at :0): Cannot index array with string "serial"
$
Beta Was this translation helpful? Give feedback.
All reactions