Search found 4 matches

by lcarnevale
Tue May 18, 2021 2:20 pm
Forum: ESP-MDF
Topic: Parent is disconnected, reason: 106
Replies: 0
Views: 6431

Parent is disconnected, reason: 106

Hey there, I am working with a single node configuration and ESP-MDF. The node, which is of course the root node, connects to wifi and gets an IP address. It also connects to a public MQTT broker and sends messages. After a while, the mesh breaks and the board enters a loop as shown in the Figure he...
by lcarnevale
Wed Dec 16, 2020 2:33 pm
Forum: ESP-MDF
Topic: can raspberry pi establish communication with esp32 wifi mesh
Replies: 1
Views: 5323

Re: can raspberry pi establish communication with esp32 wifi mesh

Hey there,

I want to follow up this discussion because I am interested to the same topic.

I would like to create a mesh which includes ESP32 and Raspberry Pi 4. Ideally, I am interested to BLE technology, but WiFi could also be good enough.

Best,
Lorenzo.
by lcarnevale
Mon Dec 14, 2020 7:56 am
Forum: ESP-IDF
Topic: Pipe of Subprocess in ANSI C
Replies: 3
Views: 6811

Re: Pipe of Subprocess in ANSI C

Thanks for your reply.
Considering my intent was changing the ESP32's behavior in run-time, I was able to use the OTA for this purpose.
by lcarnevale
Mon Dec 07, 2020 10:25 am
Forum: ESP-IDF
Topic: Pipe of Subprocess in ANSI C
Replies: 3
Views: 6811

Pipe of Subprocess in ANSI C

Hello there, I am interested in running a pipe of subprocesses written in ANSI C using the ESP32. The following code is just a sample I have tried to run. int parse_output(void) { char *cmd = "ls -l"; char buf[BUFSIZE]; FILE *fp; if ((fp = popen(cmd, "r")) == NULL) { printf("############## Error ope...