this post was submitted on 17 Apr 2024
7 points (100.0% liked)

Home Automation

2922 readers
1 users here now

Discussion about general home automation ideas and projects, home automation protocols like Z-wave, Zigbee, Matter, etc, and home automation software and hubs like HomeSeer, Home Assistant, OpenHAB, Homey.

founded 1 year ago
MODERATORS
 

cross-posted from: https://iusearchlinux.fyi/post/5789452

Hi all,

I would like to install a door opener on my single panel jamb garage door

So for starter it seem hard to find brands that sell engine and accessory available for west europe.... (so, if you have any, fell free to share.)

My garage will be access by few peoples. therefore they need to have access but without being able to add or remove any other access..

So to start an external keypad might do.. and the engine should not have button that allow programming..

In the future I would like to be able to (trough Internet)

  • open/close the door remotely
  • add/remove code on the keypad
  • add/remove remote control that are bind with the door.

I've found all-in-one solution but they are of course not FOSS[^foss]..
So no thank you ! I would like to be able to connect easily a SBC or SBM[^1][^2]

So if you have any clue or if you think of a Lemmy community that might fit this post, I'm all ears.

Thanks.

[^1]: Single-Board Computer [^2]: Single-board microcontroller [^foss]: FOSS aka FLOSS

top 4 comments
sorted by: hot top controversial new old
[–] h3ndrik@feddit.de 4 points 5 months ago* (last edited 5 months ago)

Are you familiar enough with mechanical enineering and electronics to do everything yourself? Including the motor driver, control with limit switches and failsafes so nobody loses a limb?

If not, you should probably buy a garage door includimg the mechanics and motor including electronics. There are garage door openers that allow for an external switch inside of the garage to open and close it. You can attach a Sonoff or an ESP to that input and have it control the garage door.

Just to give a few ideas... But the motor driver needs to have the correct inputs. Some seem to have an "encrypted" connection and not just a switch. And it also depends on the model if the inputs need 230V or maybe 24V and a relais to close the circuit instead of that Sonoff.

I'd use esphome.io and an ESP32 board for something like that.

[–] CameronDev@programming.dev 3 points 5 months ago (1 children)

You may have better luck taking the non-foss solution and hacking it. Principles are great, but sometimes the thing your after is just not being served by the foss community. Otherwise, you may just have to start the project yourself.

[–] Windex007@lemmy.world 2 points 5 months ago (1 children)

Older garage door openers with a wired button, at least in N.A should just be as simple as shorting the wires. For "lock" and "light", you short w/ a capacitor.

You can wire it to a relay connected to an ESP wireless microcontroller (I'm using an ESP01). From there you can use ESPHome to connect it to HomeAssistant. From there, the world is your oyster for access control/monitoring.

[–] CameronDev@programming.dev 1 points 5 months ago

Thats basically what i was thinking, but I dunno if that counts as FOSS in the OP eyes. The hardware is probably not open.

Definitely the way to go though, and what I would do.