miflorad: check meta data incl battery level every hour instead daily

- the battery voltage level seems to have more flexibility than one change a day
- short drops announcing end of battery life could go unnoticed
This commit is contained in:
cn 2019-05-20 18:28:29 +02:00
parent 0595d76f00
commit 143dc374cf
1 changed files with 1 additions and 1 deletions

View File

@ -126,7 +126,7 @@ func getMQTTOptions() *mqtt.ClientOptions {
func readData(peripheral *peripheral, client ble.Client) (common.SensorDataResponse, error) {
// re-request meta data (for battery level) if last check more than 24 hours ago
// Source: https://github.com/open-homeautomation/miflora/blob/ffd95c3e616df8843cc8bff99c9b60765b124092/miflora/miflora_poller.py#L92
if time.Since(peripheral.lastMetaDataFetch) >= 24*time.Hour {
if time.Since(peripheral.lastMetaDataFetch) >= 1*time.Hour {
metaData, err := impl.RequestVersionBattery(client)
if err != nil {
return common.SensorDataResponse{}, errors.Wrap(err, "can't request version battery")