Added logging to close request on button press

Signed-off-by: Ralf Ramsauer <ralf@ramses-pyramidenbau.de>
This commit is contained in:
Ralf Ramsauer 2015-08-30 21:16:01 +02:00
parent 20de426ffd
commit 39a9aa43b0
1 changed files with 1 additions and 0 deletions

View File

@ -85,6 +85,7 @@ void Door::unlock()
if (!digitalRead(_LOCKPIN)) {
std::thread([this] () {
_l(LogLevel::info, "Incoming door close request on button press");
lock();
}).detach();
}