Search found 17 matches

by allrobot
Mon Apr 04, 2022 1:53 pm
Forum: General Discussion
Topic: ESP32-WROOM-32 Module
Replies: 2
Views: 2024

Re: ESP32-WROOM-32 Module

Maybe see https://randomnerdtutorials.com/getting ... ith-esp32/

Arduino is suitable for beginners
by allrobot
Fri Apr 01, 2022 5:56 am
Forum: ESP-IDF 中文讨论版
Topic: ESP32S最多可以发送多少个数据包,每个数据包的MTU上限多少?
Replies: 1
Views: 2043

ESP32S最多可以发送多少个数据包,每个数据包的MTU上限多少?

在Arduino不知道可以发送多大上限的数据包,以及每秒发送的数据包数量,我需要尽可能提高吞吐量。。。

我有两块ESP32板子,分别是ESP32S和ESP32 DEVKIT V1

还请各位指教😆
by allrobot
Fri Apr 01, 2022 5:51 am
Forum: ESP32 Arduino
Topic: How many packets can ESP32 DEVKIT V1 send per second? What is the maximum MTU of each packet?
Replies: 0
Views: 1212

How many packets can ESP32 DEVKIT V1 send per second? What is the maximum MTU of each packet?

1. How many packets can ESP32 DEVKIT V1 send per second?

2. What is the maximum MTU of each packet?



I need to maximize throughput. I have ESP32S and ESP32 DEVKIT V1.

I don't know what the maximum size of packets can be sent in the Arduino.
by allrobot
Wed Mar 30, 2022 7:08 am
Forum: General Discussion
Topic: Windows 10 don't find SPP bluetooth of the ESP32, how to solve it?
Replies: 2
Views: 4724

Windows 10 don't find SPP bluetooth of the ESP32, how to solve it?

I tried a lot of things, but windows10 couldn't get the ESP32 SPP bluetooth to scan. I am using the SerialToSerialBT project, mobile phone can scan SPP's Bluetooth. I wonder why my laptop can't scan. Classic bluetooth (Bluetooth to serial): //This example code is in the Public Domain (or CC0 license...
by allrobot
Wed Mar 30, 2022 6:57 am
Forum: General Discussion
Topic: Programming the new ESP32-S3 dev boards
Replies: 5
Views: 6489

Re: Programming the new ESP32-S3 dev boards

Using Arduino programming is recommended....... https://randomnerdtutorials.com/installing-the-esp32-board-in-arduino-ide-windows-instructions/ https://randomnerdtutorials.com/getting-started-with-esp32/ By whom? Programming in ESP-IDF should work great as long as you use an ESP-IDF version that su...
by allrobot
Sun Mar 20, 2022 6:06 am
Forum: General Discussion
Topic: Nimble spp_Server and client esp32c3
Replies: 3
Views: 2575

Re: Nimble spp_Server and client esp32c3

Check out the example file...

Use everything to search for example in the ESP-IDf folder and you might find something
by allrobot
Sun Mar 20, 2022 2:18 am
Forum: ESP-IDF 中文讨论版
Topic: ESP-IDF ESP32 无法实现软重启?
Replies: 1
Views: 2859

ESP-IDF ESP32 无法实现软重启?

我按照说明操作,VSCODE 无法使用该库: https ://docs.espressif.com/projects/esp-idf/en/latest/esp32/api-reference/system/system.html#_CPPv411esp_restartv [Starting] Analyzing sketch 'TEST\TEST.ino' [Warning] Output path is not specified. Unable to reuse previously compiled files. Build will be slower. See README. L...
by allrobot
Sat Mar 19, 2022 8:39 am
Forum: General Discussion
Topic: Esp32 ble. When the connection is lost, it does not connect again, I need to reset it. Can you help me with this?
Replies: 4
Views: 7889

Re: Esp32 ble. When the connection is lost, it does not connect again, I need to reset it. Can you help me with this?

https://docs.espressif.com/projects/esp-idf/en/latest/esp32/api-reference/system/system.html#_CPPv411esp_restartv Software reset: Note, however, that most peripherals will not be restarted by esp_restart() and will continue running behind them. To perform software reset of the chip, esp_restart() fu...
by allrobot
Sat Mar 19, 2022 4:30 am
Forum: General Discussion
Topic: Why does ESP32S transmit the same TX value?
Replies: 1
Views: 1794

Re: Why does ESP32S transmit the same TX value?

It's solved. Replies from Others: :oops: What data is actually incoming on Serial1. Why do you want to echo it back out a byte at a time rather than line by line? The UART service is designed to send text messages and it may be better to setValue to a text string. I don't understand this pTxCharacte...