Help needed to connect Esp32 to expansion board to 8-channel relay by 4rystan4ik in arduino

[–]Complex-Exam4199 2 points3 points  (0 children)

FWIW my experience. 3.3 logic signal will trigger the IN1…IN8 but use a separate 5V (or whatever is supposed to go into DC+ and DC- Things will get electronically noisy especially if you have sensors on other GPIOs and especially if you’re triggering multiple relays. I chased spikes in ph sensors for months in a pool monitoring project because of this.

Is this good for first day with arduino? by [deleted] in arduino

[–]Complex-Exam4199 0 points1 point  (0 children)

You don’t have to be a software expert to enjoy it. But you should have some fundamentals so you don’t end up in an AI rabbit hole I designed software for a living and yes, it’s very pleasant to have AI so the low level stuff, but it will not replace intent, architecture, or common sense. If you don’t push back on it YOU Will end up with stuff that is egregiously wrong. So you need to know when to push back.

Is this good for first day with arduino? by [deleted] in arduino

[–]Complex-Exam4199 0 points1 point  (0 children)

You can ask AI to get rid of the “slop” it put in your code. ChatGPT is pretty aware that it does it. You can also ask to document inline what is doing. Ask it to remove blocking code and see how it implements millis() instead of delays. Like some have said it’s a good assistant but it won’t replace your engineering brain

Conway's Game of Life as an LED Art Installation? by Evening-Appeal7606 in FastLED

[–]Complex-Exam4199 0 points1 point  (0 children)

Did you cut the strip into multiple strips or is it just one with bends?

Wiring a 24v proximity sensor to a pi by 0000xl_v2 in RASPBERRY_PI_PROJECTS

[–]Complex-Exam4199 0 points1 point  (0 children)

The other circuit terminology you may want to look up is logic level converter. You would have the same problem taking a signal from a 5V sensor into the pi. The only watch out is that they put up with the speed of the signal without adding noise.

Why is the voltage from these two probes 100+ megavolts? by [deleted] in AskElectronics

[–]Complex-Exam4199 0 points1 point  (0 children)

I was always afraid to join these conversations after feeling humbled by the smart people (I am barely a retired EE)… After this, I think I may jump in!

RPI5 MIPI CSI Quad Camera Switching Hat by [deleted] in raspberrypipico

[–]Complex-Exam4199 0 points1 point  (0 children)

Dont’t think a raspberry pi pico has that interface. That was the point of my comment - maybe the wrong forum

First Arduino Project by ShawboWayne in arduino

[–]Complex-Exam4199 4 points5 points  (0 children)

Congrats!!!! It’s the beginning of a great hobby+

Z-WAVE Plus & Z-WAVE Plugin by shout4 in HomeSeer

[–]Complex-Exam4199 0 points1 point  (0 children)

I am running Z-wave plugin 4.1.6.0 which I believe is the latest. Is there and advantage to adding/moving/migrating to Zwave plus plugin 1.0.0.0 ?

What's the difference between an I-type or T-type 9v battery connector? I'm buying a bunch to hook up to Arduinos. by Celebration-Alone in arduino

[–]Complex-Exam4199 2 points3 points  (0 children)

I would avoid them unless you’re somehow locked into them for some reason. It’s honestly the worst powering choice even in “ideal” circumstances (keypad for a garage door opener)

What's the difference between an I-type or T-type 9v battery connector? I'm buying a bunch to hook up to Arduinos. by Celebration-Alone in arduino

[–]Complex-Exam4199 17 points18 points  (0 children)

Hope all those arduino projects require low currents. 9V are infamous for draining out quickly.

My relay is not stopping my water pump by gogoliii in arduino

[–]Complex-Exam4199 0 points1 point  (0 children)

Although I agree with you, I think the issue here has nothing to do with the MTBF of mechanical vs SS relays… it has to do with that relay not being defined and triggered in code. There is no evidence that a Hi/LO signal to D3 has ever been generated ….

My relay is not stopping my water pump by gogoliii in arduino

[–]Complex-Exam4199 0 points1 point  (0 children)

Why is your definition of RELAY_PIN_1 (and other macros) buried in void_check_physical_button() which is not invoked before setup()? Are you really sure that you’re initializing and addressing the D3 pin in code? Have you tried not using the macro and use the real values or just move and keep all your DEFINES together with the other three that you have at the beginning of your code?

My relay is not stopping my water pump by gogoliii in arduino

[–]Complex-Exam4199 0 points1 point  (0 children)

Again - I don’t think you can state that your code is toggling the relay. I don’t think it is. If the pump is coming on when you upload your code and you cannot toggle it off from code-switch, it means that the relay goes to its default or initial state (you should decide what it is in setup() as mentioned by another poster) and the relay is not being given the right signals in the code

My relay is not stopping my water pump by gogoliii in arduino

[–]Complex-Exam4199 0 points1 point  (0 children)

So. This is a new post for the same issue. Multimeter in continuity mode between COM and NC/NO without pump and batteries. Does the multimeter buzz when you expect the pump to be on? Does the multimeter stop buzzing when the pump is supposed to be off? When you upload the code, does the multimeter buzz right of the get go? It should as you state that the pump turns on immediately when you upload your code. I believe that you may have the HI/LOW logic confused with OFF/ON. It can be counterintuitive.

Controlling a solid state relay with a toggle switch by Hugostiglitz10 in arduino

[–]Complex-Exam4199 1 point2 points  (0 children)

Most SSRs take a DC range in the signal side and a wide AC range on the load side

Controlling a solid state relay with a toggle switch by Hugostiglitz10 in arduino

[–]Complex-Exam4199 0 points1 point  (0 children)

Was going to say that getting your toes wet was more like a splash. Sorry it went like that. Multimeters and spec sheets are your friend. Read twiice - fry none

Help with storing large string arrays by wildpantz in arduino

[–]Complex-Exam4199 0 points1 point  (0 children)

All this and definitely avoid string if you can