Reader small image

You're reading from  Raspberry Pi Home Automation with Arduino - Second Edition

Product typeBook
Published inFeb 2015
Publisher
ISBN-139781784399207
Edition1st Edition
Right arrow
Author (1)
Andrew K. Dennis
Andrew K. Dennis
author image
Andrew K. Dennis

Andrew K. Dennis is a full stack and cybersecurity architect with over 17 years' experience who currently works for Modus Create in Reston, VA. He holds two undergraduate degrees in software engineering and creative computing and a master's degree in information security. Andy has worked in the US, Canada, and the UK in software engineering, e-learning, data science, and cybersecurity across his career, and has written four books on IoT, the Raspberry Pi, and supercomputing. His interests range from the application of pataphysics in computing to security threat modeling. Andy lives in New England and is an organizer of Security BSides CT.
Read more about Andrew K. Dennis

Right arrow

Water detection


Of course, testing for humidity might not alert us to a major leak problem. During a severe rainstorm, the basement could be flooded quickly if it relies on a sump pump and that breaks down.

One device we could use with an Arduino or attach to the Raspberry Pi via the bridge shield is a water sensor.

Seeed Studios offer such a device (http://www.seeedstudio.com/depot/Grove-Water-Sensor-p-748.html) that can be connected to either the analog or digital pins on your microcontroller.

With this device hooked up, the following example sketch can be run to check whether device is working correctly.

Note

The example sketch is available on GitHub, at https://github.com/Seeed-Studio/Grove_Water_Sensor.

Integrating this module with your existing damp detection circuit is simple. Attach the device to one of the digital pins on your Uno. Next, add the following code to your damp detection device sketch:

boolean waterDetected() {
  if(digitalRead(WATER_SENSOR) == LOW) {
     return true;
 } else...
lock icon
The rest of the page is locked
Previous PageNext Page
You have been reading a chapter from
Raspberry Pi Home Automation with Arduino - Second Edition
Published in: Feb 2015Publisher: ISBN-13: 9781784399207

Author (1)

author image
Andrew K. Dennis

Andrew K. Dennis is a full stack and cybersecurity architect with over 17 years' experience who currently works for Modus Create in Reston, VA. He holds two undergraduate degrees in software engineering and creative computing and a master's degree in information security. Andy has worked in the US, Canada, and the UK in software engineering, e-learning, data science, and cybersecurity across his career, and has written four books on IoT, the Raspberry Pi, and supercomputing. His interests range from the application of pataphysics in computing to security threat modeling. Andy lives in New England and is an organizer of Security BSides CT.
Read more about Andrew K. Dennis