Platform: raspberrypi
Plugin/Hardware: P1 smart meter USb
Description:
Since the upgrade to 2026.1, the water meter readings from P1 seem incorrect. The usage for the current day is correct, but past days are wrong. Here is an annotated example from a holiday period with very little usage.
Code: Select all
"DateTime","Water"
"2026-03-02 00:00:00", // values was indeed 0 on these days
"2026-03-03 00:00:00",
"2026-03-04 00:00:00",
"2026-03-05 00:00:00",
"2026-03-06 00:00:00",
"2026-03-07 00:00:00",
"2026-03-08 00:00:00",
"2026-03-09 00:00:00",91 // probably correct
"2026-03-10 00:00:00",3 // probably wrong
"2026-03-11 00:00:00",3 // certainly wrong, same value as previous day
"2026-03-12 00:00:00",3 // certainly wrong, same value as previous day
"2026-03-13 00:00:00",3 // certainly wrong, same value as previous day
"2026-03-14 00:00:00",21 // probably wrong (I think it was 12)
"2026-03-15 00:00:00",21 // certainly wrong, same value as previous day
"2026-03-16 00:00:00",21 // certainly wrong, same value as previous day
"2026-03-17 00:00:00",21 // certainly wrong, same value as previous day
"2026-03-18 00:00:00",21 // certainly wrong, same value as previous day
"2026-03-19 00:00:00",21 // certainly wrong, same value as previous day
"2026-03-20 00:00:00",21 // certainly wrong, same value as previous day
"2026-03-21 00:00:00",21 // certainly wrong, same value as previous day
"2026-03-22 00:00:00",21 // certainly wrong, same value as previous day
"2026-03-23 00:00:00",21 // certainly wrong, same value as previous day
"2026-03-24 00:00:00",21 // certainly wrong, same value as previous day
"2026-03-25 00:00:00",21 // certainly wrong, same value as previous day
"2026-03-26 00:00:00",21 // certainly wrong, same value as previous day
"2026-03-27 00:00:00",21 // certainly wrong, same value as previous day
"2026-03-28 00:00:00",21 // certainly wrong, same value as previous day
"2026-03-29 00:00:00",21 // certainly wrong, it was 343 on the day itself
"2026-03-30 00:00:00",43 // correct (for now)
Code: Select all
sqlite> select * from meter_calendar where devicerowid=7 order by Date desc limit 20;
7|343|151659|5.6502|2026-03-29
7|0|151316|0.0|2026-03-28
7|0|151316|0.0|2026-03-27
7|0|151316|0.0|2026-03-26
7|0|151316|0.0|2026-03-25
7|0|151316|0.0|2026-03-24
7|0|151316|0.0|2026-03-23
7|0|151316|0.0|2026-03-22
7|0|151316|0.0|2026-03-21
7|0|151316|0.0|2026-03-20
7|0|151316|0.0|2026-03-19
7|0|151316|0.0|2026-03-18
7|0|151316|0.0|2026-03-17
7|0|151316|0.0|2026-03-16
7|0|151316|0.0|2026-03-15
7|0|151316|0.0|2026-03-14
7|12|151316|0.1977|2026-03-13
7|0|151304|0.0|2026-03-12
7|0|151304|0.0|2026-03-11
7|0|151304|0.0|2026-03-10

