tobozo
tobozo
Hey thanks for your feedback :+1: Keeping comments between editions seems impossible as they're implicitely [dumped by the scanner](https://github.com/yaml/libyaml/blob/master/src/scanner.c#L873). The topic is [still open](https://github.com/yaml/libyaml/issues/42), missing features are whitespace preservation and...
hi, thanks for you feedback :+1: there's a blocking problem with AVR: - incomplete sdt lib (prevents some c++ templates from evaluating arg types) - `Print` object is missing the...
hi, thanks for your feedback :+1: if you're on esp32/esp8266 here's a snippet using `fs::FS` I'll be adding to the example folder soon otherwise please specify your preferred architecture/device (and...
I don't have a Uno, but 2048 bytes of ram sounds a bit too tight to hold both ArduinoJson and YAML library. ArduinoJson support does compile with some `serializeYml()` tests...
this printf() implementation is 148 bytes better https://github.com/arduino/ArduinoCore-API/pull/28/files
> Teensy 3.6 and 4.x. I don't have such legendary items, but the cores seem to implement fs::FS so it shouldn't be very different. The library may need some modifications...
I have just published version 1.2.5, there's a new example based on M5Stack (to keep the code simple) with an action button that toggles a boolean value and updates the...
hey @thijstriemstra I managed to order two teensy 4.1 units :partying_face: , I also found a [package URL](https://www.pjrc.com/teensy/package_teensy_index.json) to use instead of the faulty installer, and patched the library to...
thanks @GYBeccaria it should also work without storing the file content in a string ```cpp String json_string; StringStream json_stream_output( json_string ); File file = LittleFS.open(config_file); if( file ) { serializeYml(...
hi, > If you can figure out what is happening at the part where it stops at 100% loading it seems that bootloader and OTA routine don't agree on the...