Skip to content

Commit

Permalink
Update irrigation.ino
Browse files Browse the repository at this point in the history
  • Loading branch information
SAMMYBOOOOM authored May 4, 2024
1 parent 3f48506 commit 0f33540
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions irrigation.ino
Original file line number Diff line number Diff line change
Expand Up @@ -40,17 +40,17 @@ String lineToken = "";
const int lineDelay = 100;
int lineWait = 99;
int status = WL_IDLE_STATUS;
const char* mqttServer = "broker.MQTTGO.io";
const char* clientID = "b11013112";
const char* mqttServer = "LinkToMQTTServer";
const char* clientID = "ID";
const char* mqttUserName = "";
const char* mqttPwd = "";
const char* topic = "b11013112";
const char* topic = "TopicForPosting";
const char* calltopic = "TopicForReceiving";
const char* SI_topic[] = {"visible", "ir", "uv"};
const char* DHT_topic[] = {"humidity", "celsius", "fahrenheit"};
const int HISTORY_SIZE = 5;
const char* DHT_symbol[] = {"%", "°C", "°F"};
const char* M_topic = "moisture";
const char* calltopic = "callb11013112";
unsigned long prevMillis = 0;
const long interval = 1;
String msgStr = "";
Expand Down Expand Up @@ -610,4 +610,4 @@ void loop() {

mqttStr(msgStr);
Serial.println();
}
}

0 comments on commit 0f33540

Please sign in to comment.