I don't know why I did this. But you could use this to get better insight into your water bill. I would not suggest this if you happen to live with other people, however.
Logging Flushes to the Cloud
To make the experience fit your profile, pick a username and tell us what interests you.
We found and based on your interests.
I don't know why I did this. But you could use this to get better insight into your water bill. I would not suggest this if you happen to live with other people, however.
Idea: this should be able to detect if it's taking too long to refill the tank. It should then alert, or even jiggle the handle itself (though I'm not handy with servos).
I've completed a prototype, but the following needs doing:
Here's the current code:
#define SWITCH_PIN 3
void setup () {
attachInterrupt(SWITCH_PIN, flush, FALLING);
}
void flush() {
Particle.publish("flush");
}
void loop () {}
Create an account to leave a comment. Already have an account? Log In.
I'll post the link once I've got a more permanent solution (and fix some of the triggering issues)--right now it's just running on a power bank.
Become a member to follow this project and never miss any updates
Where's the website?