Federico Gianno

Results 5 comments of Federico Gianno

@Bader-Al how did you manage to get output? If I put try catch as follow I don't get anything: ```dart var query = Firestore.instance.collection('seekers').where('position', isEqualTo: 'none'); try { var snap...

Hi @dr2okevin, I am curious which ESP-IDF are you using? I've build this firmware times ago, so I don't really remember well but if I remember correctly I used version...

As you can see from the official [ESP-IDF git repisotory](https://github.com/espressif/esp-idf) (i.e. the link from which you're clonig the framework) there are different releases. When you run `git clone --recursive https://github.com/espressif/esp-idf.git`...

Hi Janinahemme, You can try to create file `CMakeLists.txt` in the root directory of this project (e.g. in your case `C:\esp\esp-idf\examples\esp32-sniffer\CMakeLists.txt`) and fill it, for instance: ``` cmake_minimum_required(VERSION 3.2) include($ENV{IDF_PATH}/tools/cmake/project.cmake)...

@syedadeebul1996 I think this is an issue related to which ESP-IDF version you're using. I guess you're using the latest stable version (the one on the [master branch](https://github.com/espressif/esp-idf)) that, according...