-
Notifications
You must be signed in to change notification settings - Fork 57
/
Copy pathfc3.php
55 lines (45 loc) · 1.98 KB
/
fc3.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
<?php
use ModbusTcpClient\Network\BinaryStreamConnection;
use ModbusTcpClient\Packet\ModbusFunction\ReadHoldingRegistersRequest;
use ModbusTcpClient\Packet\ModbusFunction\ReadHoldingRegistersResponse;
use ModbusTcpClient\Packet\ResponseFactory;
use ModbusTcpClient\Utils\Endian;
require __DIR__ . '/../vendor/autoload.php';
require __DIR__ . '/logger.php';
Endian::$defaultEndian = Endian::BIG_ENDIAN_LOW_WORD_FIRST; // set default (global) endian used for parsing data
$connection = BinaryStreamConnection::getBuilder()
->setPort(5020)
->setHost('127.0.0.1')
->setConnectTimeoutSec(1.5) // timeout when establishing connection to the server
->setWriteTimeoutSec(0.5) // timeout when writing/sending packet to the server
->setReadTimeoutSec(0.3) // timeout when waiting response from server
->setLogger(new EchoLogger())
->build();
$startAddress = 256;
$quantity = 6;
$unitID = 1;
$packet = new ReadHoldingRegistersRequest($startAddress, $quantity, $unitID); // NB: This is Modbus TCP packet not Modbus RTU over TCP!
try {
$binaryData = $connection->connect()->sendAndReceive($packet);
/**
* @var $response ReadHoldingRegistersResponse
*/
$response = ResponseFactory::parseResponseOrThrow($binaryData);
print_r($response->getData());
foreach ($response as $word) {
print_r($word->getBytes());
}
foreach ($response->asDoubleWords() as $doubleWord) {
print_r($doubleWord->getBytes());
}
// set internal index to match start address to simplify array access
$responseWithStartAddress = $response->withStartAddress($startAddress);
print_r($responseWithStartAddress[$startAddress]->getBytes()); // use array access to get word
print_r($responseWithStartAddress->getDoubleWordAt($startAddress)->getFloat());
} catch (Exception $exception) {
echo 'An exception occurred' . PHP_EOL;
echo $exception->getMessage() . PHP_EOL;
echo $exception->getTraceAsString() . PHP_EOL;
} finally {
$connection->close();
}