COMMERCIAL DESIGN AND SIMULATION OF AUTOMATED HAND SANITIZER CIRCUIT ON TINKER CAD

แชร์
ฝัง
  • เผยแพร่เมื่อ 27 ก.ค. 2020
  • #Detailed Description of Circuit
    #Save Sanitizer Dispensing Action
    #Timer Based Design
    #List of Material Required for Assembly of Circuit
    #Automatic Dispenser Circuit
    #Real Time Simulation

ความคิดเห็น • 18

  • @sakshitiwatne7930
    @sakshitiwatne7930 3 ปีที่แล้ว +1

    Sir we want the code please post today

  • @amarnathreddy4173
    @amarnathreddy4173 3 ปีที่แล้ว +1

    Sir can you please share the code

  • @patelakash9154
    @patelakash9154 3 ปีที่แล้ว

    without aurdino ane timer hand sanitizer machine ..

    • @patelakash9154
      @patelakash9154 3 ปีที่แล้ว

      hand sanitizer machine circuit diagram with diagram banao na ...

    • @jjsedu-tech9047
      @jjsedu-tech9047  3 ปีที่แล้ว

      The whole circuit is in video and its aurdino based

    • @amarnathreddy4173
      @amarnathreddy4173 3 ปีที่แล้ว

      Sir can you share the code

  • @sakshitiwatne7930
    @sakshitiwatne7930 3 ปีที่แล้ว

    Sir code?

  • @sakshitiwatne7930
    @sakshitiwatne7930 3 ปีที่แล้ว

    It's urgent for project submission

    • @jjsedu-tech9047
      @jjsedu-tech9047  3 ปีที่แล้ว

      Ya sure 👍

    • @sakshitiwatne7930
      @sakshitiwatne7930 3 ปีที่แล้ว

      Where are you uploading the code sir

    • @jjsedu-tech9047
      @jjsedu-tech9047  3 ปีที่แล้ว

      In comment section

    • @jjsedu-tech9047
      @jjsedu-tech9047  3 ปีที่แล้ว

      Send me ur email

    • @jjsedu-tech9047
      @jjsedu-tech9047  3 ปีที่แล้ว

      const int echo=10;
      const int trig=9;
      const int led=7;
      const int motor=4;
      // defining variables
      long duration;
      int distance;
      void setup()
      {
      pinMode(trig, OUTPUT); // Sets the trigPin as an Output
      pinMode(echo, INPUT);
      pinMode(led,OUTPUT);
      pinMode(motor,OUTPUT);
      Serial.begin(9600); // Starts the serial communication
      }
      void loop()
      {
      // Clears the trigPin
      digitalWrite(trig, LOW);
      delayMicroseconds(2);
      // Sets the trigPin on HIGH state for 10 micro seconds
      digitalWrite(trig, HIGH);
      delayMicroseconds(10);
      digitalWrite(trig, LOW);
      // Reads the echoPin, returns the sound wave travel time in microseconds
      duration = pulseIn(echo, HIGH);
      // Calculating the distance
      distance= duration*0.034/2;
      // Prints the distance on the Serial Monitor
      if(distance>=170)
      {
      digitalWrite(led,HIGH);
      digitalWrite(motor,HIGH);
      Serial.print(distance);
      delay(20000);
      digitalWrite(led,LOW);
      digitalWrite(motor,LOW);
      delay(20000);
      }
      else
      {
      digitalWrite(led,LOW);
      digitalWrite(motor,LOW);
      delay(500);
      }
      }