{"id":15288263,"url":"https://github.com/brainelectronics/myevse-webinterface","last_synced_at":"2026-01-18T11:42:43.040Z","repository":{"id":40243230,"uuid":"464089544","full_name":"brainelectronics/MyEVSE-Webinterface","owner":"brainelectronics","description":"Webinterface of MyEVSE","archived":false,"fork":false,"pushed_at":"2023-03-21T07:32:28.000Z","size":176,"stargazers_count":1,"open_issues_count":6,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-03-16T09:43:51.296Z","etag":null,"topics":["esp32","evse","evse-wifi","micropython","myevse","webinterface"],"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/brainelectronics.png","metadata":{"files":{"readme":"README.md","changelog":"changelog.md","contributing":"docs/CONTRIBUTING.md","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":"2022-02-27T09:18:08.000Z","updated_at":"2022-08-09T17:19:45.000Z","dependencies_parsed_at":"2024-09-30T15:45:00.993Z","dependency_job_id":"7467e3f6-151b-4caf-8885-b842ba58e08a","html_url":"https://github.com/brainelectronics/MyEVSE-Webinterface","commit_stats":{"total_commits":104,"total_committers":2,"mean_commits":52.0,"dds":0.009615384615384581,"last_synced_commit":"e9d369980ec5f0a7107b2793d2130feeb6f8373a"},"previous_names":[],"tags_count":23,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/brainelectronics%2FMyEVSE-Webinterface","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/brainelectronics%2FMyEVSE-Webinterface/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/brainelectronics%2FMyEVSE-Webinterface/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/brainelectronics%2FMyEVSE-Webinterface/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/brainelectronics","download_url":"https://codeload.github.com/brainelectronics/MyEVSE-Webinterface/tar.gz/refs/heads/main","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":247427012,"owners_count":20937214,"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":["esp32","evse","evse-wifi","micropython","myevse","webinterface"],"created_at":"2024-09-30T15:44:57.320Z","updated_at":"2026-01-18T11:42:43.002Z","avatar_url":"https://github.com/brainelectronics.png","language":"Python","readme":"# MyEVSE Webinterface\n\n[![Downloads](https://pepy.tech/badge/myevse-webinterface)](https://pepy.tech/project/myevse-webinterface)\n![Release](https://img.shields.io/github/v/release/brainelectronics/myevse-webinterface?include_prereleases\u0026color=success)\n![MicroPython](https://img.shields.io/badge/micropython-Ok-green.svg)\n[![License: MIT](https://img.shields.io/badge/License-MIT-yellow.svg)](https://opensource.org/licenses/MIT)\n\nMicroPython based Webinterface of MyEVSE\n\n---------------\n\n## General\n\nThis is the webinterface of the MyEVSE\n\n\u003ca href=\"https://www.tindie.com/stores/brainelectronics/?ref=offsite_badges\u0026utm_source=sellers_brainelectronics\u0026utm_medium=badges\u0026utm_campaign=badge_medium\"\u003e\u003cimg src=\"https://d2ss6ovg47m0r5.cloudfront.net/badges/tindie-mediums.png\" alt=\"I sell on Tindie\" width=\"150\" height=\"78\"\u003e\u003c/a\u003e\n\nThe current implementation does only run on a board with external SPI RAM. As\nof now up to 300kB of RAM are required. This is more than an ESP32-D4 Pico\nprovides by default.\n\n📚 The latest documentation is available at\n[MyEVSE Webinterface ReadTheDocs][ref-rtd-myevse-webinterface] 📚\n\n\u003c!-- MarkdownTOC --\u003e\n\n- [Quickstart](#quickstart)\n\t- [Install package on board with mip or upip](#install-package-on-board-with-mip-or-upip)\n\t- [Upload additional files to board](#upload-additional-files-to-board)\n- [Usage](#usage)\n\n\u003c!-- /MarkdownTOC --\u003e\n\n## Quickstart\n\nThis is a quickstart to install the `myevse-webinterface` library on a\nMicroPython board.\n\nA more detailed guide of the development environment can be found in\n[SETUP](SETUP.md), further details about the usage can be found in\n[USAGE](USAGE.md), descriptions for testing can be found in\n[TESTING](TESTING.md) and several examples in [EXAMPLES](EXAMPLES.md)\n\n```bash\npython3 -m venv .venv\nsource .venv/bin/activate\n\npip install -r requirements.txt\n```\n\n### Install package on board with mip or upip\n\n```bash\nrshell -p /dev/tty.SLAB_USBtoUART --editor nano\n```\n\nInside the [rshell][ref-remote-upy-shell] open a REPL and execute these\ncommands inside the REPL\n\n```python\nimport machine\nimport network\nimport time\nimport mip\nstation = network.WLAN(network.STA_IF)\nstation.active(True)\nstation.connect('SSID', 'PASSWORD')\ntime.sleep(1)\nprint('Device connected to network: {}'.format(station.isconnected()))\nmip.install('myevse-webinterface', index='https://pypi.org/pypi')\nprint('Installation completed')\nmachine.soft_reset()\n```\n\nFor MicroPython versions below 1.19.1 use the `upip` package instead of `mip`\n\n```python\nimport machine\nimport network\nimport time\nimport upip\nstation = network.WLAN(network.STA_IF)\nstation.active(True)\nstation.connect('SSID', 'PASSWORD')\ntime.sleep(1)\nprint('Device connected to network: {}'.format(station.isconnected()))\nupip.install('myevse-webinterface')\nprint('Installation completed')\nmachine.soft_reset()\n```\n\n### Upload additional files to board\n\nCopy the [`boot.py`](boot.py) and [`main.py`](main.py) files to the\nMicroPython board as shown below using\n[Remote MicroPython shell][ref-remote-upy-shell]\n\nOpen the remote shell with the following command. Additionally use `-b 115200`\nin case no CP210x is used but a CH34x.\n\n```bash\nrshell -p /dev/tty.SLAB_USBtoUART --editor nano\n```\n\nPerform the following command to copy all files to the device\n\n```bash\ncp main.py /pyboard\ncp boot.py /pyboard\n```\n\n## Usage\n\nSee [USAGE](USAGE.md) and [DOCUMENTATION](DOCUMENTATION.md)\n\n\u003c!-- Links --\u003e\n[ref-rtd-myevse-webinterface]: https://myevse-webinterface.readthedocs.io/en/latest/\n[ref-upy-firmware-download]: https://micropython.org/download/\n[ref-remote-upy-shell]: https://github.com/dhylands/rshell\n[ref-myevse-be]: https://brainelectronics.de/\n[ref-myevse-tindie]: https://www.tindie.com/stores/brainelectronics/\n","funding_links":[],"categories":[],"sub_categories":[],"project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fbrainelectronics%2Fmyevse-webinterface","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fbrainelectronics%2Fmyevse-webinterface","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fbrainelectronics%2Fmyevse-webinterface/lists"}