Search found 78 matches

by a2800276
Sun Sep 04, 2022 12:25 pm
Forum: Documentation
Topic: Wifi mesh stack functions - where are they defined?
Replies: 7
Views: 9325

Re: Wifi mesh stack functions - where are they defined?

Frankly, it is prompting our team to consider switching to other chips with just as good a capability as Espressif's but significantly better documentation. And we already have several prototypes that we're using your chips for, but can't proceed with development effort fast enough because of lack ...
by a2800276
Sun Jul 17, 2022 7:40 am
Forum: ESP-IDF
Topic: can not find h file of component
Replies: 3
Views: 3443

Re: can not find h file of component

Ugh, I feel your pain. Search through the IDF "Build" docs https://docs.espressif.com/projects/esp-idf/en/latest/esp32/api-guides/build-system.html looking especially for COMPONENT_DIRS and similar vars. The short version: there are two things you need to consider: - the build system needs to know t...
by a2800276
Mon Jun 20, 2022 7:41 am
Forum: ESP-IDF
Topic: SPI slave - start the transaction without triggering the CS pin
Replies: 5
Views: 3489

Re: SPI slave - start the transaction without triggering the CS pin

Chip select is integral to addressing devices on the bus in SPI. While you might be able to hack around chip select, if you want to save pins use I2C for your protocol instead.
by a2800276
Mon Jun 13, 2022 9:26 am
Forum: General Discussion
Topic: MicroPython support for ESP32-CAM
Replies: 1
Views: 3586

Re: MicroPython support for ESP32-CAM

I'm sketical as to whether you'd have a lot of resources left to actually *do* anything useful with the ESP-CAM after installing micropython, but apparently some people have gotten it to work, see e.g. https://lemariva.com/blog/2019/09/micro ... hoto-esp32
by a2800276
Thu Jun 09, 2022 8:21 pm
Forum: IDEs for ESP-IDF
Topic: Http request to an https site
Replies: 2
Views: 3804

Re: Http request to an https site

Could you apply some formatting to your post? It's nearly impossible to read the way it is. Something seems off: the error message you are posting is complaining about improper tls use, but the code you posted doesn't (seem) to use tls anywhere. Something else is probably the matter. Make sure the f...
by a2800276
Wed Jun 08, 2022 8:14 pm
Forum: ESP-IDF
Topic: Intermittent HTTP client request failures
Replies: 3
Views: 2670

Re: Intermittent HTTP client request failures

If it's Ethernet it should be fairly simple to sniff and see where the FIN is from. Stab in the dark: there's an IP address conflict in your subnet and a third device sharing the IP of either client or server is closing the connection...
by a2800276
Mon May 30, 2022 3:49 pm
Forum: ESP-IDF
Topic: BLE examples not working.
Replies: 2
Views: 1534

Re: BLE examples not working.

Which example? Which Ide are you using? How did you go about loading the examples into the IDE? Have you tried compiling the example from the command line?
by a2800276
Wed May 25, 2022 10:31 pm
Forum: IDEs for ESP-IDF
Topic: Can't program the ESP32 with VSCode
Replies: 5
Views: 6143

Re: Can't program the ESP32 with VSCode

Can you run monitor on Windows? Are you sure COM3 is the correct port? Are you sure nothing else (`idf.py monitor`?) is running and blocking your connection?
by a2800276
Wed May 25, 2022 4:37 pm
Forum: ESP32 Arduino
Topic: esp32 calculate perceptual hash
Replies: 3
Views: 2130

Re: esp32 calculate perceptual hash

Just a heads up for googling this: a good hash should have a vastly different output for even slightly different inputs, so that's likely the opposite of what you're looking for. Instead "fingerprint" or "image similarity". I doubt you would need to do anything fancy... I'd start with an extremely n...