You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
13 lines
359 B
13 lines
359 B
// ArduinoJson - https://arduinojson.org
|
|
// Copyright © 2014-2024, Benoit BLANCHON
|
|
// MIT License
|
|
|
|
// we expect ArduinoJson.h to include <string>
|
|
#define ARDUINOJSON_ENABLE_STD_STRING 1
|
|
|
|
// but we don't want it to included accidentally
|
|
#undef ARDUINO
|
|
#define ARDUINOJSON_ENABLE_STD_STREAM 0
|
|
#define ARDUINOJSON_ENABLE_STRING_VIEW 0
|
|
|
|
#include <ArduinoJson.h>
|
|
|