Extract data from Autarco Solar panels

Hi Willem1, can you share your code? How did you get this working?
For me, it seams that I either did not yet get the firmware update yet, or that I have newer firmware in which they repaired it, because for me the fields are not empty. This is what I see:

1802040237060188;F0003B;204;35.1;640;1.000000;19;NO;

Thanks!

Hello is this integration working right now? I want to try to add my Autarco to Homeassitant once again. If i can be of any assistance, please let me know!

Hi everyone,

I’m looking for some help to get my energy dashboard working properly. I have everything set up, but I’m not receiving any data in the dashboard. Interestingly, the data from my solar panels is coming through just fine.

I’ve seen that other users have experienced similar issues. I’ve gone through this forum and tried a few suggested solutions, but nothing has worked so far. Any advice or guidance would be greatly appreciated!

i made a helper, but i can’t select it in my energy dashboard:

My Code

  customize:
    sensor.pv_now:
      friendly_name: "Current Solar Production"
      device_class: energy
      state_class: total_increasing      
      last_reset: "1970-01-01T00:00:00+00:00"      
    sensor.pv_today:
      friendly_name: "Solar Production Today"
      device_class: energy
      state_class: measurement
      last_reset: "1970-01-01T00:00:00+00:00"
    sensor.pv_month:
      friendly_name: "Solar Production This Month"
      last_reset: "2023-07-01T00:00:00+00:00"
      device_class: energy
      state_class: total_increasing
    sensor.pv_to_date:
      friendly_name: "Total Solar Production To Date"
      device_class: energy
      state_class: total_increasing
rest:
  - authentication: basic
    username: !secret autarco_username
    password: !secret autarco_password
    scan_interval: 60
    resource: https://my.autarco.com/api/m1/site/xxxxx/power
    sensor:
      - name: "pv_now"
        value_template: "{{ value_json.stats.kpis.pv_now / 1000 }}"
        unit_of_measurement: "kWh"
        device_class: energy
  - authentication: basic
    username: !secret autarco_username
    password: !secret autarco_password
    scan_interval: 60
    resource: https://my.autarco.com/api/m1/site/xxxxx/energy
    sensor:
      - name: "pv_today"
        value_template: "{{ value_json.stats.kpis.pv_today }}"
        unit_of_measurement: "kWh"
        device_class: energy
        state_class: measurement
      - name: "pv_month"
        value_template: "{{ value_json.stats.kpis.pv_month }}"
        unit_of_measurement: "kWh"
        device_class: energy
        state_class: total_increasing
      - name: "pv_to_date"
        value_template: "{{ value_json.stats.kpis.pv_to_date }}"
        unit_of_measurement: "kWh"
        device_class: energy
        state_class: total_increasing

edit:
just got pv_to_date working, but as you can see the data doesn’t add up. What do i have to do to get pv_today also working?

Good news! There will be a core integration of Autarco, in fact this has just been merged. This means that the integration will be in the August release (2024.8) of Home Assistant :partying_face:

Thanks to @Dennis0162 for making it possible to test with the API.

./Klaas

Currently I’m working on the possibility to add battery information from the API to the Home Assistant integration, I could use some help with that because there are a lot of data attributes and the question is sometimes what do they mean and which unit belongs to them.

There is a separate issue that can contribute to: