Hi - I am scraping data from my two Solutronic Solplus 25 inverters (they are both connected to my network) from their web interface by adding this to configuration.yaml :
- platform: scrape
name: solutronic_current_w
unit_of_measurement: W
scan_interval: 60
resource: http://IP-address/p1.html
select: 'td'
index: 16
value_template: '{{ ( (value.split("W")[0]) | replace (" ", "") ) }}'
- platform: scrape
name: solutronic_yield_today
unit_of_measurement: kWh
scan_interval: 600
resource: http://IP-address/p3.html
select: 'td'
index: 3
value_template: '{{ ( (value.split("kWh")[0]) | replace (" ", "") ) }}'