This is an automated email from the ASF dual-hosted git repository.
git-site-role pushed a commit to branch asf-site
in repository https://gitbox.apache.org/repos/asf/plc4x-website.git
The following commit(s) were added to refs/heads/asf-site by this push:
new 74d94dd Site checkin for project PLC4X: Jenkins Tools
74d94dd is described below
commit 74d94dd3805a29c80d819a108eaa111aeeb35706
Author: jenkins <[email protected]>
AuthorDate: Tue Mar 15 17:44:13 2022 +0000
Site checkin for project PLC4X: Jenkins Tools
---
plc4go/index.html | 2 +-
users/getting-started/plc4go.html | 2 +-
users/getting-started/virtual-modbus.html | 6 +++---
users/integrations/eclipse-milo.html | 2 +-
users/protocols/modbus.html | 4 ++--
5 files changed, 8 insertions(+), 8 deletions(-)
diff --git a/plc4go/index.html b/plc4go/index.html
index 0289f39..da58011 100644
--- a/plc4go/index.html
+++ b/plc4go/index.html
@@ -182,7 +182,7 @@ The format of an address greatly depends on the type of
connection. Therefore <c
driverManager.RegisterTransport(tcp.NewTcpTransport())
// Get a connection to a remote PLC
- crc := driverManager.GetConnection("modbus://192.168.23.30")
+ crc := driverManager.GetConnection("modbus-tcp://192.168.23.30")
// Wait for the driver to connect (or not)
connectionResult := <-crc
diff --git a/users/getting-started/plc4go.html
b/users/getting-started/plc4go.html
index 4c25fcb..56b2d7d 100644
--- a/users/getting-started/plc4go.html
+++ b/users/getting-started/plc4go.html
@@ -407,7 +407,7 @@ Perhaps we’ll change this in the future, but for now
all comes in one bund
<div class="listingblock">
<div class="content">
<pre> // Get a connection to a remote PLC
- connectionRequestChanel :=
driverManager.GetConnection("modbus://192.168.23.30?unit-identifier=1")
+ connectionRequestChanel :=
driverManager.GetConnection("modbus-tcp://192.168.23.30?unit-identifier=1")
// Wait for the driver to connect (or not)
connectionResult := <-connectionRequestChanel
diff --git a/users/getting-started/virtual-modbus.html
b/users/getting-started/virtual-modbus.html
index 61e2d76..475ba65 100644
--- a/users/getting-started/virtual-modbus.html
+++ b/users/getting-started/virtual-modbus.html
@@ -530,7 +530,7 @@ These are only required if the connection requires some
non-default settings.</p
</div>
<div class="literalblock">
<div class="content">
-<pre>modbus://localhost</pre>
+<pre>modbus-tcp://localhost</pre>
</div>
</div>
<div class="paragraph">
@@ -541,7 +541,7 @@ These are only required if the connection requires some
non-default settings.</p
</div>
<div class="literalblock">
<div class="content">
-<pre>modbus://localhost:1502</pre>
+<pre>modbus-tcp://localhost:1502</pre>
</div>
</div>
</div>
@@ -587,7 +587,7 @@ This is done via the <code>PlcDriverManager</code> by
asking this to create an i
</div>
<div class="listingblock">
<div class="content">
-<pre>String connectionString = "modbus://localhost";
+<pre>String connectionString = "modbus-tcp://localhost";
try (PlcConnection plcConnection = new
PlcDriverManager().getConnection(connectionString)) {
diff --git a/users/integrations/eclipse-milo.html
b/users/integrations/eclipse-milo.html
index e0d5feb..057f68c 100644
--- a/users/integrations/eclipse-milo.html
+++ b/users/integrations/eclipse-milo.html
@@ -385,7 +385,7 @@ name: "Plc4xOPCUAServer"
disableInsecureEndpoint: true
devices:
- name: "ModbusDevice"
- connectionString: "modbus://127.0.0.1:502"
+ connectionString: "modbus-tcp://127.0.0.1:502"
tags:
- alias: "TemporaryBOOLARRAY"
address: "000001:BOOL[10]"
diff --git a/users/protocols/modbus.html b/users/protocols/modbus.html
index 8a6149f..cfd4b76 100644
--- a/users/protocols/modbus.html
+++ b/users/protocols/modbus.html
@@ -402,7 +402,7 @@
</div>
<div class="listingblock">
<div class="content">
-<pre>modbus:{transport}://{ip-address}:{port}?{options}</pre>
+<pre>modbus-tcp:{transport}://{ip-address}:{port}?{options}</pre>
</div>
</div>
<div class="paragraph">
@@ -410,7 +410,7 @@
</div>
<div class="listingblock">
<div class="content">
-<pre>modbus:tcp://127.0.0.1:502</pre>
+<pre>modbus-tcp:tcp://127.0.0.1:502</pre>
</div>
</div>
<div class="paragraph">