The Knock Sensor Module

(1 customer review)
Availability:

In stock


SKU: 223504
  1. Detect shocks with the spring and send a signal to Controller Board
  2. Operating voltage: 3.3V-5V
  3. Digital output
  4. Bolt holes for easy installation.

 47.00

(Including GST)

In stock

Purchase this product now and earn 1 Robu Point!


Have any issues, Get support here.
Have a bulk requirement, mail us to [email protected]
Didn’t Find what you are looking for?

Brand: Generic
Category: Vibration/Tilt Sensor and Modules
Tags: Vibration Sensor, knock sensor

As the name suggests the Knock Sensor Module produces the Digital output on the detection of Knock i.e. vibration stroke. Further, the change in voltage level can be manipulated to produce the desired output and can be used in a variety of applications.


Code Example for Arduino Board:
int Led = 13 ;// Declaration of the LED output pin
int Sensor = 10; // Declaration of the sensor input pin
int val; // Temporary variable
   
void setup ()
{
  pinMode (Led, OUTPUT) ; // Initialization output pin
  pinMode (Sensor, INPUT) ; // Initialization sensor pin
}
   
void loop ()
{
  val = digitalRead (Sensor) ; // The current signal at the sensor will be read
   
  if (val == HIGH) // If a signal was detected , the LED will light up
  {
    digitalWrite (Led, LOW);
  }
  else
  {
    digitalWrite (Led, HIGH);
  }
}

Connections with Arduino:

  1. LED +: [Pin 13]
  2. LED -: [Pin GND]
  3. Sensor signal: [Pin 10]
  4. Sensor +V: [Pin 5V]
  5. Sensor -: [Pin GND]

Code Example for Raspberry Pi:
# Needed modules will be imported and configured
import RPi.GPIO as GPIO
import time
   
GPIO.setmode(GPIO.BCM)
   
# The input pin of the sensor will be declared. Additional to that the pull up resistor will be activated
GPIO_PIN = 24
GPIO.setup(GPIO_PIN, GPIO.IN)
   
print "Sensor-Test [press ctrl+c to end]"
   
# This output function will be started at signal detection
def outFunction(null):
        print("Signal detected")
   
# At the moment of detection a signal (falling signal edge) the output function will be activated.
GPIO.add_event_detect(GPIO_PIN, GPIO.FALLING, callback=outFunction, bouncetime=100) 
   
# main program loop
try:
        while True:
                time.sleep(1)
   
# Scavenging work after the end of the program
except KeyboardInterrupt:
        GPIO.cleanup()

Connections with Raspberry Pi:

  1. Signal: GPIO24[Pin 18]
  2. +V: 3,3V[Pin 1]
  3. GND: GND[Pin 6]

Specifications and Features: 

  1. Detect shocks with the spring and send a signal to Controller Board
  2. Operating voltage: 3.3V-5V
  3. Digital output
  4. Bolt holes for easy installation.

Package Includes:

1 x The Knock Sensor Module.

Operating voltage (v)

3.3 ~ 5

Default Output

High

Output Type

Digital

Length (mm):

19.5

Width (mm):

16

Height (mm):

7.5

Weight (g):

1

Shipping Weight 0.01 kg
Shipping Dimensions 4 × 2 × 1 cm
15 Days Warranty

This item is covered with a standard warranty of 15 days from the time of delivery against manufacturing defects only. This warranty is given for the benefit of Robu customers from any kind of manufacturing defects.  Reimbursement or replacement will be done against manufacturing defects.


What voids warranty:

If the product is subject to misuse, tampering, static discharge, accident, water or fire damage, use of chemicals & soldered or altered in any way.

Based on 1 review

5.0 overall
1
0
0
0
0

Add a review

  1. saivineeth (verified owner)

    there is no data sheet for this…please provide it

    saivineeth

Questions and answers of the customers

There are no questions yet. Be the first to ask a question about this product.

Only registered users are eligible to enter questions
Country Of Origin: China