Salah UddinIoT-BangladeshSabiha Sultana
Published © LGPL

Shoes disinfection mat (con tactless)

An automated sanitizing system for shoes is presented throughout this project. Shoe sanitizer is used to disinfect shoes.

IntermediateFull instructions providedOver 1 day1,532
Shoes disinfection mat (con tactless)

Things used in this project

Hardware components

Arduino UNO
Arduino UNO
×1
Arduino MKR1000
Arduino MKR1000
×1
IR Range Sensor
Digilent IR Range Sensor
×1
MOSFET Transistor, Switching
MOSFET Transistor, Switching
×1
SG90 Micro-servo motor
SG90 Micro-servo motor
×1

Software apps and online services

Arduino IDE
Arduino IDE

Hand tools and fabrication machines

Hot glue gun (generic)
Hot glue gun (generic)
Soldering iron (generic)
Soldering iron (generic)
10 Pc. Jumper Wire Kit, 5 cm Long
10 Pc. Jumper Wire Kit, 5 cm Long

Story

Read more

Schematics

circuit diagram

Code

source

Arduino
const int buttonPin = 2;     
const int ledPin =  13;      
const int motorPin =  8;      
int buttonState = 0;         

void setup() {
    pinMode(ledPin, OUTPUT);
    pinMode(buttonPin, INPUT);
    pinMode(motorPin, OUTPUT);
}

void loop() {
  buttonState = digitalRead(buttonPin);
  if (buttonState == HIGH) {
    digitalWrite(ledPin, HIGH);
    digitalWrite(motorPin, LOW);
  } 
  else {
    digitalWrite(ledPin, LOW);
    digitalWrite(motorPin, HIGH);
  }
}

Credits

Salah Uddin
44 projects • 149 followers
Technology and IoT Hacker, Robot Killer and Drone lover.
Contact
IoT-Bangladesh
19 projects • 50 followers
Contact
Sabiha Sultana
5 projects • 13 followers
Contact

Comments

Please log in or sign up to comment.