Hi!
I have STM32 NUCLEO-F767ZI board with built-in ethernet and I use stm32duino core and Arduino IDE 1.8.10. To compile my project I changed file BlynkSimpleEthernet.h:
…
// #include <Ethernet.h>
// #include <EthernetClient.h>
#include <LwIP.h>
#include <STM32Ethernet.h>
…
Connection to Blynk server and receiving commands in BLYNK_WRITE(Vxx) works normally.
But function Blynk.virtualWrite(Vxx, xxx) doesn’t work. My program loses connection and in COM port monitor I see next messages:
Connecting to 139.59.206.133
Connecting to 139.59.206.133
Connecting to 139.59.206.133
Connecting to 139.59.206.133
…
Please help, what should I do to make this function work?