Solar monitoring and control daemons
Project description
evse_hub Python Package
This package provides tools and services for Modbus-based EVSE (Electric Vehicle Supply Equipment) and energy monitoring, including polling, status tracking, and integration with InfluxDB.
Structure
evse_hub/
├── cli/
│ ├── evse_online.py
│ ├── evse_poll.py
│ ├── evse_scan.py
│ ├── runtime.py
│ ├── status.py
│ └── supervisor.py
├── influx/
│ └── influx_writes.py
├── modbus/
│ ├── etrel/
│ │ ├── etrel.py
│ │ ├── modbus_reads.py
│ │ └── modbus_writes.py
│ └── modbus_device.py
├── ops/
│ └── heartbeat.py
└── tools/
├── async_tools.py
├── config.py
├── device_config.py
└── wifi.py
Main Components
CLI Tools (evse_hub/cli/)
- evse_online.py: Service for tracking online status of EVSE endpoints and writing status to JSON.
- evse_poll.py: Polls Modbus devices for master/charger data and writes to InfluxDB.
- evse_scan.py: Scans a network for Modbus TCP devices.
- runtime.py: Defines
EndpointRuntime, which holds runtime state for a Modbus endpoint. - status.py: Defines
StatusSnapshotand utilities for loading endpoint status from JSON. - supervisor.py: Orchestrates polling tasks for all endpoints, starting/stopping them based on online status.
Modbus Support (evse_hub/modbus/)
- modbus_device.py: Abstraction for Modbus TCP client connections and polling.
- etrel/modbus_reads.py: Functions for reading Etrel-specific Modbus registers.
- etrel/modbus_writes.py: Functions for writing to Etrel Modbus registers.
InfluxDB Integration (evse_hub/influx/)
- influx_writes.py: Functions for writing EVSE and master data to InfluxDB.
Utilities (evse_hub/tools/)
- async_tools.py: Async helpers for running blocking code.
- config.py: Configuration loading utilities.
- device_config.py: Endpoint configuration dataclasses and YAML loading.
- wifi.py: WiFi-related utilities.
Example: Polling and Supervising Endpoints
- Use
evse_online.pyto maintain a status file of which endpoints are online. - Use
supervisor.pyto start/stop polling tasks for each endpoint based on their online status. - Polled data is written to InfluxDB using the routines in
influx_writes.py.
Key Classes
EndpointRuntime: Holds runtime state for a single Modbus endpoint (config, client, locks, task, etc).StatusSnapshot: Immutable snapshot of endpoint online status at a given timestamp.
Key Functions
poll_endpoint: Polls a single endpoint for its configured roles.supervisor: Orchestrates the lifecycle of all endpoint runtime objects and manages their polling tasks.
This README is auto-generated from the code and docstrings in src/evse_hub/. For details on each module, see the source files and their docstrings.
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file evse_hub-0.3.0.tar.gz.
File metadata
- Download URL: evse_hub-0.3.0.tar.gz
- Upload date:
- Size: 29.9 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.12.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
f618226b2dda77f5f434c6d95c4007e929862b638a6a290b90e77fdb8bd019a5
|
|
| MD5 |
083924e89022524fe91c93591aaff2c5
|
|
| BLAKE2b-256 |
54a11287d444e29f2127825b49c906b4ac1235c66c54d127d85ce2e12f9c8426
|
File details
Details for the file evse_hub-0.3.0-py3-none-any.whl.
File metadata
- Download URL: evse_hub-0.3.0-py3-none-any.whl
- Upload date:
- Size: 24.4 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.12.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
6c2ff82be75a47d9c44b05eec106c7098526742dc596aedee9b7fac3205c353a
|
|
| MD5 |
d71fd235c3b84a2d5ae60ee3a3847d20
|
|
| BLAKE2b-256 |
e5968da5705ec95a1ed98fc54a6eb48a90ed973ae0e9ddfbe5fa64400bc21d65
|