0

I have hall sensors connected to an arduino, because of mechanical movements there is some possibility that the input wire may accidentally slip out of the arduino analogin sockets. Is there any way I can detect if the wire is still connected to hall sensor ? I don't want to solder the cables yet.

asked Mar 14, 2017 at 20:01
3
  • 1
    Schematic and datasheet where? Commented Mar 14, 2017 at 20:45
  • if the read values don't make sense, or fluctuate wildly, they've become unplugged. Commented Mar 14, 2017 at 21:18
  • Solder the cables to headers so they don't slip out? Commented Mar 14, 2017 at 22:17

1 Answer 1

2

You can maybe try to see if the value on analog pins when sensors are connected (while not sensing anything) is different when not connected.
Depending on your sensors and schematic, if analog input is fluctuating, you can use this command to use pull resistor to avoid this fluctuation.

digitalWrite(Ax, INPUT_PULLUP);

If the above gets true, then you can set up a threshold for detection. Below or beside threshold value, sensor is unplugged.

Otherwise, use some vinyl duct tape.... this would securize the thing a bit!

answered Mar 14, 2017 at 22:57
4
  • 2
    are you mixing up pinMode constants and digitalWrite, or is this a secret? Commented Mar 15, 2017 at 5:28
  • this is no secret: link. It may work by writing HIGH instead of INPUT_PULLUP, at least it works when wanting to set the internal pullup resistor for digital input. Commented Mar 15, 2017 at 6:13
  • 1
    Either use pinMode(Ax, INPUT_PULLUP); or digitalWrite(Ax, HIGH);. It will work either way, but it's no good programming practice. Commented Mar 15, 2017 at 10:15
  • What would be the best programming practice to enable an input pull-up on arduino? Other than accessing the proper register directly? Commented Mar 15, 2017 at 10:33

Your Answer

Draft saved
Draft discarded

Sign up or log in

Sign up using Google
Sign up using Email and Password

Post as a guest

Required, but never shown

Post as a guest

Required, but never shown

By clicking "Post Your Answer", you agree to our terms of service and acknowledge you have read our privacy policy.

Start asking to get answers

Find the answer to your question by asking.

Ask question

Explore related questions

See similar questions with these tags.