임베디드 보드/아두이노

유량 패들 스위치 테스트

ZEROWIN.TECH 2021. 5. 16. 12:41
728x90

유량 패들 스위치

물순환, 물펌프 스위치 / 액체의 흐름을 감지합니다.

아두이노 아날로그 데이터 수신

 

 

https://www.alibaba.com/product-detail/MR-JX-01-Plastic-Paddle-Magnetic_60241079489.html?spm=a2756.order-detail-ta-ta-b.0.0.22b72fc2lY9yH2 

 

Mr-jx-01 Plastic Paddle Magnetic Pules Output Water Flow Switch For Chlorine Generators In Swimming Pool - Buy Flow Switch,Water

Mr-jx-01 Plastic Paddle Magnetic Pules Output Water Flow Switch For Chlorine Generators In Swimming Pool , Find Complete Details about Mr-jx-01 Plastic Paddle Magnetic Pules Output Water Flow Switch For Chlorine Generators In Swimming Pool,Flow Switch,Wate

www.alibaba.com

아두이노 테스트

아날로그 A0을 연결하세요. 센서값을 읽습니다.

void setup() {
  // put your setup code here, to run once:
  Serial.begin(9600);
}

void loop() {
  // put your main code here, to run repeatedly:
  int value = analogRead(A0);
  Serial.println(value);
  delay(100);
}

 

테스트영상