Перейти к содержанию

Навигация

Translations:Fast Modbus/34/en: различия между версиями

Нет описания правки
(Новая страница: «# Install the utility using the command: <code> #:<syntaxhighlight lang="bash"> apt update && apt install wb-modbus-ext-scanner </syntaxhighlight> </code> # Stop the wb-mqtt-serial driver using the command: <code> #:<syntaxhighlight lang="bash"> systemctl stop wb-mqtt-serial </syntaxhighlight> </code> # Execute the command: <code> #:<syntaxhighlight lang="bash"> wb-modbus-scanner -d /dev/ttyRS485-1 -b 115200 -s 4267937719 -i 3 </syntaxhighlight> </code> # Wh...»)
 
Строка 1: Строка 1:
# Install the utility using the command:
# Install the utility using the command:
<code>
#:<syntaxhighlight lang="bash">
#:<syntaxhighlight lang="bash">
apt update && apt install wb-modbus-ext-scanner
apt update && apt install wb-modbus-ext-scanner
</syntaxhighlight>
</syntaxhighlight>
</code>
# Stop the wb-mqtt-serial driver using the command:
# Stop the wb-mqtt-serial driver using the command:
<code>
#:<syntaxhighlight lang="bash">
#:<syntaxhighlight lang="bash">
systemctl stop wb-mqtt-serial
systemctl stop wb-mqtt-serial
</syntaxhighlight>
</syntaxhighlight>
</code>
# Execute the command:
# Execute the command:
<code>
#:<syntaxhighlight lang="bash">
#:<syntaxhighlight lang="bash">
wb-modbus-scanner -d /dev/ttyRS485-1 -b 115200 -s 4267937719 -i 3
wb-modbus-scanner -d /dev/ttyRS485-1 -b 115200 -s 4267937719 -i 3
</syntaxhighlight>
</syntaxhighlight>
</code>
# Where, /dev/ttyRS485-1 is the port to which the device is connected,
# Where, /dev/ttyRS485-1 is the port to which the device is connected,
# 115200 is the exchange rate,
# 115200 is the exchange rate,
Строка 22: Строка 16:
# 3 is the new slave ID.
# 3 is the new slave ID.
# As a result, the following output should appear:
# As a result, the following output should appear:
<code>
#:<syntaxhighlight lang="bash">
#:<syntaxhighlight lang="bash">
Serial port: /dev/ttyRS485-1
Serial port: /dev/ttyRS485-1
Строка 28: Строка 21:
Change ID for device with serial  4267937719 [FE638FB7] New ID: 3
Change ID for device with serial  4267937719 [FE638FB7] New ID: 3
</syntaxhighlight>
</syntaxhighlight>
</code>
# Start the wb-mqtt-serial driver again using the command:
# Start the wb-mqtt-serial driver again using the command:
<code>
#:<syntaxhighlight lang="bash">
#:<syntaxhighlight lang="bash">
systemctl start wb-mqtt-serial
systemctl start wb-mqtt-serial
</syntaxhighlight>
</syntaxhighlight>
</code>