Arbitrary.Logic
Arbitrary.Logic
The Arduino core only prints variables up to a width of 32-bits. @Robtillaart has proposed a solution which could be added to PrintEx. See: https://github.com/arduino/Arduino/issues/1236
Create a 'legacy' branch which supports the library format of 1.0.x versions.
By adding in an iterator for stream reading, the two step process of checking for available data, and reading the character can become a single operation. ``` C++ StreamEx s...
Being able to send out, or receive in a whole array would be useful.
Char arrays need to be prevented from using the array streaming methods. They are more efficiently printed being sent whole, rather than element by element.
### Describe the Bug Authentication and sessions are not working together. My end goal which I haven't been able to produce is to have a different session for http localhost...
### Describe the Bug I'm not sure if this is Pode related, however, I have not been able to reproduce the issue in other tests outside of Pode using runspaces...
I have created a simple template processing tool. Primarily this has been built to work with `PsychicStreamResponse` proposed in #45. Incorporation directly into `PsychicStreamResponse` and other response types is possible....
Moved status code sending to `sendHeaders()`. Therefore all derived instances do not need to manually send (or forget to send). As mentioned in #219 `PsychicStreamResponse` only calls [`sendHeaders()`](https://github.com/hoeken/PsychicHttp/blob/725f415a1352f86a3d47a94aee8ef9eec8aa2127/src/PsychicStreamResponse.cpp#L47). Additionally, this...