solaredge-0.1.6 has been yanked.
solaredge
Documentation
Usage
Add this to your Cargo.toml:
[dependencies]
solaredge = "0.1.6"
Asynchronous SolarEdge API client for Rust
Work in progress, only basic API is implemented so far. See todo markers in
client.rs for
the specific missing functions.
Enables access the SolarEdge equipment API (solar panels, inverters, meters) with the nice typed Rust interface.
The library requires an HTTP client, but is client-agnostic. You can use any client that implements
HttpClientAdapter interface.
Check solaredge-reqwest for an implementation based
on reqwest.
Sample usage with solaredge-reqwest:
use ;
use ReqwestAdapter;
async
License: LGPL-3.0