Reduce poll interval for Hoymiles to 5 minutes

This commit is contained in:
Paul van Tilburg 2023-01-14 13:03:26 +01:00
parent 536b1564b9
commit 01416ee136
Signed by: paul
GPG Key ID: C6DE073EDA9EEC4D
1 changed files with 1 additions and 1 deletions

View File

@ -18,7 +18,7 @@ use crate::Status;
const BASE_URL: &str = "https://global.hoymiles.com/platform/api/gateway";
/// The interval between data polls (in seconds).
const POLL_INTERVAL: u64 = 900;
const POLL_INTERVAL: u64 = 300;
/// The configuration necessary to access the Hoymiles.
#[derive(Debug, Deserialize)]