Skip to content

Commit f7be06c

Browse files
committed
Added ESP8266
It is now possible to use a esp8266-chip to request modbus via tcp, no example provided, similar to other examples
1 parent 2809ff0 commit f7be06c

File tree

2 files changed

+21
-5
lines changed

2 files changed

+21
-5
lines changed

ModbusTCP.cpp

+11-3
Original file line numberDiff line numberDiff line change
@@ -24,6 +24,7 @@ Arduino library for communicating with Modbus server over Ethernet in TCP.
2424
2525
Adopted from ModbusMaster for RTU over RS-485 by Doc Walker
2626
Modified by Narendra Dehury for TCP.
27+
Modified by Florian K for ESP8266.
2728
copyright @ phoenixrobotix.com
2829
2930
*/
@@ -583,6 +584,8 @@ uint8_t ModbusTCP::ModbusMasterTransaction(uint8_t u8MBFunction)
583584
if(!ModbusClient.connected()) { // fOR w5100
584585
#elif ENC28J60
585586
if(!MBconnectionFlag) { // For ENC28J60
587+
#elif ESP8266
588+
if (!ModbusClient.connected()) { // for esp8266
586589
#endif
587590
Serial.print(F("Trying to connect..."));
588591
MBconnectionFlag = 0;
@@ -602,9 +605,11 @@ uint8_t ModbusTCP::ModbusMasterTransaction(uint8_t u8MBFunction)
602605
else
603606
Serial.println(F("Already Connected to Server!!"));
604607

605-
608+
#ifdef ESP8266
609+
ModbusClient.write(&u8ModbusADU[0], u8ModbusADUSize);
610+
#else
606611
ModbusClient.write(u8ModbusADU, u8ModbusADUSize);
607-
612+
#endif
608613
u8ModbusADUSize = 0;
609614
// loop until we run out of time or bytes, or an error occurs
610615
u32StartTime = millis();
@@ -659,8 +664,11 @@ uint8_t ModbusTCP::ModbusMasterTransaction(uint8_t u8MBFunction)
659664
#if WIZNET_W5100
660665
ModbusClient.stop();
661666
Serial.println("WIZNET W5100 : Stopping");
662-
#else
667+
#elif ENC28J60
663668
Serial.println("ENC28J60 : Not Stopping");
669+
#elif ESP8266
670+
ModbusClient.stop();
671+
Serial.println("ESP8266 : Stopping");
664672
#endif
665673

666674

ModbusTCP.h

+10-2
Original file line numberDiff line numberDiff line change
@@ -33,6 +33,8 @@ Arduino library for communicating with Modbus server over Ethernet in TCP.
3333
Adopted from ModbusMaster for RTU over RS-485 by Doc Walker
3434
3535
Modified by Narendra Dehury for TCP.
36+
37+
Modified by Florian K for ESP8266.
3638
3739
Copyright @ phoenixrobotix.com
3840
@@ -43,8 +45,8 @@ Arduino library for communicating with Modbus server over Ethernet in TCP.
4345
#define Modbus_TCPIP_h
4446

4547
#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
4850

4951

5052
/* _____STANDARD INCLUDES____________________________________________________ */
@@ -65,6 +67,10 @@ Arduino library for communicating with Modbus server over Ethernet in TCP.
6567
#include <UIPEthernet.h>
6668
#endif
6769

70+
#if ESP8266
71+
#include <WiFiClient.h>
72+
#endif
73+
6874

6975
/* _____PROJECT INCLUDES_____________________________________________________ */
7076

@@ -86,6 +92,8 @@ class ModbusTCP
8692
EthernetClient ModbusClient;
8793
#elif ENC28J60
8894
UIPClient ModbusClient;
95+
#elif ESP8266
96+
WiFiClient ModbusClient;
8997
#endif
9098

9199
char MBconnectionFlag = 0;

0 commit comments

Comments
 (0)