diff --git a/docs/docs/faq/faq_nr2.md b/docs/docs/faq/faq_nr2.md index 2e2c6e69..62287c81 100644 --- a/docs/docs/faq/faq_nr2.md +++ b/docs/docs/faq/faq_nr2.md @@ -15,11 +15,11 @@ sensor: # Update the sensor with an average every 10th second. See - throttle_average: 10s - filter_out: NaN - - id: !extend sensor_total_daily_energy - filters: - # Update the sensor once per 0.1 kWh consumed, or every 5th minute, whichever happens sooner. - - delta: 0.01 - - heartbeat: 300s + total: + filters: + # Update the sensor once per 0.1 kWh consumed, or every 5th minute, whichever happens sooner. + - delta: 0.01 + - heartbeat: 300s ``` After applying the filters, only 396 state changes will be produced per hour. You can read more about making YAML adjustments on the [customizing the firmware](/docs/advanced/firmware_customization.mdx) page. diff --git a/docs/docs/faq/faq_nr7.md b/docs/docs/faq/faq_nr7.md index c3f48872..3089a507 100644 --- a/docs/docs/faq/faq_nr7.md +++ b/docs/docs/faq/faq_nr7.md @@ -14,8 +14,9 @@ Try to use the `left` [calculation method][method] instead of the default (`righ ```yaml title="your_glow_config.yaml" sensor: - - id: !extend sensor_total_daily_energy - method: left + - id: !extend sensor_energy_pulse_meter + total: + method: left ``` ## Related topics