Automation projects are where Crank Street turns effort into repeatable motion. They’re the builds that quietly take over the boring parts—flipping switches on schedule, tracking sensors in real time, sorting parts, triggering alerts, and running processes that don’t need your constant attention. Whether you’re wiring a simple relay to automate lights, building a sensor-driven greenhouse controller, or prototyping a mini “factory cell” with motors, vision, and safety logic, automation is the craft of making systems behave the same way every time—on purpose. This category brings together the best of maker engineering: microcontrollers and PLC-style thinking, timing and state machines, feedback and fault handling, clean wiring, and practical testing. You’ll find approachable guides on choosing sensors, designing reliable triggers, building dashboards, and diagnosing the gremlins that show up in the real world—noise, latency, drift, and power issues. Expect projects that scale from weekend builds to serious setups, with a focus on safety, repeatability, and satisfying results. Build it once—let it run forever.
A: A sensor-triggered light or fan—simple inputs/outputs, instant feedback, easy to expand.
A: Smart plugs are quick for light loads; relays/SSR are better for custom panels and robust wiring.
A: Power sag or noise; separate supplies, add suppression, and improve grounding/cable routing.
A: Debounce, add hysteresis, and require the signal to be true for a short time.
A: Safety-critical decisions stay local; cloud is great for dashboards, logs, and noncritical rules.
A: A clean set of modes—each mode has allowed actions, making behavior predictable and testable.
A: Add an e-stop, fuse protection, current limits, and a safe default state on faults.
A: Log timestamps for events and outputs—then trace what happened in order.
A: Use enclosures, strain relief, tight terminals, and periodic checks for dust and moisture.
A: Blocking delays and messy logic—switch to timers and state-based design early.
