Water Management Report
Water Management Report
Water is an important resource for all the livings on the earth. In that, some people are
not getting sufficient amount of water because of unequal distribution. We can use this
approach so that everyone gets the equal amount of water. It is also used to avoid the
wastage of water during the distribution period. In the previous method, the employee
will go to that place and open the valve for a particular duration, then again the employee
will go to the same place and close the valve, it is waste of time.
The proposed system is fully automated. Here human work and time are saved. To ensure
the safe supply of drinking water the quality should be monitored in real time for that
purpose new approach IOT (Internet of Things) based water quality monitoring has been
proposed. In this project, we will implement the design of IOT base water quality
monitoring system that monitors the quality of water in real time. This system consists
some sensors which measure the water quality parameter. The real-time monitoring of
water resources information will benefit the water resources management department
and the public.
The primary concept of real-time IOT based water resources information system is to
provide comprehensive and accurate information. The system is developed through
defining some explicit water resource parameters then, Water level and flow parameter
are defined for water measure & management, followed by a sensor network for water
resources information monitoring is constructed based on IOT.
1
Chapter-2
Water flow sensor is connected to NodeMCU . The output of water flow sensor is
given to is given to nodeMCU for the purpose of display. Water flow sensor
continuously calculate the water flow and calculated data is send to nodeMCU.
2
Schematic Diagram
NodeMCU and water flow sensor are connected as shown in above image.
1. Yellow wire of water flow sensor is connected to the D2(digital) pin of nodeMCU.
2. Red pin of water flow sensor is connected to the 3V3 pin of nodeMCU. 3V3 pin output a
3. While black wire of water flow sensor is connected to the ground pin of nodeMCU.
3
3.3 Original Photograph of Working Project
4
Hardware Design Description
1. NodeMC
2. Water Flow Sensor
3. Computer with Software
4. Jumper Wire
Program
#include <Arduino.h>
#include <EEPROM.h>
#include <ESP8266WiFi.h>
#include <ESP8266HTTPClient.h>
const int buttonPin = D2; // variable for D2 pin int contagem = 0; // variable to
store the “rise ups” from the flowmeter pulses int litres = 0; char
5
//SSID and PASSWORD for the AP (swap the XXXXX for real ssid and password )
HTTPClient http;
//Webserver init
WiFiServer server(80);
//Interrupt function, so that the counting of pulse “rise ups” dont interfere with the rest
contagem++;
} void
setup() {
Serial.begin(115200); delay(10);
EEPROM.begin(1);
litres=EEPROM.read(addr);
6
// Initialization of the variable “buttonPin” as INPUT (D2 pin) pinMode(buttonPin,
INPUT);
(WiFi.status() != WL_CONNECTED) {
WiFi.begin(WIFINAME, PASS);
delay(500);
Serial.print(".");
Serial.println("");
Serial.println("WiFi Connected");
Serial.println(WiFi.localIP());
7
} void loop() {
litros++;
Serial.printl
n();
Serial.print("Litros: ");
Serial.print(litros);
//Write the new litres value to the EEPROM and put “contagem” variable to zero
EEPROM.write(addr, litros);
EEPROM.commit(); contagem
= 0;
if (WiFi.status() == WL_CONNECTED) {
8
String stringTempratureURL = "http://class.shoolinlabs.com/2/?temprature=";
http.begin(stringTempratureURL);
(httpCode > 0) {
Serial.println(httpCode);
delay(3000);
9
Advantages
1. Power Saver
Living in an age where we need to be more conscious of the energy that we use, a smart
water management systemm is ideal at saving power. Normally, regulating water levels
can consume electricity and wast water. However, with automatic controllers, the
2. Money Saver
A water level controller helps save money by limiting the waste of water and electricity.
These devices accurately regulate how much energy is used to protect against any
unnecessary water/electricity usage. Over time, the money saved is quite substantial.
3. Automatic
Another notable advantage with these devices is that they regulate on their own.
Eliminating manual operations with a timer switch, the frustrations of manual monitoring
water tanks is minimized. Water levels are maintained at the appropriate levels thanks to
4. Water Maximization
On average, water pumps are used more during mid day. A water management system
can maximize the water usage provided during mid day while automatically lessening
the water usage at night. This results to an appropriate level of water at all times being
10
maintained, while providing you with the maximum use of your water at the appropriate
times.
Addressing the durability problems found in earlier designs, the solid state electronics in
the newer models help to eliminate them. Not only do they help to eliminate the
durability issues, but they also create considerable savings of the life span of the unit
with an advanced modular design. In order to minimize problem areas of these designs,
the only moving parts are the relays. These relays are easily replaced and tested by any
Proving to be less costly, over time, than the original float design for the ‘toilet tank’.
The solid state electronics are designed to minimize volt usage (less than 1 volt). This
directly minimizes the mineral fouling, plating, rusting, and deterioration of probes,
proving to be safer and more efficient. These factors extend the life span of the
These new solid state electronics, and integrated electronics, offer superior performance,
hassle-free installation, and lower cost to operate over time when compared to the
lifespan of the original design. For continuous monitoring, the integrated firmware and
digital dry-contact circuitry easily and quickly connect to the automation systems of a
building. Each function of the integrated electronics and relays use LED lights to offer
operators the ability to visually scan them in order to verify proper operations.
11
Disadvantages
• No Warranty or Guarantee
Applications
• Pump controller
Future Expansion
12
• Rain water harvesting can be done with which water supply can be done so that we could conserve
water drastically.
• Routine watering of trees, plants can be done in order to avoid wastage of water.
• In future we can also detect the water level and predict whether water scarcity may come or not
using Micro-strategy concept using Java programming language.
13
14
****
15