Skip to content

Commit 4ae0f72

Browse files
committed
Clean-up and prepare for 0.6.3 release.
1 parent b488de4 commit 4ae0f72

3 files changed

Lines changed: 2 additions & 8 deletions

File tree

include/versions.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
#pragma once
22

3-
#define MAIN_Version "3833029"
3+
#define MAIN_Version "b488de4"
44
#define KNX_Version "2.1.0+e69f636"
55
#define MODULE_Common_Version "1.2.0+ddd1363"
66
#define MODULE_Common_ETS 18

src/FingerprintModule.cpp

Lines changed: 0 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -198,21 +198,15 @@ bool FingerprintModule::searchForFinger()
198198
{
199199
if (ParamFIN_ScanMode == 1 &&
200200
KoFIN_Touched.value(DPT_Switch))
201-
{
202-
logDebugP("TOUCHED=FALSE");
203201
KoFIN_Touched.value(false, DPT_Switch);
204-
}
205202

206203
hasLastFoundLocation = false;
207204
return false;
208205
}
209206

210207
if (ParamFIN_ScanMode == 1 &&
211208
!KoFIN_Touched.value(DPT_Switch))
212-
{
213-
logDebugP("TOUCHED=TRUE");
214209
KoFIN_Touched.value(true, DPT_Switch);
215-
}
216210

217211
Fingerprint::FindFingerResult findFingerResult = finger.findFingerprint();
218212

src/main.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77

88
void setup()
99
{
10-
const uint8_t firmwareRevision = 2;
10+
const uint8_t firmwareRevision = 3;
1111
openknx.init(firmwareRevision);
1212
openknx.addModule(1, openknxLogic);
1313
openknx.addModule(2, openknxFingerprintModule);

0 commit comments

Comments
 (0)