-
-
Notifications
You must be signed in to change notification settings - Fork 1.1k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Custom converters #687
Comments
Hi Jackson, I plan on adding custom converters in the future so that anyone can enrich ArduinoJson to support new types. Regards, |
Hi Benoit, Thanks for your works, I'm looking forward to try that. Regards, |
Hi |
Feature published in ArduinoJson 6.18.0 |
Hi,
I'm writing a program which needs to convert ISO8601 time string (e.g.
2018-02-22T13:21:00Z
as general or20180222T132100Z
for some special cases) totime_t
orstruct std::tm
.Currently I'm using
strptime()
function to parse the time string to those two time data types. I'm wondering if I can use.as<time_t>()
or.as<struct std::tm>()
?Regards,
Jackson
The text was updated successfully, but these errors were encountered: