Hello, im currently having the problem with my Arduino Uno + NETWORK SHIELD W5100 that when i try to make a code which sends an email when the temperature is hot its not working and giving me this output.
Sending status:
0
2
Here is my code:
#include <Ethernet.h>
#include <SPI.h>
#include <EMailSender.h>
#include <OneWire.h>
#include <DallasTemperature.h>
#include <LiquidCrystal_I2C.h>
#include <Arduino.h>
LiquidCrystal_I2C lcd(0x27, 16, 2);
// Enter a MAC address for your controller below.
// Newer Ethernet shields have a MAC address printed on a sticker on the shield
byte mac[] = { 0xDE, 0xAD, 0xBE, 0xEF, 0xFE, 0xED };
EMailSender emailSend(“apikey”, “apikey”, “email”, “smtp”, port); // these are correct
#define ONE_WIRE_BUS 2 // Pin where the DS18B20 is connected
void setup()
{
// Open serial communications and wait for port to open:
Serial.begin(9600);
lcd.init();
lcd.backlight();
lcd.setCursor(0, 0);
lcd.print(“PEGASUS”);
lcd.setCursor(0, 1);
lcd.print(“Measure it”);
delay(2000);
lcd.clear();
// start the Ethernet connection:
if (Ethernet.begin(mac) == 0) {
Serial.println(“Failed to configure Ethernet using DHCP”);
while(1);
}
sensors.requestTemperatures(); // Request temperature readings
float temperature = sensors.getTempCByIndex(0); // Read temperature in Celsius from first sensor
delay(5000); // Add a delay to prevent flooding the serial monitor
// Read temperature here and check if it’s above 29°C
if (temperature > 30) {
EMailSender::EMailMessage message;
message.subject = “Temperatur”;
message.message = “Hallo, die Raum Temperatur ist sehr hoch!”;
i dont quite understand the question. If you mean Internet its Telekom.
Yesterday i tried the email sender and the temperature measuring and it worked. As soon as i added LCD Screen to it it didnt work anymore.
Could you help me there mate.
i have an W5100. I said when i use EMailsender + Temperaturmeasurement it works and it sends an email after the Temperature is over 40C but when i add LCD screen to it it gives me this error: Sending status:
0
2
About Memory i have 20% free on both memories. its very interesting why it wouldnt work when i add lcd that doesnt affect in any way.
I hope you understood me
Sending emails requires a significant amount of memory at the exact moment the email is sent, so having only 20% of memory free might not be sufficient.
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.