Improve exponential_moving_average alpha description (#1959)

This commit is contained in:
EdJoPaTo 2022-04-14 06:33:09 +02:00 committed by GitHub
parent fa2f486cb9
commit f2ce728684
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -398,7 +398,9 @@ out an average on a specific interval (thus increasing resolution).
Configuration variables:
- **alpha** (*Optional*, float): The forget factor/alpha value of the filter. Defaults to ``0.1``.
- **alpha** (*Optional*, float): The forget factor/alpha value of the filter.
A higher value includes more details in the output while a lower value removes more noise.
Defaults to ``0.1``.
- **send_every** (*Optional*, int): How often a sensor value should be pushed out. Defaults to ``15``.
- **send_first_at** (*Optional*, int): By default, the very first raw value on boot is immediately
published. With this parameter you can specify when the very first value is to be sent.