고정밀 진동 센서 -801S

(High Precision Vibration Sensor - 801S)

개요

  • 본 제품은 고정밀 진동센서 801S를 기반으로 디자인한 고정밀 진동 센서 모듈입니다.
  • 아날로그 전압 출력과 디지털 출력의 2개의 출력을 가지고 있는 제품으로 디지털 출력의 경우 모듈상의 포텐셔미터를 이용해 감도설정을 하여, 원하는 감도를 기준으로 on/off 출력을 내게 설정할 수 있습니다.
  • 아날로그 출력의 경우 아두이노와 같은 마이크로컨트롤러의 ADC에 입력하여 진동 정도에 대한 센서값을 받을 수 있습니다.
  • 5V 시스템과 사용이 가능하며 아날로그 출력, Gnd, 디지털 출력, VCC의 핀아웃을 가지고 있습니다.

특징

  • Size: 20mm* 32mm *11mm
  • the main chip: LM393, 801S
  • work voltage: DC 5V
  • with the signal output instructions;
  • with analog and TTL level signal output signal output;
  • the output valid signal is high, the light goes out;
  • sensitivity adjustable (fine tuning);
  • vibration detection range, non-directional;
  • with mounting holes, firmware installation flexible and convenient.

문서

  • 801S datasheet
  • 아래는 아두이노 예제입니다.
  • 센서 Aout을 아두이노 A0에 연결하고, 5V VCC를 +에, Gnd를 -에 연결한 후 아래의 코드를 아두이노에 업로드하여 테스트합니다.
  • 진동에 따라 발생하는 전압출력을 아두이노가 읽어 값을 시리얼 모니터창에 출력하는 예제입니다.
  • 디지털 입력 핀을 이용하는 예제는 LED on/off 예제를 응용하시면 됩니다. (보드상의 가변저항으로 감도 조절 설정가능)
  • int inputPin = A0;               // Connect sensor to input pin 3 
     
     
    void setup() {
      pinMode(inputPin, INPUT);     // declare pushbutton as input
      Serial.begin(9600);
    }
     
    void loop(){
      Serial.println(analogRead(inputPin));  // read input value
    }
    

연관제품