Pubblicato il

Sensore Effetto Hall Rilevare Oggetti Magnetici Arduino

Premessa: Qual è il modo migliore per rilevare il magnete? Usa un magnete antera. Ma non è abbastanza sensibile. Devi sentirlo da solo. Esatto. Questo sensore di Hall sa se c’è un oggetto magnetico nelle vicinanze o meno. E te lo dice correttamente attraverso ditigal output.Vedi l’immagine sotto per una demo veloce!

N.B: Omnipolar Magnet Dectector.

CARATTERISTICHE TECNICHE:

  • Tensione di alimentazione: da 3,3 V a 5 V
  • Indicatore LED a bordo
  • Interfaccia: digitale
  • Dimensioni: 22x30mm

LISTA MATERIALI:

SCHEMA DI COLLEGAMENTO:

CODICE DI ESEMPIO:

int ledPin = 13;                // choose the pin for the LED
int inputPin = 2;               // choose the input pin
int val = 0;                    // variable for reading the pin status
void setup() {
  pinMode(ledPin, OUTPUT);      // declare LED as output
  pinMode(inputPin, INPUT);     // declare pushbutton as input
}
void loop(){
  val = digitalRead(inputPin);  // read input value
  if (val == HIGH) {            // check if the input is HIGH
    digitalWrite(ledPin, LOW);  // turn LED OFF
  } else {
    digitalWrite(ledPin, HIGH); // turn LED ON
  }
}

Buon progetto.