„README.md“ ändern

added missing items doorState, homekitState, timezoneId which were added due to some new release by Nuki
This commit is contained in:
Mario Voigt 2018-11-15 23:53:20 +01:00
parent d9c10ec21f
commit cf63780830
1 changed files with 12 additions and 7 deletions

View File

@ -10,18 +10,20 @@ This project was born at 02.08.2018 and a first working prototype was made up fo
All things were tested with ...
* Ubuntu 18.04 LTS for armhf v7 (Odroid X4)
* JQ 1.5
* Grafana 5.2.2
* Ubuntu 18.04.1 LTS (Linux 4.14.73-149) for armhf v7 (Odroid X4)
* JQ 1.5 (jq-1.5-1-a5b5cbe)
* Grafana 5.3.0
* MariaDB 10.1.34
* Nuki Bridge API 1.7 (30.07.2018)
* Nuki Web API 1.1 (08.05.2018)
* Nuki Bridge Firmware 1.11.0
* Nuki Bridge Firmware 1.11.3 (checked @ 15.11.2018)
* Nuki Bridge WiFi Firmware 1.2.0
* Nuki Smartlock Firmware 67074
* Nuki Smartlock Firmware 67330 (checked @ 15.11.2018)
* Nuki Swagger API → https://api.nuki.io (here you can find documentation on data models)
* Nuki Web → https://web.nuki.io (here you can retrieve your personal API key)
Used Documentation:
* Nuki Bridge API 1.7 (30.07.2018)
* Nuki Web API 1.1 (08.05.2018)
## 2. Requirements to utilize this project for your own needs
There are a few requirements you will need to fulfill to make this thing work. You need …
@ -73,6 +75,7 @@ CREATE TABLE IF NOT EXISTS Smartlock
`creationDate` DATETIME NOT NULL,
`daylightSavingMode` SMALLINT NOT NULL,
`detachedCylinder` BOOLEAN NOT NULL,
`doorState` SMALLINT NOT NULL,
`doubleButtonPressAction` SMALLINT NOT NULL,
`favorite` BOOLEAN NOT NULL,
`firmwareVersion` VARCHAR(255),
@ -80,6 +83,7 @@ CREATE TABLE IF NOT EXISTS Smartlock
`fobAction2` SMALLINT NOT NULL,
`fobAction3` SMALLINT NOT NULL,
`fobPaired` BOOLEAN NOT NULL,
`homekitState` SMALLINT NOT NULL,
`keypadPaired` BOOLEAN NOT NULL,
`lastAction` SMALLINT NOT NULL,
`latitude` FLOAT NOT NULL,
@ -98,6 +102,7 @@ CREATE TABLE IF NOT EXISTS Smartlock
`singleLockedPositionOffsetDegrees` SMALLINT NOT NULL,
`smartlockId` VARCHAR(9) NOT NULL PRIMARY KEY, /*primary key = unique!*/
`state` SMALLINT NOT NULL,
`timezoneId` SMALLINT NOT NULL,
`timezoneOffset` SMALLINT NOT NULL,
`totalDegrees` SMALLINT NOT NULL,
`trigger` SMALLINT NOT NULL,