Compare commits

...

3 Commits

Author SHA1 Message Date
cc8f1cfd7b docs: update changelog and header for version v1.5.12-beta3
All checks were successful
Release Workflow / detect-provider (push) Successful in 2s
Release Workflow / github-release (push) Has been skipped
Release Workflow / gitea-release (push) Successful in 3m13s
2025-08-29 08:54:59 +02:00
d195f76d5e docs: update platformio.ini for beta version v1.5.12-beta3 2025-08-29 08:54:59 +02:00
6bed3b086c feat: add logging for decoded JSON data in NFC processing 2025-08-29 08:54:53 +02:00
3 changed files with 12 additions and 1 deletions

View File

@@ -1,5 +1,13 @@
# Changelog
## [1.5.12-beta3] - 2025-08-29
### Added
- add logging for decoded JSON data in NFC processing
### Changed
- update platformio.ini for beta version v1.5.12-beta3
## [1.5.12-beta2] - 2025-08-29
### Changed
- update platformio.ini for beta version v1.5.12-beta2

View File

@@ -9,7 +9,7 @@
; https://docs.platformio.org/page/projectconf.html
[common]
version = "1.5.12-beta2"
version = "1.5.12-beta3"
to_old_version = "1.5.0"
##

View File

@@ -216,6 +216,9 @@ bool decodeNdefAndReturnJson(const byte* encodedMessage, String uidString) {
nfcJsonData += (char)encodedMessage[3 + typeLength + i];
}
Serial.println("Decoded JSON Data:");
Serial.println(nfcJsonData);
// JSON-Dokument verarbeiten
JsonDocument doc;
DeserializationError error = deserializeJson(doc, nfcJsonData);