I have an Arduino Nano 33 iot. It can connect fine to my wifi network, tested using WiFiNINA’s WPAConnect example. I modified the basic gmail example (under ESP32) to work with WiFiNINA. I also extracted all secret data to an external header file, Arduino secrets, where each is defined.
The Code I have is:
#include "Arduino.h"
#include <EMailSender.h>
#include <WiFiNINA.h>
#include "arduino_secrets.h"
const char *ssid = SECRET_SSID;
const char *password = SECRET_PASS;
uint8_t connection_state = 0;
uint16_t reconnect_interval = 10000;
int i = 0;
const char *email_recp = EMAIL_RECIPIENT;
EMailSender emailSend(EMAIL_SENDER, EMAIL_PASS);
uint8_t WiFiConnect(const char *nSSID = nullptr,
const char *nPassword = nullptr) {
static uint16_t attempt = 0;
Serial.print("Connecting to ");
if (nSSID) {
WiFi.begin(nSSID, nPassword);
Serial.println(nSSID);
}
uint8_t i = 0;
while (WiFi.status() != WL_CONNECTED && i++ < 50) {
delay(200);
Serial.print(".");
}
++attempt;
Serial.println("");
if (i == 51) {
Serial.print("Connection: TIMEOUT on attempt: ");
Serial.println(attempt);
if (attempt % 2 == 0)
Serial.println(
"Check if access point available or SSID and Password\r\n");
return false;
}
Serial.println("Connection: ESTABLISHED");
Serial.print("Got IP address: ");
Serial.println(WiFi.localIP());
return true;
}
void Awaits() {
uint32_t ts = millis();
while (!connection_state) {
delay(50);
if (millis() > (ts + reconnect_interval) && !connection_state) {
connection_state = WiFiConnect();
ts = millis();
}
}
}
void sendEmail(String subjectStr, String messageStr) {
EMailSender::EMailMessage message;
message.subject = subjectStr;
message.message = messageStr;
byte statusB = 99;
byte codeB = 99;
while (statusB != 1 && codeB != 0) {
EMailSender::Response resp = emailSend.send(email_recp, message);
Serial.println("Sending status: ");
Serial.println(resp.status);
Serial.println(resp.code);
Serial.println(resp.desc);
if (WiFi.status() == WL_CONNECTED) {
Serial.println("Connected to WiFi still");
} else {
Serial.println("Disconnected from WiFi");
}
}
}
void setup() {
Serial.begin(115200);
delay(1000);
Serial.println("START!");
connection_state = WiFiConnect(ssid, password);
if (!connection_state) { // if not connected to WIFI
Awaits(); // constantly trying to connect
}
String subject = "Testing " + i;
sendEmail(subject, "This is the body of the message.");
}
void loop() {
}
This outputs:
Connection: ESTABLISHED
Got IP address: 192.168.1.149
Sending status:
0
2
Could not connect to mail server
Disconnected from WiFi
Sending status:
0
This topic was modified 1 year, 4 months ago by Renzo Mischianti.
Maintaining a repository (or site or forum) is a lot like tending to a garden - it requires constant care and attention to keep it thriving. If you're a skilled gardener (or coder!) and want to help keep our repository blooming, we'd love to have you on board! We're also looking for talented writers and forum moderators to help us grow our community. Interested in joining our team? Don't hesitate to reach out and let us know how you can contribute!
Are you a fan of electronics or programming? Share your knowledge with others, write a simple tutorial or how to make a great project Contact me: share_your_ideas@mischianti.org
The content displayed on this website is protected under a CC BY-NC-ND license. Visitors are prohibited from using, redistributing, or altering any content from this website for commercial purposes, including generating revenue through advertising. Any unauthorized use is a violation of the license terms and legal action may be taken against individuals or entities found to be in violation.
You must also provide the link to the source.
To provide the best experiences, we use technologies like cookies to store and/or access device information. Consenting to these technologies will allow us to process data such as browsing behavior or unique IDs on this site. Not consenting or withdrawing consent, may adversely affect certain features and functions.
Functional
Always active
The technical storage or access is strictly necessary for the legitimate purpose of enabling the use of a specific service explicitly requested by the subscriber or user, or for the sole purpose of carrying out the transmission of a communication over an electronic communications network.
Preferences
The technical storage or access is necessary for the legitimate purpose of storing preferences that are not requested by the subscriber or user.
Statistics
The technical storage or access that is used exclusively for statistical purposes.The technical storage or access that is used exclusively for anonymous statistical purposes. Without a subpoena, voluntary compliance on the part of your Internet Service Provider, or additional records from a third party, information stored or retrieved for this purpose alone cannot usually be used to identify you.
Marketing
The technical storage or access is required to create user profiles to send advertising, or to track the user on a website or across several websites for similar marketing purposes.
To provide the best experiences, we use technologies like cookies to store and/or access device information. Consenting to these technologies will allow us to process data such as browsing behavior or unique IDs on this site. Not consenting or withdrawing consent, may adversely affect certain features and functions.
Functional
Always active
The technical storage or access is strictly necessary for the legitimate purpose of enabling the use of a specific service explicitly requested by the subscriber or user, or for the sole purpose of carrying out the transmission of a communication over an electronic communications network.
Preferences
The technical storage or access is necessary for the legitimate purpose of storing preferences that are not requested by the subscriber or user.
Statistics
The technical storage or access that is used exclusively for statistical purposes.The technical storage or access that is used exclusively for anonymous statistical purposes. Without a subpoena, voluntary compliance on the part of your Internet Service Provider, or additional records from a third party, information stored or retrieved for this purpose alone cannot usually be used to identify you.
Marketing
The technical storage or access is required to create user profiles to send advertising, or to track the user on a website or across several websites for similar marketing purposes.