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
Este commit está contenido en:
cn 2019-05-20 18:28:29 +02:00
padre 0595d76f00
commit 143dc374cf
Se han modificado 1 ficheros con 1 adiciones y 1 borrados

Ver fichero

@ -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")