我可以使用PHP连接到Modbus。
<?php
$fp = fsockopen("10.7.73.151", 502, $errno, $errstr, 3);
if(!$fp)
{
printf("can\'t connect modbus tcp device\n");
die();
}
else{
printf("Link\n");
}
?>
但我不知道如何读取设备值... enter image description here 谢谢。
答案 0 :(得分:0)
FC3功能示例
<?php
require_once dirname(__FILE__) . '/../Phpmodbus/ModbusMaster.php';
// Create Modbus object
$modbus = new ModbusMaster("192.192.15.51", "UDP");
try {
// FC 3
$recData = $modbus->readMultipleRegisters(0, 12288, 6);
}
catch (Exception $e) {
// Print error information if any
echo $modbus;
echo $e;
exit;
}
// Print status information
echo "</br>Status:</br>" . $modbus;
// Print read data
echo "</br>Data:</br>";
print_r($recData);
echo "</br>";
?>