Results 25 comments of Krzysztof

Hi @ahmadmn, I got addicted to ESP32 and have not time to prepare & document more advanced versions above Delta.

Hi @williamesp2015, What for would you use the free host? Version Delta of this application has a web server and an ESP loaded with it is the host already. If...

@williamesp2015, I am not sure if I understand what you mean by "data directory to a web". If you expose ESP to internet, it will have specific IP address (or...

Hi @williamesp2015, Thank you for update on developments with binary transfer and code snippets! To skip copying data from `samples` to `u8Data`, did you consider something like: ``` webSocket.sendBIN(socketNumber, samples,...

@williamesp2015, You are right. I did not consider the data type. In such case I would [cast](https://en.wikipedia.org/wiki/Type_conversion) `uint16_t *` data type to `uint8_t *` : ``` webSocket.sendBIN(socketNumber, (uint8_t *) samples,...

Hi @williamesp2015, This looks like version [Bravo](https://github.com/krzychb/EspScopeA0#bravo-construction) that is already on my To Do list :smile: Have you been thinking about setting a fixed number of samples and threshold or...

Hi @xxvms, Merry Christmas! The line you are showing looks correct to me. What about the rest of the query string? Sending more variables is shown in next sections, for...

Hi @consolacion, If it works for `BasicOTA.ino` and not in another sketch, then likely something basis is missing or misplaced. I assume you were testing `OnlineHumidifier-Maintain.ino` sketch. If so, then...

Hi semaf, Thank you for issuing first report on this repository :smile: Please post the compilation log so I can check where the problem is. What version of ESP8266 core...

I see your point and thank you for taking time to document it. This is a good opportunity to expand this repository with another section (Just DHT22 + ESP8266 +...