Anatoli Arkhipenko
Anatoli Arkhipenko
How do I do that?
As usual, need to see the source code to be able to attempt to help.
Unfortunately, I do not use Platform.io, but on the surface of things: why not include the external reference to scheduler into aTaks.h file since you need it to create a...
Indeed, it does not work, probably because of the sequence of declarations. I am not using CPP/HPP files for Arduino, so never saw this issue. As a workaround this works:...
As far as I know all examples do compile successfully on their respective platforms. Which one do you have a problem with? Sent from a mobile device. Apologies for accidental...
I had to move away from espressif's streaming implementation completely because their code uses "chunked" stream which VLC and Blynk video players choke on. I needed something that can play...
Chiming in here. ESP32 has 3 UARTS, and I am currently working on a project that uses Serial and Serial1 for functionality, leaving Serial2 for debug. It would be very...
There are two files: [Dictionary.h](https://github.com/arkhipenko/Dictionary/blob/master/src/Dictionary.h) and [DictionaryDeclarations.h](https://github.com/arkhipenko/Dictionary/blob/master/src/DictionaryDeclarations.h) Please follow the guidance on how to deal with multi-tab situations in the examples of the other library here: https://github.com/arkhipenko/TaskScheduler/tree/master/examples/Scheduler_example16_Multitab Same exact approach.
It is part of version 3.8.3 which is currently in testing. You can pull it from `testing` branch https://github.com/arkhipenko/TaskScheduler/tree/testing
I am particularly interested in why you are altering the stream size here: ``` if( !Update.begin( ( ( update_size + SPI_FLASH_SEC_SIZE-1 ) & ~( SPI_FLASH_SEC_SIZE-1 ) ), partition ) )...