Search found 5 matches
- Thu Jul 04, 2024 8:46 am
- Forum: ESP-ADF
- Topic: Is the pipeline_tcp_client example working correctly on newer ADF+IDF's?
- Replies: 2
- Views: 6259
Re: Is the pipeline_tcp_client example working correctly on newer ADF+IDF's?
I really wonder if this has worked on any type of system before. With a timeout of only 100ms on the select call, if the connection has not been created within that timeout the code (the select call) will fail. I believe the best I've seen is somewhere around 300ms. Maybe my WiFi setup is slow, but ...
- Wed Jul 03, 2024 11:38 am
- Forum: ESP-ADF
- Topic: Is the pipeline_tcp_client example working correctly on newer ADF+IDF's?
- Replies: 2
- Views: 6259
Re: Is the pipeline_tcp_client example working correctly on newer ADF+IDF's?
In the tcp_client_stream component file : components/audio_stream/tcp_client_stream.c
The connection timeout is set to 100ms.. which considering we are working on an embedded target is very very low
If I increase this to 1000ms it works..
#define CONNECT_TIMEOUT_MS 1000
The connection timeout is set to 100ms.. which considering we are working on an embedded target is very very low
If I increase this to 1000ms it works..
#define CONNECT_TIMEOUT_MS 1000
- Tue Jul 02, 2024 9:58 pm
- Forum: ESP-ADF
- Topic: Is the pipeline_tcp_client example working correctly on newer ADF+IDF's?
- Replies: 2
- Views: 6259
Is the pipeline_tcp_client example working correctly on newer ADF+IDF's?
Hi, On a LyraT-mini. I'm trying to get the: esp-adf/examples/get-started/pipeline_tcp_client working. I run into the following problem: E (4100) esp-tls: [sock=54] select() timeout E (4100) TRANSPORT_BASE: Failed to open a new connection: 32774 E (4100) TCP_STREAM: _tcp_open, getsockopt failed (-1) ...
- Fri Jun 14, 2019 2:10 pm
- Forum: ESP-WHO
- Topic: ESP-EYE Remote P2P security camera application demo
- Replies: 0
- Views: 12323
ESP-EYE Remote P2P security camera application demo
Do you want to make a secure remote P2P accessible camera? A standalone surveillance camera or maybe a camera inside another application (bird cage, pet feeder, door bell, PIR sensor etc.) This blog showcases how to do it, source code available on GitHub (both for the app and the device code). The a...
- Mon Sep 04, 2017 7:45 am
- Forum: General Discussion
- Topic: P2P remote control with iOS and Android apps using ESP32
- Replies: 0
- Views: 4067
P2P remote control with iOS and Android apps using ESP32
Hi, You ever wanted to control your ESP32 module from remote (i.e. when it's behind your homerouter firewall)? We just released a blog article about using AppMyProduct to remote control ESP32 using iOS and Android apps. The demo is with full source for both the apps (Ionic/Cordova based) and ESP-IDF...