raspi pieske_sun sudo raspi-config # evcc https://docs.evcc.io/docs/installation/linux sudo apt install -y debian-keyring debian-archive-keyring apt-transport-https curl curl -1sLf 'https://dl.evcc.io/public/evcc/stable/setup.deb.sh' | sudo -E bash sudo apt update sudo apt upgrade sudo apt install -y evcc evcc configure evcc configure --advanced sudo systemctl start evcc sudo systemctl stop evcc evcc -c evcc.yaml http://localhost:7070 # update sudo apt --only-upgrade install -y evcc sudo systemctl status evcc # zeigt den Status sudo systemctl start evcc # startet den Dienst sudo systemctl stop evcc # stoppt den Dienst sudo systemctl restart evcc # startet den Dienst neu sudo systemctl enable evcc # aktiviert den Dienst sudo systemctl disable evcc # deaktiviert den Dienst # backup yaml kopieren: sudo cp /etc/evcc.yaml /home/pi/evcc.yaml.bak db kopieren: sudo cp /var/lib/evcc/evcc.db /home/pi/evcc.db.bak ----------------------------------------------------------------------------------- https://docs.evcc.io/docs/installation/linux Solar-Log: https://github.com/svalouch/slmon/tree/26ba65745f499a4ebe383bc8ed7fbeccedb86fdf https://slmon.readthedocs.io/en/latest/sl_structures_overview.html alll requests as POST /getjp 780 - Generation in kW, sum of all energy generation devices (current reading). 781 - Consumption in kW, sum of all energy consuming devices (current reading). -> as Int /login { u : user, p : pasword } response code 200 on success /logout /logcheck - query login state example: curl -X POST -H "Content-Type: application/json" -d '{"780":null}' "http:///getjp" 2> /dev/null | jq . curl -X POST -H "Content-Type: application/json" -d '{"801":{"170":null}}' "http:///getjp" 2> /dev/null | jq . Pracht Alpha: Modbus TCP/IP (RS485) ip: .. port: 502 https://github.com/evcc-io raspi pieske_sun