{"id":15416972,"url":"https://github.com/blueandi/evecc","last_synced_at":"2025-03-28T03:40:59.622Z","repository":{"id":89190850,"uuid":"354819885","full_name":"BlueAndi/evecc","owner":"BlueAndi","description":"Electric Vehicle Easee Charger Controller","archived":false,"fork":false,"pushed_at":"2021-05-23T10:32:37.000Z","size":28,"stargazers_count":1,"open_issues_count":0,"forks_count":0,"subscribers_count":4,"default_branch":"main","last_synced_at":"2025-02-02T04:44:23.225Z","etag":null,"topics":["charger","charging-robot","easee","ev-charging","python","python3","wallbox"],"latest_commit_sha":null,"homepage":"","language":"Python","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/BlueAndi.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null}},"created_at":"2021-04-05T12:00:50.000Z","updated_at":"2021-08-12T05:31:41.000Z","dependencies_parsed_at":"2023-06-14T09:00:12.754Z","dependency_job_id":null,"html_url":"https://github.com/BlueAndi/evecc","commit_stats":{"total_commits":11,"total_committers":1,"mean_commits":11.0,"dds":0.0,"last_synced_commit":"4db21adf182a3a297d3bf6378fd4c7f065745507"},"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/BlueAndi%2Fevecc","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/BlueAndi%2Fevecc/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/BlueAndi%2Fevecc/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/BlueAndi%2Fevecc/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/BlueAndi","download_url":"https://codeload.github.com/BlueAndi/evecc/tar.gz/refs/heads/main","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":245966926,"owners_count":20701759,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["charger","charging-robot","easee","ev-charging","python","python3","wallbox"],"created_at":"2024-10-01T17:14:19.189Z","updated_at":"2025-03-28T03:40:59.599Z","avatar_url":"https://github.com/BlueAndi.png","language":"Python","funding_links":[],"categories":[],"sub_categories":[],"readme":"# evecc\nElectric Vehicle Easee Charge Controller\n\n[![License](https://img.shields.io/badge/license-MIT-blue.svg)](http://choosealicense.com/licenses/mit/)\n[![Repo Status](https://www.repostatus.org/badges/latest/wip.svg)](https://www.repostatus.org/#wip)\n\n# Purpose\nThe idea is to drive the electric vehicle charging according to the available solar power.\n\nThe EVECC just limits the charging current of the site circuit. A circuit may have one or more chargers. For most users a circuit will have just one charger.\n\nCurrently its just a small script, but may change in the future.\n\nIts a early bird! I couldn't test it completly, because my chargers are not registered in the Easee cloud yet. Hopefully it will change in the upcoming weeks.\n\n# Overview\n![Overview](http://www.plantuml.com/plantuml/proxy?idx=0\u0026src=https://raw.github.com/BlueAndi/evecc/master/doc/principle.plantuml)\n\n# Design\n\nPossible ways to influence the charging current:\n* Per charger\n    * maxChargerCurrent\n        * Stored non-volatile, which means will survive a powerloss.\n        * ```/api/chargers/{id}/settings```\n        * Max. access frequcency: 20 requests per minute.\n    * dynamicChargerCurrent\n        * Stored volatile, which means will not survice a powerloss.\n        * ```/api/chargers/{id}/settings```\n        * Max. access frequcency: 20 requests per minute.\n* Per circuit\n    * maxCircuitCurrent{phase}\n        * Stored non-volatile, which means will survive a powerloss.\n        * ```/api/sites/{siteId}/circuits/{circuitId}/settings```\n        * Max. access frequcency: 20 requests per minute.\n    * dynamicCircuitCurrent{phase}\n        * Stored volatile, which means will not survice a powerloss.\n        * ```/api/sites/{siteId}/circuits/{circuitId}/settings```\n        * Max. access frequcency: 20 requests per minute.\n        * **Used by EVECC.**\n\n# Installation\n```cmd\n$ git clone https://github.com/BlueAndi/evecc.git\n$ cd evecc\n$ python setup.py install\n```\n\n# Usage\n\nShow help information:\n```cmd\n$ evecc --help\n```\n\n# Examples\n\n## Get current charging power limitation\n\n```cmd\n$ evecc --username \u003cusername\u003e --password \u003cpassword\u003e --siteKey \u003csite-key\u003e --circuitPanelId \u003ccircuit-panel-id\u003e getCircuitPowerLimit\n```\n\nResult:\n```cmd\n11040.0\n```\n\n## Limit charging power\nThe following example limits it to 3.68 kW.\n\n```cmd\n$ evecc --username \u003cusername\u003e --password \u003cpassword\u003e --siteKey \u003csite-key\u003e --circuitPanelId \u003ccircuit-panel-id\u003e setCircuitPowerLimit 3680\n```\n\n```cmd\nSingle phase loading enabled: 16 A\n```\n\nIf the power limit is lower or equal than 3.68 kW, charging will be done via single phase otherwise with all 3 phases.\n\n# Setup Development Toolchain\n* Install [python 3.9.x](https://www.python.org/)\n* Ensure pip, setuptools and wheel are up to date:\n```cmd\n$ python -m pip install --upgrade pip setuptools wheel\n```\n\n# Informations about Easee Charger\n* [Official Easee Homepage (eng. variant)](https://easee-international.com/uk/)\n* [Easee Cloud REST API](https://api.easee.cloud/index.html)\n\n# Used Libraries\n* [Easee EV Charger library](https://github.com/fondberg/pyeasee) - MIT License\n\n# Issues, Ideas And Bugs\nIf you have further ideas or you found some bugs, great! Create a [issue](https://github.com/BlueAndi/evecc/issues) or if you are able and willing to fix it by yourself, clone the repository and create a pull request.\n\n# License\nThe whole source code is published under the [MIT license](http://choosealicense.com/licenses/mit/).\nConsider the different licenses of the used third party libraries too!\n\n# Contribution\nUnless you explicitly state otherwise, any contribution intentionally submitted for inclusion in the work by you, shall be licensed as above, without any additional terms or conditions.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fblueandi%2Fevecc","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fblueandi%2Fevecc","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fblueandi%2Fevecc/lists"}