I have a project where I am reading a simple normally closed “dry contact” circuit through 2 terminal posts and need to detect when that circuit has been opened (infinite resistance). I think this should be rather trivial, but I’m not sure where to start…
Should I use an analog or digital pin?
Then would I connect one terminal to the chosen pin on the Core and the other terminal to ground or is it not that easy?
The two terminal posts belong to another (black box) device so I can’t draw that. I am free to do whatever with the Core circuit, but it has to read those two terminals.
Should I test the terminals for voltage? I had thought I would only need to use the Core to find when the resistance goes from (nearly) zero to infinite.
@ssstraub, if the contacts are indeed “dry” meaning they are probably relay contacts with no voltage then the solution is simple. Connect one terminal to ground in your circuit and the other to a digital pin, say D2. Configure the digital pin to be an input with pullup. Now, simply read the state of the input. If it is high then the contacts are open. If low the contacts are closed.
@ssstraub, if the dry contacts are dedicated to the Core and not used to switch any voltage then:
Use a digital or analog pin configured as a digital input and set it to use a pull-up resistor
Connect the pin to one side of the dry contacts. Connect the other side of the contacts to GND.
When the contacts are open, the Core will see a HIGH. With the contacts closed the Core will see a LOW. This is inverse logic but the Core’s 3.3V does not have to be connected to the contacts. This, IMO, safeguards the Core’s power supply.
The code is very straight forward:
pinMode(D2, INPUT_PULLUP); //any digital or analog input pin can be specified
int contacts = digitalRead(D2);
if (contacts == LOW)
//contacts are closed
else
//contacts are open
The other way to do it is to connect on of the contacts to the Core’s 3.3V and the other to a pin on the Core. The pin is set as a digital input but configured with a pull-down resistor. So with the contact open, the Core will see a LOW and when closed, the Core will see a HIGH.
pinMode(D2, INPUT_PULLDOWN); //any digital or analog input pin can be specified
int contacts = digitalRead(D2);
if (contacts == HIGH)
//contacts are closed
else
//contacts are open
Ok, I’m starting to understand better now. Thanks.
Yes, it should be a relay with no voltage according to the instructions for the controller (it’s for a sump pump). I checked it with my DMM and didn’t see voltage. Found very low, almost unmeasurable resistance, which I guess is what I should expect for a short.
I think my code is close to what @peekay123 posted:
int alarmPin = D4; // Alarm circuit pin
bool alarmState = false; // Tracks current alarm state
int redLED = D3;
void setup() {
pinMode(alarmPin, INPUT_PULLDOWN);
}
void loop() {
// Check for alarm condition.
if (!alarmState and digitalRead(alarmPin) == HIGH) {
setAlarm(true, "Alarm has been tripped!");
}
}
// Sets alarm state. This will do more in the future
void setAlarm(bool alarm, String desc) {
alarmState = alarm;
if (alarmState) {
digitalWrite(redLED, HIGH);
}
}
I have now changed it to INPUT_PULLUP.
I am working on this in a different location than the controller I want to connect to, and I don’t want to constantly trip that circuit anyway for testing. So can I simulate the behavior of the relay on those terminals by connecting a jumper from D4 to GND for the closed state and then pull the jumper off to trigger the open state?
Side note: I have found it’s handy to paste the Tinker code in my project for testing purposes. That way I can get the live value seen at any pin at anytime on the fly without needing to add more serial debug code or reflash. Pretty cool!
I have the same kinds of issue on how to detect open/close circuits.
did (A)one side 10k, 3.3V pull-up and (B)another side 10k, pull-down to GND.
when I do connect as close circuit, I can see only (B) side has the status as High, and (A) side is still stay as high , due to pull-up high.
How to make (A) side also get an state change to know the close circuit?
need both side controller get a connection info. with this simple pull-up/down concept… help me…
I know this thread is old, but I have a similar question, but with the case where the ciruit will have 24VAC running through it. Believe it or not, I’ve googled and can’t quite find what I need in a way that I understand. I was wondering if someone could give me the “easy answer” that I can’t find anywhere else :). Maybe just a big enough resistor?
When switch is “Closed” it has a voltage of 24VAC, and when it is “Open” it has a voltage of 0VAC or is floating.
Then this is more challenging and non-trivial. Unfortunately there isn’t a super simple solution for detecting AC voltage like there is for the case above. I would say that in fact this is a very different situation that would warrant a different thread.
Regardless, please refer to this forum post below. You will need to either use a resistive voltage divider network to step down voltages to 3.3VDC instead of 5VDC or pick different components (or configure them differently) to properly create a 3.3VDC signal at the max case.
I need to do this, but i also want to protect the arduino in case someone puts 12 or 24v on the contacts. How would i do that where the contacts coukd be wet or dry?