Công Tắt Từ KY-021

1.200đ

Mô tả

Tính năng

  • Công tắc thường mở (normally open reed)
  • Đầu ra so sánh, tín hiệu được làm sạch, dạng sóng, hơn 15mA
  • Điện áp hoạt động: 3.3~5VDC
  • Đầu  ra dưới dạng: Digital (0 và 1)
  • Kích thước PCB nhỏ: 3.2cm x 1.4cm

Kết nối:

  • Arduino GND –> Module pin –
  • Arduino +5V –> Module PLUS (middle pin)
  • Arduino Digital pin 2 –> Module S

Code mẫu

int led = 13; // LED pin
int reelSwitch = 2; // magnetic senso rpin
int switchState; // variable to store reel switch value

void setup() 
{
  pinMode (led, OUTPUT);
  pinMode (reelSwitch, INPUT);
}

void loop()
{
  switchState = digitalRead(reelSwitch); // read the value of digital interface 2 and assign it to switchState
  
  if (switchState == HIGH) // when the magnetic sensor detect a signal, LED is flashing
  {
    digitalWrite(led, HIGH);
  }
  else 
  {
    digitalWrite(led, LOW);
  }
}

Video

Thông tin bổ sung

Trọng lượng 0,1 kg
Kích thước 5 × 5 × 5 cm