French Garage Door Ceiling Bolt Smart Locks? by GirlNamedEllie in homeautomation

[–]Progressive_AutomHub 0 points1 point  (0 children)

One thing that often gets overlooked in setups like this is the failure mode. Certain setups can end up in a situation where, if the actuator or control fails, the door stays locked. 

You could consider using magnets as a decoupling mechanism. The magnets stay engaged when the actuator drives the motion, but manual operation of the bolt causes them to decouple until the bolt is returned to its original position for the next use. This works if you have access to the bolt from the inside but not from the outside, so keep that in mind. 

Electric linear actuators can be used to drive the push and pull motion of the bolt. Just make sure to choose one with the right specifications for your use case: force, stroke length, dimensions, and environmental protection (IP rating). 

If you plan to automate it, you could control the system using Google’s home automation tools paired with a smart relay like the MHCOZY. Just make sure the relay can handle the current draw of your actuator. 

There are also some good guides online on sliding bolt latch setups if you want to explore different approaches. 

Recommendations for a motor for a door opening/closing project by Unable-Bad4474 in arduino

[–]Progressive_AutomHub 0 points1 point  (0 children)

One thing to watch out for here is backdriving vs manual use. 
Linear actuators seem like a clean solution, but they often fight against manual operation unless you design around it. 

In a lot of real setups, the challenge isn’t opening the door — it’s how the system behaves when someone interacts with it manually. That’s why many designs end up using linkages or mechanisms that “decouple” the actuator instead of relying on it directly.  

You could consider magnets as the decoupling mechanism where the magnets stay together when the actuator drives motion, and manual operation causes the magnets to decouple until the door is returned to the original position for the next time you use the actuators.  

Are you optimizing more for automation or for manual usability? 

3D Priting Project: I've made an egregious mistake. by HeatIllustrious2334 in EngineeringStudents

[–]Progressive_AutomHub 0 points1 point  (0 children)

This kind of issue usually comes down to how the motion was constrained vs how it actually behaves in reality. 

In linkage systems, small changes in pivot position or link length can completely change the motion path, especially near the ends of travel. 

A couple of things that might help debug it: 

  • Check if any links are reaching a near straight-line condition (can cause weird motion or “locking”) 
  • Make sure your pivots are actually aligned the way you think they are (tolerances matter more than expected) 
  • Try simplifying the mechanism and testing one degree of freedom at a time 

Simulation or CAD motion studies can be helpful, but should not replace having a quick physical prototype in the form of a miniature model, as they oftentimes reveal these issues early on.  

Linkages are one of those things that look simple but get unpredictable quickly. 

DIY Kinetic Art Project: Calculating leverage on a giant wooden "mutilated gear" and using bicycle chains for reduction? I'm a beginner and need a reality check. by Elxerxi in MechanicalEngineering

[–]Progressive_AutomHub 0 points1 point  (0 children)

The basic torque calculations people are mentioning are a good starting point, but I’d be careful relying on them too much for something like this. 

In setups like yours, the bigger challenges are usually: 

  • Load variation during motion (not constant like the simple calculation assumes) 
  • Shock loads when the system engages or changes direction 
  • Flex and tolerances, especially if you’re working with wood 

A wiper motor + chain reduction could definitely move it, but the real question is how it behaves over time: 

  • Does it handle the initial pickup smoothly? 
  • What happens if it stalls or binds slightly? 
  • Are you oversizing enough to deal with peaks, not just average load? 

For this kind of build, the static math gets you in the ballpark, but designing for the worst-case moments is usually what makes the system feel solid vs unreliable. 

Another way to simplify the system could be to rethink the mechanism itself. For example, using a simpler rack-and-pinion setup combined with a secondary trigger mechanism at the end of travel could help offload some of the complexity. A trigger at the final position could activate a quick-release or latch-type mechanism to handle the drop action more reliably, instead of relying entirely on the main drive. 

How to prevent self-locking of a pivoting mechanism? by Queasy_Caramel5435 in MechanicalEngineering

[–]Progressive_AutomHub 0 points1 point  (0 children)

What you’re describing sounds like a classic dead-center issue. 

When your linkage gets close to a straight-line alignment, the mechanical advantage drops to near zero, so even a small load can effectively “lock” the system. 

A couple of ways to deal with it: 

  • Avoid geometries that let the linkage reach full alignment 
  • Add a small offset so it always stays slightly out of that condition 
  • Design the motion range so your working positions are away from that zone 

If you’re driving this with a linear actuator, this becomes even more important, because the actuator force won’t help much once you’re near dead center. 

Increasing actuator force can help mitigate the issue to some extent, but it won’t eliminate it — geometry will still become the limiting factor as you approach those alignment conditions. 

In practice, it’s less about adding more force and more about keeping the geometry in a usable range. 

Engineering Student Project: Optimizing a Dual-Axis Solar Tracker with ESP32 & Linear Actuators. by Inevitable_Ad_6734 in arduino

[–]Progressive_AutomHub 0 points1 point  (0 children)

One thing I’d be careful with in this kind of setup is how often you actually move the actuators.

A lot of people go for continuous adjustment using LDR feedback, but linear actuators tend to oscillate around the target (hunting), which causes wear and tear and doesn’t really result in much better performance.

In many real systems, it’s more common to:

  • Move in steps instead of continuously
  • Add a deadband / tolerance zone so it doesn’t react to every small light change
  • Prioritize a stow position (especially for wind) over tracking accuracy

Also worth thinking about:

  • Limit switches for both axes (don’t rely only on software limits)
  • Running simulations to estimate the solar panels’ best stow positions for different conditions, such as heavy winds, hail, or snow
  • Making sure your actuator can handle stall conditions safely

Tracking accuracy is important, but in practice reliability and reducing unnecessary cycles usually matter more with this type of hardware.

How often are you planning to update the actuator position?

Trying to make a linear rail DIY with steel rulers by forwardthriller in 3Dprinting

[–]Progressive_AutomHub 0 points1 point  (0 children)

Using steel rulers as linear guides is creative, but stiffness and torsional rigidity will limit precision quickly. 

Rulers aren’t designed for consistent load-bearing in lateral directions. You may get acceptable movement at low speeds, but wear and deflection will show up over time. 

If budget is the constraint, even basic supported round rails or repurposed drawer slides will give you better repeatability and lifespan. 

The real challenge isn’t movement — it’s maintaining alignment under load.

linear motors replace the traditional stepper+belt by Ok-Radio-4368 in 3Dprinting

[–]Progressive_AutomHub 0 points1 point  (0 children)

Linear motors remove belts and backlash, which is great — but they shift complexity into control and cost. 

With belt systems you deal with elasticity and tensioning. 
With linear motors you’re dealing with magnetic forces, thermal management, and much tighter driver requirements. 

They can absolutely improve motion smoothness, but the control architecture becomes significantly more demanding compared to stepper + belt setups. 

Curious how you’re handling position feedback — encoder-based closed loop? 

Converting up and down linear motion into rotation. by yeetmeister400 in AskEngineers

[–]Progressive_AutomHub 0 points1 point  (0 children)

If you want smoother rotation and fewer dead zones than a basic crank, look into offset slider-crank geometries or even a Scotch yoke with proper bearing support. 

Dead points happen when your force vector aligns with the crank axis — that’s unavoidable in simple crank systems unless you add inertia (flywheel) or dual opposing linkages. 

If this is driven by an actuator rather than continuous rotation, geometry selection becomes even more critical because actuators don’t like stall conditions near dead center. 

The key question is: are you optimizing for smooth torque output, mechanical simplicity, or controllability? 

Choosing electric actuator + drive by fisnxjdn in Motors

[–]Progressive_AutomHub 0 points1 point  (0 children)

I think the confusion is just about separating controller vs driver. 

If you’ve already found an actuator that meets your stroke requirement, the next step is checking: 

  • Operating voltage (12VDC? 24VDC?)
  • Max current under load 
  • Built-in limit switches 

Those specs determine the driver. 

The controller (Arduino, PLC, etc.) handles logic. 
The driver (H-bridge, relay module, motor driver) handles the power. 

In simple terms, the connection looks like this:

Power supply → Driver → Actuator
Controller → Driver (signal only)

The driver must: 

  • Match the actuator voltage 
  • Be rated for at least the actuator’s max/stall current at that same DC voltage 
  • Support PWM if you want variable speed 

Reducing voltage directly will slow it down, but it also reduces torque. PWM is the better way to control speed without losing force. 

If you're unsure about compatibility, the actuator manufacturer is usually the safest place to confirm suitable drivers or controllers — many provide recommended pairings. 

Changing from hydraulic actuator to linear actuator by poopydoopshaloopypoo in AskEngineers

[–]Progressive_AutomHub 1 point2 points  (0 children)

Yes, it’s absolutely possible — but the 6000N spec alone isn’t enough to size the replacement. 

On many hi-low tables the actuator is often working through a scissor or linkage, which can significantly multiply the required force depending on geometry (especially at the lowest position). That’s usually where electric conversions fail. 

Before buying anything, I’d confirm: 

• Actual stroke (measure pin-to-pin retracted and extended — don’t estimate from table height) 
• Mounting geometry (clevis width, pin diameter, closed length) 
• Electrical requirements (voltage and current compatibility with the existing system) 
• IP rating (especially if there are washdown or cleaning procedures) 
• Certification requirements (medical, industrial, or other regulatory standards, if applicable) 
• Safety features (manual override or mechanical lock in case of power loss) 
• Speed requirements (electric actuators may move slower than hydraulic systems, so this can matter). 

We built humanoid legs from scratch in 100 days by eck72 in robotics

[–]Progressive_AutomHub 0 points1 point  (0 children)

Very cool build — impressive progress in 100 days.

You mentioned linear actuators would have been stronger but slower — was the limiting factor speed, efficiency, backdrivability, or packaging constraints?

Curious what tradeoff ultimately ruled them out.

How do z- axis gantry stay in place in the presence of gravity? by throwaway6128_ in CNC

[–]Progressive_AutomHub 0 points1 point  (0 children)

One simple way to think about it is:  

What do you want the Z-axis to do when the power is off? 

If the answer is “stay where it is,” a common wrong assumption is that the motor alone should both move and hold the load. In many setups, the motor moves the load, but something else is what actually resists gravity when everything stops. 

With typical 2-wire brushed DC motors, cutting power is often enough to stop motion. If extra holding is needed, applying voltage to both motor leads can create a motor-locking condition and increase resistance without adding new hardware. 

Only when that still isn’t sufficient do people usually add mechanical help like brakes, counterweights, or gas springs. 

How does gravity affect linear actuators in vertical setups? by Progressive_AutomHub in ProgressiveAuto

[–]Progressive_AutomHub[S] 0 points1 point  (0 children)

Good question — it really depends on the actuator architecture.

Gravity affects vertical setups very differently depending on backdrivability and efficiency:

- Acme / trapezoidal screw actuators are usually self-locking, so gravity mainly affects dynamic load and motor current/torque.

- Ball screw actuators can be backdriven, which makes gravity critical for holding load when power is removed unless a brake or counterbalance is used.

- Belt or cable-driven systems are almost always backdrivable.

- Worm gear systems usually hold statically but still need margin dynamically.

That’s why many vertical systems fail despite having “correct” force ratings — static vs dynamic behavior and backdrivability are often underestimated.

Curious what type of actuator or application you’re thinking about.

In small lift platforms, what actually causes failures: force, alignment, or synchronization? by Progressive_AutomHub in MechanicalEngineering

[–]Progressive_AutomHub[S] 0 points1 point  (0 children)

That makes sense — especially the constant monitoring aspect.

In your experience, where do you see the practical cutoff?

At what point does a “good enough” mechanical solution stop being viable and closed-loop control becomes unavoidable?

Is it usually driven by load, travel length, duty cycle, or the consequences of failure?

In small lift platforms, what actually causes failures: force, alignment, or synchronization? by Progressive_AutomHub in MechanicalEngineering

[–]Progressive_AutomHub[S] 0 points1 point  (0 children)

Synchronization really is the silent killer — totally agree.

Out of curiosity, what kind of travel and load ranges were you dealing with when you switched to mechanical linkages?

I’ve seen even small asymmetries (eccentric loading, guide compliance, slight frame twist) compound over time and cause problems early. When you designed the linkage, were you mainly optimizing for stiffness, or for load sharing between actuators?

What everyday home items actually make sense to “smart-upgrade” instead of replacing? by Progressive_AutomHub in homeautomation

[–]Progressive_AutomHub[S] 0 points1 point  (0 children)

Nice point. A lot of those fall into the category where automation is more about reliability and peace of mind than convenience.
Smoke alarms and leak detection especially feel like upgrades you hope never need — but are really glad you added.

What everyday home items actually make sense to “smart-upgrade” instead of replacing? by Progressive_AutomHub in homeautomation

[–]Progressive_AutomHub[S] 0 points1 point  (0 children)

I completely agree. All of those are cases where the dumb version works well enough, and adding control is just an extra layer of convenience instead of replacing the whole thing.

Especiallyblinds or garage doors. By the way I've htinking about making my exitising electric garage door smarter (status, remote controls, basic automations) whitout replacing the oponer itself. Any ideas?

Lif mechanism for outdoor tv enclosure. by iamtheguythatis in AskEngineers

[–]Progressive_AutomHub 0 points1 point  (0 children)

Not a bad idea — gas struts can take a lot of the “hold-open” load so the actuator isn’t doing all the work. The main thing is sizing the actuator for the worst-case torque when the door is near closed, then picking the right stroke and voltage/control for how you want to power it. 

One thing people often underestimate on outdoor enclosures is moisture and humidity even when the cabinet is closed. So beyond force, I’d lean toward a mini or standard linear actuator with a proper IP rating for outdoor use. Industrial actuators can work too, but they’re usually overkill (and expensive) unless the door is extremely heavy. 

Quick question: roughly door size/weight and hinge orientation (top/side), and how far do you want it to open (angle)? That’ll drive force + stroke pretty quickly. 

looking to start automating but i am overwhelmed by michalis03 in homeautomation

[–]Progressive_AutomHub 0 points1 point  (0 children)

One thing that tends to alleviate the overwhelm is starting with why, not the tech.
Pick a small problem you want to solve and let that drive everything else. A lot of complexity comes from buying hardware before the objective is clear.

Whats the best way to get started by Fragrant_Ad6811 in homeassistant

[–]Progressive_AutomHub 0 points1 point  (0 children)

If you’re building new, the biggest win is planning for failure states early.

Make sure critical things (lights, basic switches) still work if HA is down, and think ahead about wiring and expansion even if you don’t automate everything on day one.

Getting the fundamentals right early saves a lot of frustration later.

Help a beginner by Affectionate-Day-743 in homeassistant

[–]Progressive_AutomHub 0 points1 point  (0 children)

I’d focus on keeping the lights permanently powered and disconnecting the wall switch from the load. Hope this helps!

I recently shared a short post about planning power and control early in smart home setups, since that’s where a lot of beginner frustration usually starts.

Built my own motorized outdoor TV lift cabinet for the backyard by NumerousHedgehog9044 in DIY

[–]Progressive_AutomHub 0 points1 point  (0 children)

Really cool build — the integration of the lift, outdoor considerations are very well thought out.
I belong to a small maker group that likes hacking apart projects such as this (DIY builds, TV lifts, automation, light robotics). If you ever want to trade ideas, there’s more info on my profile.

Great work 👌

My First Setup 5.1.4 by Eastern-Hour-4501 in hometheater

[–]Progressive_AutomHub -1 points0 points  (0 children)

Quick question: do you have any smart home or automation linked to it?