-
Notifications
You must be signed in to change notification settings - Fork 57
/
WriteMultipleCoilsResponse.php
61 lines (52 loc) · 1.48 KB
/
WriteMultipleCoilsResponse.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
56
57
58
59
60
61
<?php
declare(strict_types=1);
namespace ModbusTcpClient\Packet\ModbusFunction;
use ModbusTcpClient\Packet\ModbusPacket;
use ModbusTcpClient\Packet\StartAddressResponse;
use ModbusTcpClient\Utils\Endian;
use ModbusTcpClient\Utils\Types;
/**
* Response for Write Multiple Coils (FC=15)
*
* Example packet: \x01\x38\x00\x00\x00\x06\x11\x0F\x04\x10\x00\x03
* \x01\x38 - transaction id
* \x00\x00 - protocol id
* \x00\x06 - number of bytes in the message (PDU = ProtocolDataUnit) to follow
* \x11 - unit id
* \x0F - function code
* \x04\x10 - start address
* \x00\x03 - count of coils written
*
*/
class WriteMultipleCoilsResponse extends StartAddressResponse
{
/**
* @var int coils written
*/
private int $coilCount;
public function __construct(string $rawData, int $unitId = 0, ?int $transactionId = null)
{
parent::__construct($rawData, $unitId, $transactionId);
$this->coilCount = Types::parseUInt16(substr($rawData, 2, 2), Endian::BIG_ENDIAN);
}
public function getFunctionCode(): int
{
return ModbusPacket::WRITE_MULTIPLE_COILS;
}
/**
* @return int
*/
public function getCoilCount(): int
{
return $this->coilCount;
}
protected function getLengthInternal(): int
{
return parent::getLengthInternal() + 2; //coilCount is 2 bytes
}
public function __toString(): string
{
return parent::__toString()
. Types::toRegister($this->coilCount);
}
}