Camiel Verdult

Results 25 comments of Camiel Verdult

The only thing I did was dragging components/FastLED-idf to the components folder of esp-homekit-sdk. I see [here](https://github.com/bbulkow/FastLED-idf#fastled) That you should drop FastLED as well?! Is there an installation/starting out section?

I tried to replicate errors after every little step. It appears that after changing the app_main and lightbulb c files to be cpp files, it won't compile. This is without...

After installing the missing underlying dependencies by running following: ``` sudo apt update sudo apt install ffmpeg libsm6 libxext6 -y ``` I now get a different error: ``` /home/incredabox/ilastik-1.3.3post3-Linux/ilastik-meta/lazyflow/lazyflow/classifiers/__init__.py:20: UserWarning:...

It's missing libexpat, adding the following between `git clone ...` and `make STANDALONE=n` in esp-sdk-dockerfile fixed it for me: ``` cd /build/esp-open-sdk/crosstool-NG ; \ ls ; \ mkdir .build ;...

The same steps would work if you were to do this manually on a linux VM/machine

Just to be sure, I added the following print statement: ```py with multiprocessing.Pool() as pool: print(data.db.provider) ``` And the main thread pony setup does have a provider: ``

Trying the following in the start_db function results in the same error: ```py db.bind("sqlite", filename=":sharedmemory:", create_db=True) ```

Calling this from inside of a pool worker also throws the same error: ```py db.insert( "table", call = call, result = metadata ) ```

The [I2C scanner](https://github.com/UncleRus/esp-idf-lib/blob/master/examples/i2cdev/default/main/main.c) also throws this watchdog timer reset. ``` I (294) main_task: Calling app_main() I (294) app_main: 1 0 1 2 3 4 5 6 7 8 9 a...

You could try something like this: ```py SENSOR_ID = 0 # 0 for CAM0 and 1 for CAM1 ports FRAMERATE = 2 # Framerate can go from 2 to 30...