Ks0111 keyestudio EASY plug Collision Sensor: Difference between revisions

From Keyestudio Wiki
Jump to navigation Jump to search
No edit summary
No edit summary
Line 1: Line 1:
[[image:ks0111图.jpg|thumb|600px|right|Keyestudio EASY plug Crasn Sensor]]
[[image:ks0111图.jpg|thumb|600px|right|Keyestudio EASY plug Crash Sensor]]


==Introduction==
==Introduction==

Revision as of 11:16, 15 January 2019

Keyestudio EASY plug Crash Sensor

Introduction

Crash sensor, also known as snap-action switch, is an electric switch that is actuated by very little physical force.
It is a digital on-off input module necessary for elementary electronic.
By programming, it can be used for the light, sound device, key function of LCD display, 3D Printer position feedback, or other devices.
Note: this sensor needs to be used together with EASY plug control board.


Specification

  • Connector: Easy plug
  • Onboard status indicator LED
  • M3 mounting hole, convenient for fixation on other devices.
  • If collision happened, outputs LOW level signal; no collision, outputs HIGH level signal.


Technical Details

  • Dimensions: 44mm*20mm*18mm
  • Weight: 5.5g


Connect It Up

Connect the EASY Plug crash sensor to control board using an RJ11 cable. Then connect the control board to your PC with a USB cable.
thumb


Upload the Code

Copy and paste below code to Arduino IDE and upload.

int Led=13;// set pin for LED
int Shock=9// 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 9 and assign it to val
if(val==HIGH)// when collision sensor detects a signal, turn LED on.
{
digitalWrite(Led,LOW);
} else
{
digitalWrite(Led,HIGH);
}
}


What You Should See

When an object crashes the metal switch of the sensor, the indicator LED is turned on. If no crash happened, LED is turned off.
thumb


Resources

Download the PDF:
https://drive.google.com/open?id=1mP-b2u7qwjHDYp-27PQ6zavx3AfS7cTI

Download the Code:
https://drive.google.com/open?id=1QL4vkMdyNsq1wynMAzaV_TGK4Kw_SxVA



Buy from