Skip to content

Releases: patrickjcash/ha-moen-flo

v2.4.15: Firmware update entity

29 Mar 13:33

Choose a tag to compare

What's New in v2.4.15

Added

  • Firmware update entity — new update platform entity under Configuration on the device card. Shows your installed firmware version vs. the latest available, and displays a HA update notification badge when an upgrade is available. Firmware status is refreshed on every coordinator poll.

Changed

  • Dismiss Alerts, Reset Primary Pump Status, Reset Backup Pump Status — moved from Diagnostic to Configuration entity category to match HA conventions for user-actionable controls.

v2.4.15b1 (beta): Firmware update entity

29 Mar 13:29

Choose a tag to compare

What's New in v2.4.15b1

Added

  • Firmware update entity — new update platform entity under Configuration on the device card. Shows your installed firmware version vs. the latest available, and displays a HA update notification badge when an upgrade is available. Firmware status is refreshed on every coordinator poll.

Changed

  • Dismiss Alerts, Reset Primary Pump Status, Reset Backup Pump Status — moved from Diagnostic to Configuration entity category to match HA conventions for user-actionable controls.

v2.4.14

28 Mar 13:24

Choose a tag to compare

What's New

Water Level (renamed from "Basin Fullness") — now uses a sliding window median over the last 20 pump cycles instead of an EMA blend. Tolerates outliers and self-corrects from any broken state (e.g. rapid cycling during heavy rain) without manual intervention.

Next Pump Cycle (renamed from "Estimated Next Pump Cycle") — shows as "X minutes ago" when the pump is overdue instead of becoming unavailable.

Cleaner UI — operational sensors enabled by default; diagnostic and configuration sensors hidden by default.

Reset Primary/Backup Pump Status buttons — clear Pathway 2 alerts that can't be dismissed through normal alert flow.

Changes

  • Water Level: sliding window median (20 cycles) replaces 95/5 EMA
  • Next Pump Cycle: always computes now + estimatedTimeUntilNextRunMS
  • Disabled by default: Water Distance, Daily Pump Capacity, Pump On/Off Distance, Polling Period, Pump Cycles Last 15 Min, all pump config sensors, Critical/Warning Alerts, Flood Risk, all buttons
  • Estimated Pump On/Off Distance sensors now include history_mm attribute with raw history list
  • Alert IDs confirmed: 232 (Overflow Water Level), 254 (Critical Flood Risk), 258 (Flood Risk), 260 (Main Pump Failed), 262 (Main Pump Overwhelmed)

See CHANGELOG for full details.

v2.4.14b9 (beta)

27 Mar 13:19

Choose a tag to compare

v2.4.14b9 (beta) Pre-release
Pre-release

Rewrites pump threshold detection to use a 20-cycle sliding window median.

Changed

  • Pump threshold detection now stores the last 20 raw pump_on/pump_off readings and computes the median, replacing 95/5 exponential blending. Median tolerates up to 9 outliers out of 20 readings with no clamp logic. Self-corrects from any broken state within 20 cycles. Cold starts use however many cycles are available.
  • Removes the lookback logic (b5–b7) that caused catastrophic drift during high-frequency rain cycling by pulling in cross-cycle readings.
  • On upgrade, existing scalar thresholds migrate automatically to seed the history list.

Also

  • Alert IDs 232, 254, 258, 260, 262 confirmed with title/severity/dismiss/ack_on_clear from live high-water event data.

v2.4.14b11 (beta)

27 Mar 14:23

Choose a tag to compare

v2.4.14b11 (beta) Pre-release
Pre-release

Fixed

  • history_mm attribute not appearing on Pump On/Off Distance sensors_calculate_pump_thresholds was not including the raw history lists in its return value, so the sensor attribute resolved to None and was filtered out. History lists are now included in the returned dict.

v2.4.14b10 (beta)

27 Mar 14:11

Choose a tag to compare

v2.4.14b10 (beta) Pre-release
Pre-release

Changes

  • Entity cleanup: Reclassified and disabled-by-default many entities to reduce dashboard clutter for new users
    • "Estimated Next Pump Cycle" renamed to "Next Pump Cycle"
    • "Estimated Water Level" renamed to "Water Level"
    • Water Distance and Daily Pump Capacity moved to Diagnostic category
    • Disabled by default: Water Distance, Daily Pump Capacity, Estimated Pump On/Off Distance, Polling Period, Pump Cycles Last 15 Min, all pump configuration sensors (Primary/Backup Pump Manufacturer, Model, Install Date, Basin Diameter, Backup Test Frequency, Battery Requires Water, Backup Installed), Critical Alerts, Warning Alerts, Flood Risk, Dismiss Alerts, Reset Primary/Backup Pump Status buttons
    • Enabled by default: Active Alerts, Last Pump Cycle, Next Pump Cycle, Water Level, Temperature, Humidity, Water Detection, Battery, WiFi Signal, Connectivity, AC Power
  • Estimated Pump On/Off Distance sensors: Added history_mm attribute exposing the raw sliding window history list (up to 20 readings)

v2.4.14b7 (beta)

26 Mar 20:52

Choose a tag to compare

v2.4.14b7 (beta) Pre-release
Pre-release

Mirror pump_on lookback logic for pump_off threshold.

Fixed

  • pump_off candidate at cycle confirmation now uses min(history[-2], history[-3]) to filter single-poll upward spikes during drain, symmetric with the max() lookback used for pump_on since b5.

Full outlier protection is now symmetric on both thresholds:

  • pump_on: max of 2 pre-jump readings + >30mm-below clamp
  • pump_off: min of 2 pre-confirm readings + >30mm-above clamp

v2.4.14b6 (beta)

26 Mar 20:49

Choose a tag to compare

v2.4.14b6 (beta) Pre-release
Pre-release

Fix Estimated Water Level peaks below 100% on North pump.

Fixed

  • Outlier spikes UP in water distance during pump drain (splash/vibration) were inflating pump_off_distance via 95/5 blending. Added matching clamp: pump_off candidates more than 30mm above the stored value are skipped, symmetric with the pump_on clamp from b5.

v2.4.14b5 (beta)

26 Mar 20:44

Choose a tag to compare

v2.4.14b5 (beta) Pre-release
Pre-release

Fix Estimated Water Level drifting below 100% peak due to ToF splash outliers.

Fixed

  • Estimated Water Level peak drifts below 100% over time — ToF sensor produces spuriously low distance readings right as the pump kicks on (splash artifacts), which were being captured as the pump_on candidate and slowly pulling the stored threshold lower via 95/5 blending.

Two-layer fix:

  1. pump_on candidate now uses the max of the two readings before the detected jump, filtering single-poll spikes.
  2. Hard clamp: any pump_on candidate more than 30mm below the stored value is ignored entirely.

v2.4.14b4 (beta)

26 Mar 20:36

Choose a tag to compare

v2.4.14b4 (beta) Pre-release
Pre-release

Sensor renames, API documentation, test script cleanup.

Changed

  • "Pump ON Distance (Calculated)" → "Estimated Pump On Distance"
  • "Pump OFF Distance (Calculated)" → "Estimated Pump Off Distance"
  • "Basin Fullness" → "Estimated Water Level"
  • API docs: added full get_last_usage documentation including field reference and Moen app display logic from APK decompile
  • Archived completed investigation test scripts