Add youless power meter #8919
-
Hi, is it possible to add the youless P1 meter to EVCC? i couldn't find how to. see page 23 in: https://www.youless.nl/downloads.html?file=tl_files/downloads/youless-ls120-handleiding-1.50.pdf (in dutch sorry) im able to give remote access for testing purposes. Thanks in advance |
Beta Was this translation helpful? Give feedback.
Replies: 2 comments 13 replies
-
You can try it with the http-plugin. https://docs.evcc.io/docs/reference/plugins#http-lesenschreiben |
Beta Was this translation helpful? Give feedback.
-
My setup. Grid meter is connected to p1 (pwr). And solar pulse meter is connected to PS0. Works perfect. meters:
- name: grid
type: custom
power:
source: http
uri: http://192.168.2.1/e
method: GET # default HTTP method
headers:
- content-type: application/json
insecure: true # set to true to trust self-signed certificates
jq: .[0].pwr # parse response json
scale: 1.0 # floating point factor applied to result, e.g. for kW to W conversion
timeout: 10s # timeout in golang duration format, see https://golang.org/pkg/time/#ParseDuration
energy:
source: http
uri: http://192.168.2.1/e
method: GET # default HTTP method
headers:
- content-type: application/json
insecure: true # set to true to trust self-signed certificates
jq: .[0].net # parse response json
scale: 1.0 # floating point factor applied to result, e.g. for kW to W conversion
timeout: 10s # timeout in golang duration format, see https://golang.org/pkg/time/#ParseDuration
- name: pv
type: custom
power:
source: http
uri: http://192.168.2.1/e
method: GET # default HTTP method
headers:
- content-type: application/json
insecure: true # set to true to trust self-signed certificates
jq: .[0].ps0 # parse response json
scale: 1.0 # floating point factor applied to result, e.g. for kW to W conversion
timeout: 10s # timeout in golang duration format, see https://golang.org/pkg/time/#ParseDuration
energy:
source: http
uri: http://192.168.2.1/e
method: GET # default HTTP method
headers:
- content-type: application/json
insecure: true # set to true to trust self-signed certificates
jq: .[0].cs0 # parse response json
scale: 1.0 # floating point factor applied to result, e.g. for kW to W conversion
timeout: 10s # timeout in golang duration format, see https://golang.org/pkg/time/#ParseDuration |
Beta Was this translation helpful? Give feedback.
Try
Your online editor is not for the jq syntax. Try https://www.devtoolsdaily.com/jq_playground/