How to Use / Work with Vibration Sensors

Поділитися
Вставка
  • Опубліковано 8 січ 2025

КОМЕНТАРІ • 51

  • @maryachan6027
    @maryachan6027 10 місяців тому +1

    Thank you this really helps me with school ❤

  • @harshithav8182
    @harshithav8182 3 роки тому +1

    It worked.Simple and easy Thank you.

    • @The.Innovative.Indian
      @The.Innovative.Indian  3 роки тому

      You're welcome!

    • @Sp_ark
      @Sp_ark 2 роки тому

      @@The.Innovative.Indian I want to make a vibration wrist band that will measure low medium and high vibration .At the same time different LED will blink for low ,medium and high. Can you please advice me urgently ?

  • @i_am_priyadharshinii
    @i_am_priyadharshinii 3 роки тому +1

    Superb explanation bro..I have gained many knowledge

    • @The.Innovative.Indian
      @The.Innovative.Indian  2 роки тому

      Thank you so much for appreciating the video please keep watching my videos

  • @attrend
    @attrend 4 роки тому +2

    Can I use work without aurdino.pls video

    • @The.Innovative.Indian
      @The.Innovative.Indian  4 роки тому

      Yes you can ... but in that case you need a hardware which can be on and off with a trigger

  • @ARJUNBRUP
    @ARJUNBRUP 8 місяців тому +1

    What is the work of blue potential meter blue box

    • @The.Innovative.Indian
      @The.Innovative.Indian  8 місяців тому

      Rotate this blue color potential meter in a clockwise or anti-clochwise direction with the help of a screwdriver to increase and decrease the sensitivity of this vibration sensor.

  • @nurmuhammad9244
    @nurmuhammad9244 2 роки тому +1

    hye is there possible to use this sensor for project about condition based maintenance motor based on vibration, its basically to differentiate the condition of the motor by their vibration

    • @The.Innovative.Indian
      @The.Innovative.Indian  2 роки тому

      Yes you can use but there are changes to get errors in the reading....... instead of this you can use vibration sensor used in the car. that sensor is more reliable and durable ....

    • @blengblong01712
      @blengblong01712 Рік тому

      ​@@The.Innovative.Indian I have the same idea as his. Do you think I could use an accelerometer instead for more reliable readings?

  • @sudhasenthilkumar5498
    @sudhasenthilkumar5498 3 місяці тому +1

    What programming language you are using

  • @Sp_ark
    @Sp_ark 2 роки тому +1

    @circuit bazaar I want to make a vibration wrist band that will measure low medium and high vibration .At the same time different LED will blink for low ,medium and high. Can you please advice me urgently ?

    • @The.Innovative.Indian
      @The.Innovative.Indian  2 роки тому

      for that you can use analog output vibration sensor and feed the signal to arduino for the Programming... it's easy to make ....

    • @Pastpresentfuture8644
      @Pastpresentfuture8644 2 роки тому

      @@The.Innovative.Indian can you please check you email.I sent detail info to your email that is added with your channel. Kindly give me a reply there.

    • @Sp_ark
      @Sp_ark 2 роки тому

      @@The.Innovative.Indiancan you explain a bit. If I make this do I have to attach arduino with vibration circuit.hope you would understand.I want to make a wrist band a bit small. I sent you an email could you please respond me.

  • @raginis.t561
    @raginis.t561 2 роки тому +1

    It is possible to create a warning watch using this method of sensor...?

    • @The.Innovative.Indian
      @The.Innovative.Indian  2 роки тому

      Absolutely , you can create any type of circuit using this vibration sensor

  • @abmaasir5792
    @abmaasir5792 3 роки тому +1

    thank you for your simply explained.👍👍
    Bro... i am trying to do a final year project it is a reduce human elephant conflict using the arduino, if you have any idea about that so please give some tips for that.

    • @The.Innovative.Indian
      @The.Innovative.Indian  3 роки тому

      how you will avoid conflict ??

    • @Sp_ark
      @Sp_ark 2 роки тому

      @@The.Innovative.Indian I want to make a vibration wrist band that will measure low medium and high vibration .At the same time different LED will blink for low ,medium and high. Can you please advice me urgently ?

  • @Masiyamusic
    @Masiyamusic 2 роки тому +1

    can i use this to turn an alarm on , eg a siren for 1 min?

    • @The.Innovative.Indian
      @The.Innovative.Indian  2 роки тому

      Yes you can use this for that purpose but in that case you have to use either microcontroller or 555 timer

  • @kumudhaicdspolur2671
    @kumudhaicdspolur2671 3 роки тому +1

    What value is displayed on Serial monitor... valus define?

  • @lokeshd5753
    @lokeshd5753 3 роки тому +1

    What is unit measured by vibration sensor in serial monitor

  • @moulitachakraborty147
    @moulitachakraborty147 2 роки тому +1

    what is the name of the model of the sensor?

  • @abdulkaif123go_yt
    @abdulkaif123go_yt 2 роки тому +1

    What is the name of this vibration sensor

  • @kumudhaicdspolur2671
    @kumudhaicdspolur2671 3 роки тому +2

    Code & circuit diagram?

  • @killgroth8092
    @killgroth8092 Рік тому +1

    NO DIAGRAM AND CODES ON THE DESCRIPTION
    I WISH U NOTICE US

    • @The.Innovative.Indian
      @The.Innovative.Indian  Рік тому +1

      ok please mail at circuitsbazaar@gmail.com i'll send you the data right away.

    • @The.Innovative.Indian
      @The.Innovative.Indian  Рік тому +1

      Connections Are like this:-
      Vibration Sensor Arduino Uno
      | |
      |--- Signal (S) ----| Digital Pin 2
      |--- GND -----------| GND
      |--- VCC -----------| 5V
      Coding is like this :-
      const int vibrationPin = 2; // Connect the sensor signal pin to digital pin 2
      void setup() {
      pinMode(vibrationPin, INPUT); // Set the sensor pin as an input
      Serial.begin(9600); // Start serial communication
      }
      void loop() {
      int sensorValue = digitalRead(vibrationPin); // Read the sensor value
      if (sensorValue == HIGH) {
      Serial.println("Vibration detected!"); // Print a message when vibration is detected
      }
      delay(500); // Add a small delay to avoid rapid multiple readings
      }

  • @chamarawimalaweera1420
    @chamarawimalaweera1420 Рік тому +1

    Please provide the code and circuit diagram

    • @The.Innovative.Indian
      @The.Innovative.Indian  Рік тому

      Connections Are like this:-
      Vibration Sensor Arduino Uno
      | |
      |--- Signal (S) ----| Digital Pin 2
      |--- GND -----------| GND
      |--- VCC -----------| 5V
      Coding is like this :-
      const int vibrationPin = 2; // Connect the sensor signal pin to digital pin 2
      void setup() {
      pinMode(vibrationPin, INPUT); // Set the sensor pin as an input
      Serial.begin(9600); // Start serial communication
      }
      void loop() {
      int sensorValue = digitalRead(vibrationPin); // Read the sensor value
      if (sensorValue == HIGH) {
      Serial.println("Vibration detected!"); // Print a message when vibration is detected
      }
      delay(500); // Add a small delay to avoid rapid multiple readings
      }

  • @mayankbisht2441
    @mayankbisht2441 2 місяці тому

    please give me all components name

  • @sudhasenthilkumar5498
    @sudhasenthilkumar5498 3 місяці тому +1

    Bro pls it is urgent

  • @ARJUNBRUP
    @ARJUNBRUP 8 місяців тому +1

    What is the work of blue potential meter blue box

    • @The.Innovative.Indian
      @The.Innovative.Indian  8 місяців тому

      This blue color potential meter can increase and decrease the sensitivity of this vibration sensor.