The currently used connect string is:
this.S7Client.ConnectTo(this.ip, 0, 1);
This means Rack 0 ans Stlot 1. For the series 300 and 400 this has to be Slot 2.
Therefore I recommend to make the rack and slot number configurable.
Currently a workaround is to manual edit the connect within index.js to the following
this.S7Client.ConnectTo(this.ip, 0, 2);
The currently used connect string is:
this.S7Client.ConnectTo(this.ip, 0, 1);
This meansRack 0
ansStlot 1
. For the series 300 and 400 this has to beSlot 2
.Therefore I recommend to make the rack and slot number configurable. Currently a workaround is to manual edit the connect within index.js to the following
this.S7Client.ConnectTo(this.ip, 0, 2);