jshep321

Results 20 comments of jshep321

Good points @bblanchon... it is complex for sure. IMHO it's perfectly ok to change the structure of the (non-wanted parts of the) document _after_ filtering. The core idea of a...

@bblanchon FYI, here is an overview of the Google firebase (non-array) challenge explained in a much clearer way than I explained above. [https://www.tutorialspoint.com/firebase/firebase_arrays.htm](url) In order to search for the index...

Yes, you caught me... I am trying to use your filter to do actual searching (on both keys and values). :) I can see a need to do this in...

OK thanks. I'm soon going to be looking into integrating TLS+certs into my ESP32. Likely similar challenges. Might move to a REST interface instead of MQTT since TLS is already...

Ah sorry... R503 (Product ID 4651).

yes, works quite well thanks! From the hzgrow datasheet (ver 1.1) this appears to be supported... assuming I'm interpreting the "finger library size" correctly. ![image](https://user-images.githubusercontent.com/12618683/94945566-da64fb80-04a8-11eb-9083-60db5dbab4b3.png)

Another method is: ```pkill v4l2rtspserver``` will kill the process (by name). Use pkill with caution. ```v4l2rtspserver``` will restart. I simply added the following line to my user cron (```crontab -e```)...

Hey, I've successfully avoided this issue with my esp32 dev boards, but just received some super cheap ESP01's w/8266 chip. They reuse GPIO0 & 2 from the boot process as...

Update: I switched my switch output to GPIO3 (RXD) to see if it glitches. And it does, even with a strong external pullup. So now I'm wondering if your issue...

Thanks @chaffinched. On the ESP01, early_pin_init: false reduced the chatter to a single event instead of two. But that's still one too many. I guess I'll move on from the...