#14 in Electronic component sensors
Use arrows to jump to the previous/next product

Reddit mentions of IDUINO 2 Pcs Arduino Compatible Hall Effect Magnetic Sensor DC 5V

Sentiment score: 1
Reddit mentions: 1

We found 1 Reddit mentions of IDUINO 2 Pcs Arduino Compatible Hall Effect Magnetic Sensor DC 5V. Here are the top ones.

IDUINO 2 Pcs Arduino Compatible Hall Effect Magnetic Sensor DC 5V
Buying options
View on Amazon.com
or
This item is only a hall effect sensor that was soldered into a PC board for easier using, it does not contain the LEDs and Resister.Working voltage: DC 5VMaterial is PCB and a hall effect sensor, suitable for Arduino DIY projectAnalogy Hall magnetic sensor module and digital interface13 carry LED for building up a simple circuit and magnetic flashPackage Listing : 2 X analog hall magnetic sensor with blister
Specs:
Height0.39 Inches
Length3.94 Inches
Weight0.02 Pounds
Width3.94 Inches

idea-bulb Interested in what Redditors like? Check out our Shuffle feature

Shuffle: random products popular on Reddit

Found 1 comment on IDUINO 2 Pcs Arduino Compatible Hall Effect Magnetic Sensor DC 5V:

u/scubascratch · 2 pointsr/AskElectronics

Making a simulated mouse trigger is very easy, get an arduino Leonardo which can be trivially programmed to emulate a USB mouse with a couple lines of code.

I am not sure what kind of IR trigger you want to implement - do you already have an IR transmitter he can trigger somehow? If that’s the case you can add an IR receiver which can receive standard IR signals from things like remote controls.

Do you need to sense something like muscular movement in his face? You might be able to hook up something like attach a small magnet with tape to his eyebrow and then position a [https://www.amazon.com/IDUINO-Arduino-Compatible-Effect-Magnetic/dp/B019GU8UY2](Hall effect sensor) nearby so he can flex an eyebrow to change the hall effect sensor reading. The hall sensor will be connected to an analog input on the arduino.

The code will look something like this:

int magnetThreshold = 300; // this value will need to be determined experimentally

void setup(){
//initiate the Mouse library
Mouse.begin();
}

void loop(){
//if the magnetic sensor is triggered send a Left mouse click
if (analogRead(1)) > magnetThreshold){
Mouse.click();
delay(1000); // wait a full second
// make sure magnet is no longer triggered
while (analogRead(1)) > magnetThreshold) {
delay(250);
}
}

There are also other kind of sensors you can use like color sensors, pressure sensors (blowing into a tube) and even tongue switches.