Industrial manufacturing
Industrial Internet of Things | Industrial materials | Equipment Maintenance and Repair | Industrial programming |
home  MfgRobots >> Industrial manufacturing >  >> Manufacturing Technology >> Manufacturing process

Smart IR-Activated Water Tap Controlled by Arduino UNO – Efficient & Eco-Friendly

Components and supplies

Smart IR-Activated Water Tap Controlled by Arduino UNO – Efficient & Eco-Friendly
Arduino UNO
×1
Smart IR-Activated Water Tap Controlled by Arduino UNO – Efficient & Eco-Friendly
Texas Instruments Dual H-Bridge motor drivers L293D
×1
Smart IR-Activated Water Tap Controlled by Arduino UNO – Efficient & Eco-Friendly
Breadboard (generic)
×1
Smart IR-Activated Water Tap Controlled by Arduino UNO – Efficient & Eco-Friendly
Digilent Motor Adapter for NI myRIO
×1

Necessary tools and machines

Smart IR-Activated Water Tap Controlled by Arduino UNO – Efficient & Eco-Friendly
Hot glue gun (generic)

About this project

This project is an automatic water tab system to solve the problem of water wastage in our daily life.

Code

  • Arduino based automatic water tab using IR sensor.
Arduino based automatic water tab using IR sensor.C/C++
In this project we have made automatic water tab using Arduino and IR sensor to solve the problem of wastage of water in daily life.
#include <Servo.h>


const int SensorPin = 3;  
//int sensorValue = 0;                
int myservo = 9;
int pos = 0; 
Servo servo;

void setup() {
  
servo.attach(myservo);
}

void loop() {
  
  digitalRead(3);
  if(SensorPin==HIGH) 
  servo.attach(9);  
  pos = 90;               // start at midpoint 90 degrees
//  Speed = 3;              // servo moves 3 degrees each time left/right is pushed// attaches the servo on pin 9 to the servo object 
             // start at midpoint 90 degrees             // servo moves 3 degrees each time left/right is pushed    // Set initial position
             
}

Manufacturing process

  1. Automatic Drip Coffee Maker: History, Design, and Future Trends
  2. Build a Remote Temperature Sensor with Raspberry Pi and Python – Step‑by‑Step Guide
  3. Control an LED with a PIR Motion Sensor on Raspberry Pi
  4. Integrating the Phantom YoYo High‑Sensitivity Water Sensor with the MCP3008 ADC on Raspberry Pi
  5. Smart Motion-Activated Water Gun Built with Arduino Nano
  6. Capacitive Touch LED Switch with Arduino UNO – Easy DIY Project
  7. Precision Arduino Guitar Tuner: Fast, Accurate Automatic Tuning for Musicians
  8. Industrial IoT Monitoring: Essential Hardware Components and Setup Guide
  9. SRF04-Based Automatic Water Level Controller for Residential & Commercial Use
  10. Automatic Water Pumps: How They Operate & Why They Matter