Imaginile produselor au caracter informativ si pot prezenta diferente minore, in functie de lot si de furnizor. Este posibil ca specificatiile si pretul produselor sa fie modificate fara preaviz. Facem tot posibilul sa adaugam in pagina produselor specificatii cat mai exacte si corecte dar este posibil ca acestea sa nu fie in totalitate corecte. in cazul in care identificati un astfel de caz, va rugam sa ne semnalati acest lucru.
Produsul este destinat specialistilor si necesita personal calificat si autorizat. Produsul nu include instructiuni de asamblare/utilizare. Punerea in functiune a produsului de catre persoane necalificate duce la pierderea garantiei conform Termenilor si Conditiilor din site.
Analog Hall sensor, magnetic, KY-035, 5V
International fast shipping within EU. Free Shipping for orders above 100 EUR in most EU countries.
We ship from our stock within 24H
All orders minimum 100€
KY-035 sensor module, analog, compatible Arduino and other development boards, which uses the Hall effect to detect and measure magnetic fields in its vicinity.
Unlike similar digital sensors, such as the KY-003, this module offers more detailed readings of magnetic field intensity and polarity, which makes it suitable for applications that require accurate information about magnetic field variations.
When it does not detect a magnetic field, the output signal of the module is approximately half of the applied supply voltage. In the presence of a magnetic field, the signal varies depending on the polarity and proximity of the magnet to the sensor, increasing or decreasing accordingly.
Being compatible with popular microcontroller platforms such as Arduino , ESP32 and ESP8266, KY-035 can be integrated into various electronic projects to detect changes in polarity and intensity of magnetic fields.
Specifications:
Operating voltage: 2.7V – 6V
Sensor used: 49E Linear Hall sensor
Power consumption: ~6mA
Sensitivity: 1.4 - 2.0mV/GS
Operating temperature: -40°C to 85°C
Dimensions mm: 18.5 x 15mm
Login:
Connect the power pin (middle pin) to +5V on the Arduino .
Connect the ground pin (-) to GND on Arduino .
Connect the signal pin (S) to A0 on Arduino .
Example code:
This simple code for reading the analog value allows reading and displaying the values of the signal detected by the KY-035 depending on the polarity and intensity of the magnetic field.
int sensorPin = A0; // Magnetic sensor connection pin int wave; // Variable to store read values void setup() { pinMode(A0, INPUT); // Set analog pin as input Serial.begin(9600); // Initialize the serial interface } void loop() { val = analogRead(sensorPin); // Read the sensor value Serial.println(wave); // Display the value in the series delay(100); } |
To visualize more easily the variations in the intensity and polarity of the magnetic field, use the Serial Plotter function in Arduino IDE.
Observations:
For Raspberry Pi users, an external analog-to-digital conversion module is required to interpret the analog signal, this board having no analog inputs.