Crates.io | energyleaf-proto |
lib.rs | energyleaf-proto |
version | 1.0.1 |
source | src |
created_at | 2024-06-04 16:22:43.399535 |
updated_at | 2024-06-27 13:52:22.324651 |
description | Protobuf definitions for Energyleaf |
homepage | |
repository | https://github.com/pgenergy/Protocol |
max_upload_size | |
id | 1261698 |
size | 6,982 |
Contains the protobuf files to interact with the energyleaf backend.
Install energyleaf-proto
cargo add energyleaf-proto
syntax = "proto3";
package energyleaf;
enum SensorType {
ANALOG_ELECTRICITY = 0;
DIGITAL_ELECTRICITY = 1;
GAS = 2;
WATER = 3;
}
message TokenRequest {
string client_id = 1;
SensorType type = 2;
optional bool need_script = 3;
}
message TokenResponse {
optional string access_token = 1;
optional uint32 expires_in =
2; // in seconds (look documentation for correct value)
uint32 status = 3; // In range of 200-299 correct, else bad
optional string status_message = 4;
optional string script = 5;
optional uint32 analog_rotation_per_kwh = 6;
}
message SensorDataRequest {
string access_token = 1;
SensorType type = 2;
double value = 3; // kWh total
optional double value_current = 4; // W currently
optional double value_out = 5; // kWh total out (e.g. pv)
optional uint64 timestamp = 6;
}
message SensorDataResponse {
uint32 status = 1; // In range of 200-299 correct, else bad
optional string status_message = 2;
}
message ScriptAcceptedRequest { string access_token = 1; }
message ScriptAcceptedResponse {
uint32 status = 1;
optional string status_message = 2;
}