Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Improve validation for Acurite 896 rain gauge, set priority to 10, and re-enable by default #2430

Merged
merged 3 commits into from
Mar 18, 2023
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Remove trailing space
  • Loading branch information
homeautomaton committed Mar 18, 2023
commit f55119a5d916d2c0991acbaf72450d42cf441a8c
2 changes: 1 addition & 1 deletion src/devices/acurite.c
Original file line number Diff line number Diff line change
Expand Up @@ -176,7 +176,7 @@ static int acurite_rain_896_decode(r_device *decoder, bitbuffer_t *bitbuffer)
if (bitbuffer->bits_per_row[0] < 24)
return DECODE_ABORT_LENGTH;

if (bitbuffer->num_rows < 12)
if (bitbuffer->num_rows < 12)
return DECODE_ABORT_EARLY; // likely Oregon V1, not AcuRite


Expand Down