Skip to content

Commit e019805

Browse files
committed
fix release date problem
increase timeout time
1 parent adaea8a commit e019805

1 file changed

Lines changed: 3 additions & 3 deletions

File tree

src/Spa/Spa.ino

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -121,7 +121,7 @@ SoftwareSerial mySerial(2, 4); // RX, TX
121121

122122
//Version and date
123123
#define _VERSION "1.1.0"
124-
#define _BUILD_DATE_TIME "2021.05.24 15:04:32"
124+
#define _BUILD_DATE_TIME "2021.05.29 22:25:18"
125125

126126

127127
//Command
@@ -249,7 +249,7 @@ void setup() {
249249
Serial.print (F(" Intex Purespa communication sketch version "));
250250
Serial.print (_VERSION);
251251
Serial.print (F(" build on : "));
252-
Serial.println (_BUILD_DATE_TIME "2021.05.24 15:04:32"
252+
Serial.println (_BUILD_DATE_TIME);
253253
Serial.println(F(""));
254254
Serial.println(F("----------------------------------------------------------------------------------------------------------------------"));
255255

@@ -445,7 +445,7 @@ void loop() {
445445
)
446446
#endif
447447
{
448-
if (millis() - LastTimeReciveData > 4000)
448+
if (millis() - LastTimeReciveData > 5000)
449449
{
450450
SendValue("IntexSpa/Communication with pump", false,ID_COM_PUMP);
451451
ErrorCommunicationWithPump = true;

0 commit comments

Comments
 (0)