Search found 34 matches

by zhangyanjiao
Fri May 22, 2020 7:17 am
Forum: ESP-IDF
Topic: esp-now and number of nodes [WIFI-2126]
Replies: 8
Views: 10105

Re: esp-now and number of nodes [WIFI-2126]

Currently you can't mofify it
by zhangyanjiao
Wed May 06, 2020 11:59 am
Forum: ESP IoT Solution 中文讨论版
Topic: 需要ESP32做AP,可以连接6个sta, 同时在AP测建立tcp server,要求可以连接6个client。
Replies: 1
Views: 9818

Re: 需要ESP32做AP,可以连接6个sta, 同时在AP测建立tcp server,要求可以连接6个client。

可以调用esp_wifi_set_config(AP, config)设置AP的最大可连接数。
tcp server我这边测试是可以连接多个client的,没有发现限制为2个。
by zhangyanjiao
Wed May 06, 2020 11:41 am
Forum: ESP-IDF
Topic: esp-now and number of nodes [WIFI-2126]
Replies: 8
Views: 10105

Re: esp-now and number of nodes [WIFI-2126]

I'm sorry, I don't think there is any conflict between managing the peer list and your application.
by zhangyanjiao
Wed May 06, 2020 8:16 am
Forum: ESP-IDF
Topic: ESP-NOW specifics [WIFI-2245]
Replies: 19
Views: 21120

Re: ESP-NOW specifics [WIFI-2245]

In STA+AP mode, the STA and AP are in the same mode. If you set softAP to channel 1, then STA connects to an AP on channel 6, the softAP will change to channel 6.
by zhangyanjiao
Thu Apr 30, 2020 6:52 am
Forum: ESP-IDF
Topic: ESP-NOW specifics [WIFI-2245]
Replies: 19
Views: 21120

Re: ESP-NOW specifics [WIFI-2245]

yes, you are right, the ESP-NOW channel is directly tied to the WiFi channel. So we don't suggest you use ESP-NOW and WiFi connection at the same time. If you want to send ESP-NOW data to all peers, you can set the peer_mac to NULL in `esp_now_send()`. Refering https://docs.espressif.com/projects/es...
by zhangyanjiao
Wed Apr 29, 2020 3:29 am
Forum: ESP-IDF
Topic: esp-now and number of nodes [WIFI-2126]
Replies: 8
Views: 10105

Re: esp-now and number of nodes [WIFI-2126]

We set the number of nodes because of resource constraints, especially for the encrypted node, we need to save the key.
by zhangyanjiao
Mon Apr 27, 2020 12:02 pm
Forum: ESP-IDF
Topic: ESP-NOW specifics [WIFI-2245]
Replies: 19
Views: 21120

Re: ESP-NOW specifics [WIFI-2245]

hi Kaisha,
what do you mean by saying
I'd like to know if they intend for WiFi and ESP-NOW to work together
?
Can you explain more ?
by zhangyanjiao
Fri Apr 24, 2020 6:53 am
Forum: ESP-IDF
Topic: ESP-NOW specifics [WIFI-2245]
Replies: 19
Views: 21120

Re: ESP-NOW specifics [WIFI-2245]

hi daneast,
We have tested bewteen ESP32 and ESP8266 (RTOS), they can send and receive data successfully.
by zhangyanjiao
Wed Apr 08, 2020 8:17 am
Forum: ESP-IDF
Topic: esp-now and number of nodes [WIFI-2126]
Replies: 8
Views: 10105

Re: esp-now and number of nodes [WIFI-2126]

hi sajjadakhter, 1. Do i have to add node to my peer list to send message? can i just send message without adding to peer list. Can i reieve message from node that's not in my peer list? Yes, you have to add node to the peer list, otherwise, `esp_now_send()` will return error, but you can receive me...
by zhangyanjiao
Mon Mar 30, 2020 11:40 am
Forum: ESP32 Arduino
Topic: Send analog values using espnow
Replies: 12
Views: 26716

Re: Send analog values using espnow

Hi ShadowJ14,
In your last post, do you mean you can send and recv analog values successfully?

Hi knightridar,
Have you tried ShadowJ14's method ? Do you still have the problem?