moved iris-kit-esp8285 to subdir

This commit is contained in:
strawmanbobi
2024-10-08 16:42:36 +08:00
parent 89053640ef
commit cd861c50ed
676 changed files with 15 additions and 0 deletions

View File

@@ -0,0 +1,11 @@
#define ARDUINOJSON_DECODE_UNICODE 1
#include <ArduinoJson.h>
#include <catch.hpp>
TEST_CASE("ARDUINOJSON_DECODE_UNICODE == 1") {
DynamicJsonDocument doc(2048);
DeserializationError err = deserializeJson(doc, "\"\\uD834\\uDD1E\"");
REQUIRE(err == DeserializationError::Ok);
}