-
Hello mobizt Arduino IDE Version 1.8.19 webserver and email library, Is it possible run together? thank you so much. #include <WiFi.h> #define stack_task_1 8192 SMTPSession smtp; void setup(){ /* set session */ /* set text */ server.on( get_config , HTTP_GET , g_config ); /* create task */ void webserver_task( void *pvParameters ) { void notify_email_task( void *pvParameters ) { |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment
-
If your device connected to the network that can access the internet, you can access to the mail server as normally while your device provides the web server functionality. Running email task in CPU core 1 is ok. I'm not sure for core 0, you can test with lower priority task. |
Beta Was this translation helpful? Give feedback.
If your device connected to the network that can access the internet, you can access to the mail server as normally while your device provides the web server functionality.
Running email task in CPU core 1 is ok. I'm not sure for core 0, you can test with lower priority task.