https://github.com/bitraf/dlock13
Door lock
https://github.com/bitraf/dlock13
door-lock mqtt msgflo raspberry-pi
Last synced: 10 months ago
JSON representation
Door lock
- Host: GitHub
- URL: https://github.com/bitraf/dlock13
- Owner: bitraf
- Created: 2013-06-28T08:04:29.000Z (over 12 years ago)
- Default Branch: master
- Last Pushed: 2020-10-01T13:10:40.000Z (over 5 years ago)
- Last Synced: 2024-11-16T01:41:59.523Z (about 1 year ago)
- Topics: door-lock, mqtt, msgflo, raspberry-pi
- Language: Python
- Size: 482 KB
- Stars: 1
- Watchers: 16
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# dlock13
Breakout design (in EAGLE) and source code for our door lock actuator, running on a Raspberry PI(1).
Communication with the lock happens over [MQTT](https://en.wikipedia.org/wiki/MQTT).
Does not contain user interface, check [door-web](https://github.com/bitraf/door-web) for that.
## MQTT interface
To open the door, send the *number of seconds to open* to:
/bitraf/door/$door_id/open # Ex: 20
On success, will output values:
/bitraf/door/$door_id/isopen # Ex: true/false
/bitraf/door/$door_id/openuntil # Unix timestamp when door will lock again. Ex: 1495469392
On error, will send a string with an error message:
/bitraf/door/$door_id/error # Ex: "Time to open is negative"
Where `$door_id` is for instance `2floor`, `frontdoor`, `4floor`.
The `/bitraf/door/` prefix is configurable, can be set to `/mysystem/doorlocks`.
## Code
At [dlock13-msgflo/dlock13.cpp](./dlock13-msgflo/dlock13.cpp).
Impementation is in C++11, using [msgflo-cpp](https://github.com/msgflo/msgflo-cpp).
## Python API
Also provided is a simple Python module which will handle checking the MQTT messages
being sent out on success/error.
Installing
pip install dlock13
A command-line tool is included
dlock13-open /bitraf/door/$door_id 60
For how to use programatically, use [dlock13-open](./dlock13-open) as example code.
## Board

The board has two MOSFETS for driving standard electronic locks.
Expansion for two inputs also exists.
Single-sided board with through-hole components, can easily be CNC milled or etched.

### Pinout
# Function | Connector pin | BCM SoC pin | WiringPi pin |
===
mosfet1 | 19 | 10 | 12
mosfet2 | 2 | 11 | 14
BCM SoC pin is the on used for `/sys/class/gpio/gpioNN` and similar.
## Deployment
A systemd service template is normally used to each doorlock: [dlock13@.service](dlock13-msgflo/dlock13@.service).
systemctl status dlock13@2floor
The following environment variables are used. They can be specified in `/etc/dlock13/$door_id.conf`.
* `MSGFLO_BROKER` - the MQTT broker connection details. Ex: `mqtt://user:password@mqtt.example.net`
* `DLOCK13_PIN` - the GPIO pin number to use. Ex: `11`