Search found 10 matches
- Mon Jul 18, 2022 2:53 pm
- Forum: General Discussion
- Topic: Which library to create a FTP client with APPEND command?
- Replies: 0
- Views: 1299
Which library to create a FTP client with APPEND command?
Hi, I need to push some data from a ESP32-wroom (ESP-IDF 4.3) to a remote FTP server (let's say Filezilal Server). I cannot find any ready-to-use FTP library, do you suggest anything? Furthermore, I need the APPEND command in order to create a file and to sequentially append new data inside it, how ...
- Thu Feb 13, 2020 5:16 pm
- Forum: ESP-IDF
- Topic: How to use simultaneously A2D, AVRC and SPP in a ESP32?
- Replies: 2
- Views: 5783
How to use simultaneously A2D, AVRC and SPP in a ESP32?
Hi, I have the task to create a little device which is capable to send/receive data through SPP and then to simultaneously stream audio data through A2C/AVRC bluetooth protocols. Is that possible? I was looking to classic bluetooth examples in the repository, but I don't know how to "merge" these tw...
- Tue Nov 12, 2019 9:08 am
- Forum: Hardware
- Topic: OV3660 with ESP-EYE or ESP32-CAM Module
- Replies: 1
- Views: 8801
Re: OV3660 with ESP-EYE or ESP32-CAM Module
Needed the same, or at least if someone can help me understand how to use this https://www.arducam.com/product/1-6-cmo ... uc7670-a/ camera in order to obtain 3MP image. Thank you.
- Thu Oct 24, 2019 11:48 am
- Forum: ESP-WHO
- Topic: How to create a custom object detection classifier
- Replies: 2
- Views: 19079
How to create a custom object detection classifier
Hi, I need to detect objects from the captured frames of the esp-eye. In order to do that, I have trained a tensorflow model following this tutorial https://tensorflow-object-detection-api-tutorial.readthedocs.io/en/latest/training.html and as I can see here https://www.esp32.com/viewtopic.php?p=471...
- Thu Oct 24, 2019 11:32 am
- Forum: ESP-WHO
- Topic: Building a new classifier for the ESP WHO
- Replies: 5
- Views: 19328
Re: Building a new classifier for the ESP WHO
When you have finished training the model with some popular frameworks like tensorflow, you can then implement the inference process to the ESP related devices. The model structure is easy to implement as we have provided some common operations and you can also rewrite what you need. The model coef...
- Wed Oct 23, 2019 4:55 pm
- Forum: ESP-IDF
- Topic: How to change from face detection to other own trained object detection
- Replies: 1
- Views: 3726
How to change from face detection to other own trained object detection
Hi, I am using the esp-eye with the esp-who project. I have noticed that it is using the dlib for the face detection training, but I need to have a different object detection. I have successfully trained another svm with the dlib library on my Ubuntu host pc, but it is not clear how can I use the tr...
- Wed Oct 23, 2019 1:35 pm
- Forum: ESP-IDF
- Topic: How to compile DLib for a ESP32 project?
- Replies: 2
- Views: 4356
How to compile DLib for a ESP32 project?
Hi, I want to use the following library http://dlib.net/ (dlib, version 19.18) in order to use neural networks on the ESP32. But I am facing hard times while trying to compile the library in order to be used in a ESP-IDF project. What I have tried to do is: - Just extracting the library sources (.h ...
- Tue Oct 15, 2019 10:23 am
- Forum: ESP-WHO
- Topic: Why it is not possible to use PIXFORMAT_RGB888 with higher resolutions than QVGA?
- Replies: 0
- Views: 10742
Why it is not possible to use PIXFORMAT_RGB888 with higher resolutions than QVGA?
I need to scan some barcodes using the ZXing library (C++ porting) and I cannot capture and decode images (RGB888) with resolutions higher than 320x240 (QVGA), which causes panics and overflows on the ESP-WHO. Why there is this limitation? I need to capture at least XGA (1024x768) images using RGB88...
- Mon Jun 24, 2019 6:46 am
- Forum: ESP-IDF
- Topic: Error while trying to update the firmware via OTA
- Replies: 3
- Views: 6866
Re: Error while trying to update the firmware via OTA
I think I have the latest ESP32 IDF (3.0.8). The partition table is the default "Factory app, two OTA definitions" (0x8000 offset of partition table), and I've changed the serial flasher configuration of the flash size to 8MB. I've managed to update the firmware with a .bin file of 759 KB (the origi...
- Fri Jun 21, 2019 2:10 pm
- Forum: ESP-IDF
- Topic: Error while trying to update the firmware via OTA
- Replies: 3
- Views: 6866
Error while trying to update the firmware via OTA
Hi, I am trying to create a bluetooth SPP system with a ESP32 (I am following the "ble_spp_server" example). I need to find a simple way to update the firmware and I am also following the "simple_ota_example" example. What I have done so far has been to take the original "ble_spp_server" example and...