Ks0021 keyestudio Collision Sensor: Difference between revisions

From Keyestudio Wiki
Jump to navigation Jump to search
 
(11 intermediate revisions by the same user not shown)
Line 1: Line 1:
==Introduction==
==Introduction==
Collision sensor, also known as electronic switch, is a digital on-off input module necessary for elementary electronic learning. By programming, it can realize control over light, sound device, key choice function of LCD display etc. Using 3P sensor cable to connect it to sensor shield, it can be installed to 4WD AL alloy mobile robot platform to realize collision detection function. It is both convenient and effecient.
Collision sensor, also known as electronic switch, is a digital on-off input module necessary for elementary electronic learning. <br>
Note:
By programming, it can realize control over light, sound device, key choice function of LCD display, etc. <br>
You can make a collision flasher using collision module and built-in LED on interface 13. Connect the collision senser to pin 3, when the collision sensor senses a collision signal, the LEDs on mainboard and module will light up simultaneously.
Using 3P sensor cable to connect it to sensor shield, it can be installed to 4WD alloy mobile robot platform to realize collision detection function. It is both convenient and efficient.<br>
 
<span style=color:red> '''Note:''' <br>
You can make a collision flasher using collision module and built-in LED on interface 13. <br>
Connect the collision sensor to pin 3, when the collision sensor senses a collision signal, the LEDs on main board and module will light up simultaneously.
<br>[[File:211.png|500px|frameless|thumb]]<br>
<br>[[File:211.png|500px|frameless|thumb]]<br>


<br>
==More Details==
* If collision happens upfront of where collision module is installed, module outputs low level signal; no collision, outputs high level signal.
* Module reserves M3 mounting hole, convenient for fixation on a car.
* With switch indicator light, if there is collision, light is on; no collision, light is out.


==Specification==
<br>
*1. If collision happens upfront of where collision module is installed, module outputs low level signal; no collision, outputs high level signal.
==Pin Definition==
*2. Module reserves M3 mounting hole, convenient for fixation on a car.
* '''+ pin:''' 3v-12v power supply 
*3. Module size: 3.1cm * 2.1cm
* '''- pin:''' GND 
*4. With switch indicator light, if there is collision, light is on; no collision, light is out.
* '''S pin:''' High-low level output


==Pin definition==
<br>
*1 +   3v-12v power supply 
*2 -  GND 
*3 S  Gigh-low level output
==Connection Diagram ==
==Connection Diagram ==
<br>[[File:Ks0021.png|700px|frameless|thumb]]<br>


<br>[[File:212.png|500px|frameless|thumb]]<br>
<br>
 
==Sample Code ==
==Sample Code ==
<pre>
<pre>
int Led=13;// set pin for LED  
int Led=13;// set pin for LED  
Line 42: Line 46:
digitalWrite(Led,HIGH);
digitalWrite(Led,HIGH);
}
}
}</pre>
}
</pre>
 
<br>
 
== Result ==
Wire it up well and then upload the code to the board.
When the object crashes the switch of sensor, both the led on the sensor and led 13 on the board are turned on.
<br>[[File:KS0349 8-4.png|600px|frameless|thumb]]<br>
 
<br>


==Resources ==
==Resources ==


'''Video'''
* '''Video'''<br>
http://video.keyestudio.com/ks0021/


http://www.keyestudio.com/wp/2016/05/ks0021-keyestudio-collision-sensor-module/
* '''PDF and Code'''<br>
https://fs.keyestudio.com/KS0021


'''PDF'''
<br>


https://drive.google.com/open?id=1EHXHvlzEPRlGdd1bNCtZk9Vw38Lq8vya
==Get One Now==


==Get One Now==
*[https://www.keyestudio.com/keyestudio-collision-sensor-module-for-arduino-p0396-p0396.html  '''Official Website''']
'''Official Website'''


http://www.keyestudio.com/keyestudio-collision-sensor.html
*[https://ru.aliexpress.com/store/product/Keyestudio-Crash-Collision-Sensor-Module-for-Arduino-Robot/4247007_32885617714.html?spm=a2g0v.12010615.8148356.3.284442daks4Z52  '''Shop on aliexpress''']


'''Amazon Store'''


https://www.amazon.com/Keyestudio-Collision-Sensor-Arduino-raspberry/dp/B0179DNR5U/ref=sr_1_3?ie=UTF8&qid=1479459450&sr=8-3&keywords=keyestudio+collision+sensor


[[Category: Sensor]]
[[Category: Sensor]]

Latest revision as of 14:41, 7 January 2021

Introduction

Collision sensor, also known as electronic switch, is a digital on-off input module necessary for elementary electronic learning.
By programming, it can realize control over light, sound device, key choice function of LCD display, etc.
Using 3P sensor cable to connect it to sensor shield, it can be installed to 4WD alloy mobile robot platform to realize collision detection function. It is both convenient and efficient.

Note:
You can make a collision flasher using collision module and built-in LED on interface 13.
Connect the collision sensor to pin 3, when the collision sensor senses a collision signal, the LEDs on main board and module will light up simultaneously.
thumb


More Details

  • If collision happens upfront of where collision module is installed, module outputs low level signal; no collision, outputs high level signal.
  • Module reserves M3 mounting hole, convenient for fixation on a car.
  • With switch indicator light, if there is collision, light is on; no collision, light is out.


Pin Definition

  • + pin: 3v-12v power supply
  • - pin: GND
  • S pin: High-low level output


Connection Diagram


thumb


Sample Code

int Led=13;// set pin for LED 
int Shock=3// set pin for collision sensor
;int val;// set digital variable val
void setup()
{ 
pinMode(Led,OUTPUT);// set pin LED as output
pinMode(Shock,INPUT);// set collision sensor as input
}
void loop()
{
val=digitalRead(Shock);// read value on pin 3 and assign it to val
if(val==HIGH)// when collision sensor detects a signal, LED turns on.
{
digitalWrite(Led,LOW);
} else
{
digitalWrite(Led,HIGH);
}
}


Result

Wire it up well and then upload the code to the board. When the object crashes the switch of sensor, both the led on the sensor and led 13 on the board are turned on.
thumb


Resources

  • Video

http://video.keyestudio.com/ks0021/

  • PDF and Code

https://fs.keyestudio.com/KS0021


Get One Now