tius2000
tius2000
There might be problem with hardware SPI and SDCard. The SDCard sample compiles fine, but does only work (slow) when I replace `SDCardSPI = new SPIClass();` with `SDCardSPI = new...
The option _htmlroot_ supported by gulp-uncss seems to be missing. It is required for proper processing of relative links to javascript code within the html files.
JsonObjectStream currently sets rootnode to JsonObject within the constructor. So it cannot be used if an JsonArray is required as root node. A possible solution would be either a second...
IE seems to sends XMLHttpRequest as two TCP packets (see https://josephscott.org/archives/2009/08/xmlhttprequest-xhr-uses-multiple-packets-for-http-post). I could verify this for a simple request with IE11 on a win7 box using wireshark. However, this seems...
To create an array of array the method JsonBuffer::createArray() is required: ``` DynamicJsonBuffer buffer; JsonArray& list = buffer.createArray(); JsonArray& item = buffer.createArray(); item.add(1); list.add( item ); ``` However, the class...
Please excuse if this is a stupid or frequently asked question - I'm new to both SmingRTOS and GitHub :-) First of all many thanks to everyone who contributed to...