elektrobot.hu elektrobot.hu
\ Loading news...
/
Új vagy? Klikk! Tudtad-e? GYIK Miért mi?
Menü
  
Robotika  »  Szenzorok, léptetőmotorok, vezérlés  »  Szenzorok, Szenzor modulok  » 
Fém érintés szenzor, Human touch szenzor (emberi érintés szenzor)
KY-036 Metal Touch Sensor Module
Cikkszám: #5107
Cikkszám: #5107
Magyarországról szállítás 100% magyar cég! 100% magyar raktár!
      990 Ft     (Bruttó) Ár:  490 Ft
(Bruttó) Ár: 990 Ft
490 Ft
Raktáron Raktáron
db Kosárba tesz Kosárba tesz
Fém érintés szenzor, Human touch szenzor (emberi érintés szenzor)
Fém érintés szenzor, Human touch szenzor (emberi érintés szenzor)
Fém érintés szenzor, Human touch szenzor (emberi érintés szenzor)
Fém érintés szenzor, Human touch szenzor (emberi érintés szenzor)
Fém érintés szenzor, Human touch szenzor (emberi érintés szenzor)
Fém érintés szenzor, Human touch szenzor (emberi érintés szenzor)
Fém érintés szenzor, Human touch szenzor (emberi érintés szenzor)

"Fém érintés szenzor", mely alkalmas pl. emberi érintés detektálásra.
Állítható érzékenységgel, digitális és analóg kimenettel is.

A KY-036 érzékelő egy ütés-, rezgés- és érintésérzékelő, amelyet tipikusan az ütés vagy rezgés jelenlétének észlelésére használnak. Ez egy egyszerű elektronikus komponens, amely rezgés vagy érintés hatására jelet ad az áramkörnek. A KY-036 egy fémérintkezős mechanikus kapcsolóra épül, amely rezgés vagy ütés hatására záródik, így digitális vagy analóg jelet állít elő.

Főbb részei és működése:

  1. Érzékelő része: A KY-036 modulon egy érzékelő található, amely az érintést, ütést vagy rezgést érzékeli. Mechanikailag működik, tehát az érzékelő érintkezők záródása hatására történik meg a jeladás.

  2. Digitális és analóg kimenet:

    • Digitális kimenet (DO): Amikor az érzékelő rezgést vagy ütést érzékel, a digitális kimeneten HIGH (logikai 1) vagy LOW (logikai 0) jelszint változik.
    • Analóg kimenet (AO): Az érzékelés intenzitásától függően az analóg kimeneten egy feszültségérték jelenik meg. Ezt fel lehet használni arra, hogy mérjük az érzékelés erősségét.
  3. Érzékenység beállítása: A modulon egy potenciométer található, amelyet arra használhatsz, hogy beállítsd az érzékelő érzékenységét. Minél érzékenyebbre állítod, annál kisebb rezgés is kiváltja a kapcsolást.

Hogyan használjuk:

  • A KY-036 modult könnyen integrálhatod mikrokontrollerekhez, például Arduinohoz, ahol az érzékelő DO vagy AO lábát csatlakoztatod a mikrokontroller bemeneti portjához.
  • Ha a DO lábat használod, az érzékelő akkor küld jelet, amikor észleli a rezgést vagy ütést (binary: 1 vagy 0).
  • Ha a AO lábat használod, akkor analóg jelet kapsz, amely az érzékelés erősségét jelzi.

Alkalmazások:


  • Ütések és rezgések érzékelése.
  • Biztonsági rendszerekben rezgés vagy ütés alapú érzékelés.
  • Érintésérzékeny kapcsolók.

A KY-036 egyszerűen használható érzékelő, amely mechanikai rezgéseket és érintéseket érzékel, ezáltal jeleket generál egy mikrokontroller számára.


Specification:
Working voltage: for DC 5V
Single channel signal output
Low level output signal used for human body touch sensor alarm
Adjustable sensitivity
With fixed bolt hole for easy installation
Forum link: facebook.com/123Neonado
Material: PCB + Brass
Dimensions: 43 x 16 x 15 mm / 1.69 x 0.63 x 0.59 inch
Weight: 3 g / 0.11 oz
Color: red + blue

Technical data / Short description

Outputs a signal if the metal pike of the Sensor was touched. You can adjust the sensitivity of the sensor with the controller.

Digital Out: At the moment of contact detection, a signal will be outputted. 

Analog Out: Direct measuring value of the sensor unit.


LED1: Shows that the sensor is supplied with voltage 

LED2: Shows that the sensor detects a magnetic field

Pinout

4 dig V G An eng.png

Functionality of the sensor

The sensor has 3 main components on its circuit board. First, the sensor unit at the front of the module which measures the area physically and sends an analog signal to the second unit, the amplifier. The amplifier amplifies the signal, according to the resistant value of the potentiometer, and sends the signal to the analog output of the module.
The third component is a comparator which switches the digital out and the LED if the signal falls under a specific value.
You can control the sensitivity by adjusting the potentiometer.


Please notice: The signal will be inverted; that means that if you measure a high value, it is shown as a low voltage value at the analog output.



sens-poti.jpg


This sensor doesn't show absolute values (like exact temperature in °C or magneticfield strenght in mT).
It is a relative measurement: you define an extreme value to a given normal environment situation and a signal will be send if the measurement exceeds the extreme value.


It is perfect for temperature control (KY-028), proximity switch (KY-024, KY-025, KY-036), detecting alarms (KY-037, KY-038) or rotary encoder (KY-026).

Code example Arduino

The program reads the current voltage value which will be measured at the output pin and shows it via serial interface.


Additional to that the status of the digital pin will be shown at the terminal which means if the extreme value was exceeded or not.

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
// Declaration and initialization of the input pin
int Analog_Eingang = A0; // X-axis-signal
int Digital_Eingang = 3; // Button
  
void setup ()
{
  pinMode (Analog_Eingang, INPUT);
  pinMode (Digital_Eingang, INPUT);
       
  Serial.begin (9600); // Serial output with 9600 bps
}
  
// The program reads the current value of the input pins
// and outputs it via serial out
void loop ()
{
  float Analog;
  int Digital;
    
  // Current value will be read and converted to the voltage
  Analog = analogRead (Analog_Eingang) * (5.0 / 1023.0);
  Digital = digitalRead (Digital_Eingang);
    
  // and outputted here
  Serial.print ("Analog voltage value:"); Serial.print (Analog, 4);  Serial.print ("V, ");
  Serial.print ("Extreme value:");
  
  if(Digital==1)
  {
      Serial.println (" reached");
  }
  else
  {
      Serial.println (" not reached yet");
  }
  Serial.println ("----------------------------------------------------------------");
  delay (200);
}

Connections Arduino:

digital Signal=[Pin 3]
+V=[Pin 5V]
GND=[Pin GND]
analog Signal=[Pin 0]

Example program download

KY-036_metal-touch-sensor-module

Code example Raspberry Pi

!! Attention !! Analog Sensor  !! Attention !!

Unlike the Arduino, the Raspberry Pi doesn't provide an ADC (Analog Digital Converter) on its Chip. This limits the Raspbery Pi if you want to use a non digital Sensor.

To evade this, use our Sensorkit X40 with the KY-053 module, which provides a 16 Bit ADC, which can be used with the Raspberry Pi, to upgrade it with 4 additional analog input pins. This module is connected via I2C to the Raspberry Pi.
It measures the analog data and converts it into a digital signal which is suitable for the Raspberry Pi.

So we recommend to use the KY-053 ADC if you want to use analog sensors along with the Raspberry Pi.

For more information please look at the infosite: KY-053 Analog Digital Converter

!! Attention !! Analog Sensor  !! Attention !!

The program uses the specific ADS1x15 and I2C python-libraries from the company Adafruit to control the ADS1115 ADC. You can find these here: [https://github.com/adafruit/Adafruit-Raspberry-Pi-Python-Code] published under the  BSD-License [Link]. You can find the needed libraries in the lower download package.

The program reads the current values of the input pins and outputs it at the terminal in [mV].

Additional to that, the status of the digital pin will shown at the terminak to show if the extreme value was exceeded or not.

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
#############################################################################################################
### Copyright by Joy-IT
### Published under Creative Commons Attribution-NonCommercial-ShareAlike 3.0 Unported License
### Commercial use only after permission is requested and granted
###
### KY-053 Analog Digital Converter - Raspberry Pi Python Code Example
###
#############################################################################################################
 
 
# This code is using the ADS1115 and the I2C Python Library for Raspberry Pi
# This was published on the following link under the BSD license
from Adafruit_ADS1x15 import ADS1x15
from time import sleep
 
# import needed modules
import math, signal, sys, os
import RPi.GPIO as GPIO
GPIO.setmode(GPIO.BCM)
GPIO.setwarnings(False)
 
# initialise variables
delayTime = 0.5 # in Sekunden
 
# assigning the ADS1x15 ADC
 
ADS1015 = 0x00  # 12-bit ADC
ADS1115 = 0x01  # 16-bit
 
# choosing the amplifing gain
gain = 4096  # +/- 4.096V
# gain = 2048  # +/- 2.048V
# gain = 1024  # +/- 1.024V
# gain = 512   # +/- 0.512V
# gain = 256   # +/- 0.256V
 
# choosing the sampling rate
# sps = 8    # 8 Samples per second
# sps = 16   # 16 Samples per second
# sps = 32   # 32 Samples per second
sps = 64   # 64 Samples per second
# sps = 128  # 128 Samples per second
# sps = 250  # 250 Samples per second
# sps = 475  # 475 Samples per second
# sps = 860  # 860 Samples per second
 
# assigning the ADC-Channel (1-4)
adc_channel_0 = 0    # Channel 0
adc_channel_1 = 1    # Channel 1
adc_channel_2 = 2    # Channel 2
adc_channel_3 = 3    # Channel 3
 
# initialise ADC (ADS1115)
adc = ADS1x15(ic=ADS1115)
 
# Input pin for the digital signal will be picked here
Digital_PIN = 24
GPIO.setup(Digital_PIN, GPIO.IN, pull_up_down = GPIO.PUD_OFF)
  
#############################################################################################################
  
# ########
# main program loop
# ########
# The program reads the current value of the input pin
# and shows it at the terminal
  
try:
        while True:
                #Current values will be recorded
                analog = adc.readADCSingleEnded(adc_channel_0, gain, sps)
  
                # Output at the terminal
                if GPIO.input(Digital_PIN) == False:
                        print "Analog voltage value:", analog,"mV, ","extreme value: not reached"
                else:
                        print "Analog voltage value:", analog, "mV, ", "extreme value: reached"
                print "---------------------------------------"
  
                sleep(delayTime)
  
  
  
except KeyboardInterrupt:
        GPIO.cleanup()

Connections Raspberry Pi:

Sensor

digital Signal=GPIO 24[Pin 18 (RPi)]
+V=3,3V[Pin 1 (RPi)]
GND=GND[Pin 06 (RPi)]
analog Signal=Analog 0[Pin A0 (ADS1115 - KY-053)]

ADS1115 - KY-053:

VDD=3,3V[Pin 01]
GND=GND[Pin 09]
SCL=GPIO03 / SCL[Pin 05]
SDA=GPIO02 / SDA[Pin 03]
A0=look above [Sensor: analog signal]

Example program download

KY-036_Metal-touch-sensor-module_RPi

To start, enter the command:

1
sudo python KY-036_Metal-touch-sensor-module_RPi.py


Kapcsolódó termékek


Kapcsolódó cikkek

Vélemények (küldje be Ön is véleményét)



Figyelem, a képek csak illusztrációk, a kiegészítők, a színek és a csomagolás eltérhet.
A termékleírásban esetlegesen előforduló hibákért felelősséget nem vállalunk. Ha a paraméterekben nem biztos, ellenőrizze a gyártónál.
RÓLUNK
Cégünk elektronikai és szoftveres fejlesztésekkel foglalkozik, ami mellett internetes kereskedelmet is indítottunk az ehhez kapcsolódó modulok és fejlesztő egységekkel. Már több mint 15.000 féle termék rendelhető, melyből több mint 5000 saját raktárunkról azonnal elérhető. Fiatal cégként dinamikusan bővülünk, alkalmazkodunk a modern igényekhez. Támogatjuk a hazai fejlesztéseket, és diákokat, termékekkel, szolgáltatásokkal, és saját tudásunkkal. Rendszeres vásárlóink között tudhatunk rengeteg magyar nagyvállalatot, oktatási intézményt, megbízóink között pedig több fejlődő kis- és közép- vállalkozást.
KÖZÖSSÉGI JELENLÉT
2016-tól mi béreljük az elektrobot.hu-t, mely egy közösségi blog és híroldalként indult, ezen keresztül korábban több elektronikai cég forgalmazott, és jelenleg is hírdeti szolgáltatásait. Rendszeresen jelen vagyunk a magyar elektronikai fórumokon online és kiállítások, rendezvények formájában. Próbáljuk összehozni az oktatásban és versenyeken résztvevőket a fiatal cégekkel, és a komolyabb megbízókkal.
...