* add NukiRetryHandler * apply retry wrapper to opener wrapper * apply retry wrapper to all opener communication * apply retry wrapper to all lock communication * remove commented out code * replace millis() with espMillis() in wrapper classes
174 lines
5.9 KiB
C++
174 lines
5.9 KiB
C++
#pragma once
|
|
|
|
#include "NukiNetworkLock.h"
|
|
#include "NukiConstants.h"
|
|
#include "NukiDataTypes.h"
|
|
#include "BleScanner.h"
|
|
#include "NukiLock.h"
|
|
#include "Gpio.h"
|
|
#include "LockActionResult.h"
|
|
#include "NukiDeviceId.h"
|
|
#include "NukiOfficial.h"
|
|
#include "EspMillis.h"
|
|
#include "util/NukiRetryHandler.h"
|
|
|
|
class NukiWrapper : public Nuki::SmartlockEventHandler
|
|
{
|
|
public:
|
|
NukiWrapper(const std::string& deviceName, NukiDeviceId* deviceId, BleScanner::Scanner* scanner, NukiNetworkLock* network, NukiOfficial* nukiOfficial, Gpio* gpio, Preferences* preferences, char* buffer, size_t bufferSize);
|
|
virtual ~NukiWrapper();
|
|
|
|
void initialize();
|
|
void readSettings();
|
|
void update(bool reboot = false);
|
|
|
|
void lock();
|
|
void unlock();
|
|
void unlatch();
|
|
void lockngo();
|
|
void lockngounlatch();
|
|
|
|
const bool hasConnected() const;
|
|
const bool isPinValid();
|
|
void setPin(const uint16_t pin);
|
|
void setUltraPin(const uint32_t pin);
|
|
const uint16_t getPin();
|
|
const uint32_t getUltraPin();
|
|
void unpair();
|
|
|
|
void disableWatchdog();
|
|
|
|
const NukiLock::KeyTurnerState& keyTurnerState();
|
|
const bool isPaired() const;
|
|
const bool hasKeypad() const;
|
|
bool hasDoorSensor() const;
|
|
const bool offConnected();
|
|
const BLEAddress getBleAddress() const;
|
|
const uint8_t restartController() const;
|
|
|
|
const std::string firmwareVersion() const;
|
|
const std::string hardwareVersion() const;
|
|
|
|
|
|
void notify(Nuki::EventType eventType) override;
|
|
|
|
private:
|
|
static LockActionResult onLockActionReceivedCallback(const char* value);
|
|
static void onOfficialUpdateReceivedCallback(const char* topic, const char* value);
|
|
static void onConfigUpdateReceivedCallback(const char* value);
|
|
static void onKeypadCommandReceivedCallback(const char* command, const uint& id, const String& name, const String& code, const int& enabled);
|
|
static void onKeypadJsonCommandReceivedCallback(const char* value);
|
|
static void onTimeControlCommandReceivedCallback(const char* value);
|
|
static void onAuthCommandReceivedCallback(const char* value);
|
|
static void gpioActionCallback(const GpioAction& action, const int& pin);
|
|
LockActionResult onLockActionReceived(const char* value);
|
|
void onKeypadCommandReceived(const char* command, const uint& id, const String& name, const String& code, const int& enabled);
|
|
void onOfficialUpdateReceived(const char* topic, const char* value);
|
|
void onConfigUpdateReceived(const char* value);
|
|
void onKeypadJsonCommandReceived(const char* value);
|
|
void onTimeControlCommandReceived(const char* value);
|
|
void onAuthCommandReceived(const char* value);
|
|
void onGpioActionReceived(const GpioAction& action, const int& pin);
|
|
|
|
bool updateKeyTurnerState();
|
|
void updateBatteryState();
|
|
void updateConfig();
|
|
void updateDebug();
|
|
void updateAuthData(bool retrieved);
|
|
void updateKeypad(bool retrieved);
|
|
void updateTimeControl(bool retrieved);
|
|
void updateAuth(bool retrieved);
|
|
void postponeBleWatchdog();
|
|
void updateTime();
|
|
|
|
void updateGpioOutputs();
|
|
|
|
void readConfig();
|
|
void readAdvancedConfig();
|
|
|
|
std::string _deviceName;
|
|
NukiDeviceId* _deviceId = nullptr;
|
|
NukiLock::NukiLock _nukiLock;
|
|
BleScanner::Scanner* _bleScanner = nullptr;
|
|
NukiNetworkLock* _network = nullptr;
|
|
NukiOfficial* _nukiOfficial = nullptr;
|
|
Gpio* _gpio = nullptr;
|
|
NukiRetryHandler* _nukiRetryHandler = nullptr;
|
|
|
|
Preferences* _preferences;
|
|
int _intervalLockstate = 0; // seconds
|
|
int _intervalHybridLockstate = 0; // seconds
|
|
int _intervalBattery = 0; // seconds
|
|
int _intervalConfig = 60 * 60; // seconds
|
|
int _intervalKeypad = 0; // seconds
|
|
int _restartBeaconTimeout = 0; // seconds
|
|
bool _publishAuthData = false;
|
|
bool _clearAuthData = false;
|
|
bool _checkKeypadCodes = false;
|
|
int _invalidCount = 0;
|
|
int64_t _lastCodeCheck = 0;
|
|
std::vector<uint16_t> _keypadCodeIds;
|
|
std::vector<uint32_t> _keypadCodes;
|
|
std::vector<uint8_t> _timeControlIds;
|
|
std::vector<uint32_t> _authIds;
|
|
|
|
NukiLock::KeyTurnerState _lastKeyTurnerState;
|
|
NukiLock::KeyTurnerState _keyTurnerState;
|
|
|
|
NukiLock::BatteryReport _batteryReport;
|
|
NukiLock::BatteryReport _lastBatteryReport;
|
|
|
|
NukiLock::LockAction _offCommand = (NukiLock::LockAction)0xff;
|
|
|
|
NukiLock::Config _nukiConfig = {0};
|
|
NukiLock::AdvancedConfig _nukiAdvancedConfig = {0};
|
|
bool _nukiConfigValid = false;
|
|
bool _nukiAdvancedConfigValid = false;
|
|
bool _hassEnabled = false;
|
|
bool _hassSetupCompleted = false;
|
|
bool _disableNonJSON = false;
|
|
bool _pairedAsApp = false;
|
|
bool _paired = false;
|
|
bool _statusUpdated = false;
|
|
int _newSignal = 0;
|
|
bool _hasKeypad = false;
|
|
bool _forceDoorsensor = false;
|
|
bool _forceKeypad = false;
|
|
bool _keypadEnabled = false;
|
|
bool _forceId = false;
|
|
bool _isUltra = false;
|
|
bool _isDebugging = false;
|
|
bool _hasConnected = false;
|
|
uint _maxKeypadCodeCount = 0;
|
|
uint _maxTimeControlEntryCount = 0;
|
|
uint _maxAuthEntryCount = 0;
|
|
uint8_t _restartController = 0;
|
|
int _nrOfRetries = 0;
|
|
int _retryDelay = 0;
|
|
int _retryConfigCount = 0;
|
|
int _retryLockstateCount = 0;
|
|
int _rssiPublishInterval = 0;
|
|
int64_t _statusUpdatedTs = 0;
|
|
int64_t _nextRetryTs = 0;
|
|
int64_t _nextLockStateUpdateTs = 0;
|
|
int64_t _nextBatteryReportTs = 0;
|
|
int64_t _nextConfigUpdateTs = 0;
|
|
int64_t _waitAuthLogUpdateTs = 0;
|
|
int64_t _waitKeypadUpdateTs = 0;
|
|
int64_t _waitTimeControlUpdateTs = 0;
|
|
int64_t _waitAuthUpdateTs = 0;
|
|
int64_t _nextTimeUpdateTs = 0;
|
|
int64_t _nextKeypadUpdateTs = 0;
|
|
int64_t _nextRssiTs = 0;
|
|
int64_t _lastRssi = 0;
|
|
int64_t _disableBleWatchdogTs = 0;
|
|
uint32_t _basicLockConfigaclPrefs[16];
|
|
uint32_t _advancedLockConfigaclPrefs[25];
|
|
std::string _firmwareVersion = "";
|
|
std::string _hardwareVersion = "";
|
|
volatile NukiLock::LockAction _nextLockAction = (NukiLock::LockAction)0xff;
|
|
|
|
char* _buffer;
|
|
const size_t _bufferSize;
|
|
};
|