File tree 2 files changed +21
-5
lines changed
2 files changed +21
-5
lines changed Original file line number Diff line number Diff line change @@ -24,6 +24,7 @@ Arduino library for communicating with Modbus server over Ethernet in TCP.
24
24
25
25
Adopted from ModbusMaster for RTU over RS-485 by Doc Walker
26
26
Modified by Narendra Dehury for TCP.
27
+ Modified by Florian K for ESP8266.
27
28
copyright @ phoenixrobotix.com
28
29
29
30
*/
@@ -583,6 +584,8 @@ uint8_t ModbusTCP::ModbusMasterTransaction(uint8_t u8MBFunction)
583
584
if (!ModbusClient.connected ()) { // fOR w5100
584
585
#elif ENC28J60
585
586
if (!MBconnectionFlag) { // For ENC28J60
587
+ #elif ESP8266
588
+ if (!ModbusClient.connected ()) { // for esp8266
586
589
#endif
587
590
Serial.print (F (" Trying to connect..." ));
588
591
MBconnectionFlag = 0 ;
@@ -602,9 +605,11 @@ uint8_t ModbusTCP::ModbusMasterTransaction(uint8_t u8MBFunction)
602
605
else
603
606
Serial.println (F (" Already Connected to Server!!" ));
604
607
605
-
608
+ #ifdef ESP8266
609
+ ModbusClient.write (&u8ModbusADU[0 ], u8ModbusADUSize);
610
+ #else
606
611
ModbusClient.write (u8ModbusADU, u8ModbusADUSize);
607
-
612
+ # endif
608
613
u8ModbusADUSize = 0 ;
609
614
// loop until we run out of time or bytes, or an error occurs
610
615
u32StartTime = millis ();
@@ -659,8 +664,11 @@ uint8_t ModbusTCP::ModbusMasterTransaction(uint8_t u8MBFunction)
659
664
#if WIZNET_W5100
660
665
ModbusClient.stop ();
661
666
Serial.println (" WIZNET W5100 : Stopping" );
662
- #else
667
+ #elif ENC28J60
663
668
Serial.println (" ENC28J60 : Not Stopping" );
669
+ #elif ESP8266
670
+ ModbusClient.stop ();
671
+ Serial.println (" ESP8266 : Stopping" );
664
672
#endif
665
673
666
674
Original file line number Diff line number Diff line change @@ -33,6 +33,8 @@ Arduino library for communicating with Modbus server over Ethernet in TCP.
33
33
Adopted from ModbusMaster for RTU over RS-485 by Doc Walker
34
34
35
35
Modified by Narendra Dehury for TCP.
36
+
37
+ Modified by Florian K for ESP8266.
36
38
37
39
Copyright @ phoenixrobotix.com
38
40
@@ -43,8 +45,8 @@ Arduino library for communicating with Modbus server over Ethernet in TCP.
43
45
#define Modbus_TCPIP_h
44
46
45
47
#define WIZNET_W5100 0 /* *< define 1 if WIZNET W5100 IC is used, otherwise 0 */
46
- #define ENC28J60 1 /* *< define 1 if ENC28J60 IC is used, otherwisw 0 */
47
-
48
+ #define ENC28J60 0 /* *< define 1 if ENC28J60 IC is used, otherwise 0 */
49
+ # define ESP8266 1
48
50
49
51
50
52
/* _____STANDARD INCLUDES____________________________________________________ */
@@ -65,6 +67,10 @@ Arduino library for communicating with Modbus server over Ethernet in TCP.
65
67
#include < UIPEthernet.h>
66
68
#endif
67
69
70
+ #if ESP8266
71
+ #include < WiFiClient.h>
72
+ #endif
73
+
68
74
69
75
/* _____PROJECT INCLUDES_____________________________________________________ */
70
76
@@ -86,6 +92,8 @@ class ModbusTCP
86
92
EthernetClient ModbusClient;
87
93
#elif ENC28J60
88
94
UIPClient ModbusClient;
95
+ #elif ESP8266
96
+ WiFiClient ModbusClient;
89
97
#endif
90
98
91
99
char MBconnectionFlag = 0 ;
You can’t perform that action at this time.
0 commit comments