#so I can clear all my bad reasonings as
1 messages · Page 1 of 1 (latest)
NO is not bad — it’s just for a different danger.
NO matters when the worst case is an unexpected start.
Real examples where NO is the right choice:
- Power tools (saws, drills)
- Lawn equipment
- Industrial machines
- Lasers
- High-power heaters
- Anything requiring a human “START” action
What NO guarantees:
- Power loss → machine stays OFF
- No automatic restart
- Someone must intentionally enable it
Why NC would be worse there:
- Power flicker → machine restarts by itself
- That’s often more dangerous than stopping mid-operation
So:
- NC protects against runaways
- NO protects against surprise starts
Neither is “bad” — each protects against a different failure mode.
--
** ## NC is best when stopping is more important than restarting.**
Use Normally Closed (NC) when the dangerous case is continued operation.
Common NC cases:
- Motors that could run away
- Robots
- Conveyor belts
- Heaters that could overheat
- Pumps that could flood
- Actuators that could crush
What NC guarantees:
- Any fault → OFF immediately
- MCU crash → OFF
- Control power loss → OFF
- Broken wire → OFF
So:
- NC = fail-safe stop
- NO = safe start
That’s the clean rule.