<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>InnovatorsGuru &#8211; UseManuals</title>
	<atom:link href="http://usemanuals.com/innovatorsguru/feed/" rel="self" type="application/rss+xml" />
	<link>https://usemanuals.com</link>
	<description>Owner&#039;s manuals for all sorts of products</description>
	<lastBuildDate>Sat, 24 Jun 2023 09:51:29 +0000</lastBuildDate>
	<language>en-US</language>
	<sy:updatePeriod>
	hourly	</sy:updatePeriod>
	<sy:updateFrequency>
	1	</sy:updateFrequency>
	<generator>https://wordpress.org/?v=6.7.2</generator>

<image>
	<url>https://usemanuals.com/wp-content/uploads/2025/02/favicon-32x32-2.png</url>
	<title>InnovatorsGuru &#8211; UseManuals</title>
	<link>https://usemanuals.com</link>
	<width>32</width>
	<height>32</height>
</image> 
	<item>
		<title>AC Communication Module PZEM-004T V3.0 Manual</title>
		<link>https://usemanuals.com/innovatorsguru/ac-communication-v3-0/</link>
		
		<dc:creator><![CDATA[ItsManual]]></dc:creator>
		<pubDate>Sat, 24 Jun 2023 09:51:29 +0000</pubDate>
				<category><![CDATA[InnovatorsGuru]]></category>
		<guid isPermaLink="false">https://usemanuals.com/?p=118005</guid>

					<description><![CDATA[PZEM-004T V3.0 User Manual Overview This document describes the specification of the AC communication module, the module is mainly used for measuring AC voltage, current, active power, frequency, power factor and active energy, the module is without display function, the data is read through the interface. : Measuring Range 10A (Built-in Shunt) : Measuring Range 100A (external transformer) 1. Function description 1.1 Voltage 1.1.1 Measuring range:80~260V 1.1.2 Resolution: 0.1V 1.1.3. Measurement accuracy: 0.5% 1.2 Current 1.2.1 Measuring range: 0~10A() ; 0~100A() 1.2.2 Starting measure current: 0.01A () ; 0. 024 () 1.2.3. Resolution: 0.001A 1.2.4 Measurement accuracy: 0.5% 1.3 Active power 1.3.1 Measuring range: 0~2.3kW () ; 0~23kW () 1.3.2 Starting measure power: 0.4W 1.3.3. Resolution: 0.1W 1.3.4 Display format: &#60;1000W, it display one decimal, such as: 999.9W ≥ 1000W, it display only integer, such as: 1000W 1.3.5 Measurement accuracy: 0.5% 1.4 Power factor 1.4.1. Measuring range: 0.00~1.00 1.4.2 Resolution: 0.01 1.4.3. Measurement accuracy: 1% 1.5 Frequency 1.5.1 Measuring range: 45Hz~65Hz 1.5.2 Resolution: 0.1Hz 1.5.3. Measurement accuracy: 0.5% 1.6 Active energy 1.6.1. Measuring range: 0~9999.99kWh 1.6.2 Resolution: 1Wh 1.6.3. Measurement accuracy: 0.5% 1.6.4 Display format: &#60;10kWh, the display unit is Wh(1kWh=1000Wh), such as: 9999Wh ≥ 10kWh, the display unit is kWh, such as: 9999.99kWh 1.6.5 Reset energy: use software to reset. 1.7 Over power alarm Active power threshold can be set, when the measured active power exceeds the threshold, it can alarm 1.8 Communication interface RS485 interface. 2 Communication protocol 2.1 Physical layer protocol Physical layer use UART to RS485 communication interface Baud rate is 9600, 8 data bits, 1 stop bit, no parity 2.2 Application layer protocol The application layer use the Modbus-RTU protocol to communicate. At present, it only supports function codes such as 0x03 (Read Holding Register), 0x04 (Read Input Register), 0x06 (Write Single Register), 0x41 (Calibration), 0x42 (Reset energy).etc. 0x41 function code is only for internal use (address can be only 0xF8), used for factory calibration and return to factory maintenance occasions, after the function code to increase 16-bit password, the default password is 0x3721 The address range of the slave is 0x01 ~ 0xF7. The address 0x00 is used as the broadcast address, the slave does not need to reply the master. The address 0xF8 is used as the general address, this address can be only used in single-slave environment and can be used for calibration etc.operation. 2.3. Read the measurement result The command format of the master reads the measurement result is(total of 8 bytes): Slave Address + 0x04 + Register Address High Byte + Register Address Low Byte + Number of Registers High Byte + Number of Registers Low Byte + CRC Check High Byte + CRC Check Low Byte. The command format of the reply from the slave is divided into two kinds: Correct Reply: Slave Address + 0x04 + Number of Bytes + Register 1 Data High Byte + Register 1 Data Low Byte + … + CRC Check High Byte + CRC Check Low Byte Error Reply: Slave address + 0x84 + Abnormal code + CRC check high byte + CRC check low byte Abnormal code analyzed as following (the same below) 0x01,Illegal function 0x02,Illegal address 0x03,Illegal data 0x04,Slave error The register of the measurement results is arranged as the following table For example, the master sends the following command (CRC check code is replaced by 0xHH and 0xLL, the same below) 0x01 + 0x04 + 0x00 + 0x00 + 0x00 + 0x0A + 0xHH + 0xLL Indicates that the master needs to read 10 registers with slave address 0x01 and the start address of the register is 0x0000 The correct reply from the slave is as following: 0x01 + 0x04 + 0x14 + 0x08 + 0x98 + + 0x00 + 0x00 + 0x00 + 0x00 + 0x01 + 0xF4 + 0x00 + 0x64 + 0x00 + 0x00 + 0xHH + 0xLL The above data shows Voltage is 0x0898, converted to decimal is 2200, display 220.0V Current is 0x000003E8, converted to decimal is 1000, display 1.000A Power is 0x00000898, converted to decimal is 2200, display 220.0W Energy is 0x00000000, converted to decimal is 0, display 0Wh Frequency is 0x01F4, converted to decimal is 500, display 50.0Hz Power factor is 0x0064, converted to decimal is 100, display 1.00 Alarm status is 0x0000, indicates that the current power is lower than the alarm power threshold 2.4 Read and modify the slave parameters At present,it only supports reading and modifying slave address and power alarm threshold The register is arranged as the following table The command format of the master to read the slave parameters and read the measurement results are same(descrybed in details in Section 2.3), only need to change the function code from 0x04 to 0x The command format of the master to modify the slave parameters is (total of 8 bytes): Slave Address + 0x + Register Address High Byte + Register Address Low Byte + Register Value High Byte + Register Value Low Byte + CRC Check High Byte + CRC Check Low Byte. The command format of the reply from the slave is divided into two kinds: Correct Response: Slave Address + 0x + Number of Bytes + Register Address Low Byte + Register Value High Byte + Register Value Low Byte + CRC Check High Byte + CRC Check Low Byte. Error Reply: Slave address + 0x86 + Abnormal code + CRC check high byte + CRC check low byte. For example, the master sets the slave’s power alarm threshold: 0x01 + 0x + 0x00 + 0x01 + 0x08 + 0xFC + 0xHH + 0xLL Indicates that the master needs to set the 0x0001 register (power alarm threshold) to 0x08FC (2300W). Set up correctly, the slave return to the data which is sent from the master. For example, the master sets the address of the slave 0x01 + 0x + 0x00 + 0x02 + 0x00 + 0x05 + 0xHH + 0xLL Indicates that the master needs to set the 0x0002 register (Modbus-RTU address) to 0x0005 Set up correctly, the slave return to the data which is sent from the master. 2.5 Reset energy The command format of the master to reset the slave’s energy is (total 4 bytes): Slave address + 0x42 + CRC check high byte + CRC check low byte. Correct reply: slave address + 0x42 + CRC check high byte + CRC check low byte. Error Reply: Slave address + 0xC2 + Abnormal code + CRC check high byte + CRC check low byte 2.6 Calibration The command format of the master to calibrate the slave is (total 6 bytes): 0xF8 + 0x41 + 0x37 + 0x21 + CRC check high byte + CRC check low byte. Correct reply: 0xF8 + 0x41 + 0x37 + 0x21 + CRC check high byte + CRC check low byte. Error Reply: 0xF8 + 0xC1 + Abnormal code + CRC check high byte + CRC check low byte. It should be noted that the calibration takes 3 to 4 seconds, after the master sends the command, if the calibration is successful, it will take 3 ~ 4 seconds to receive the response from the slave. 2.7. CRC check CRC check use 16bits format, occupy two bytes, the generator polynomial is X16 + X15 + X2 +1, the polynomial value used for calculation is 0xA001. The value of the CRC check is a frame data divide all results of checking all the bytes except the CRC check value. 3 Functional block diagram Picture 3.1 Functional block diagram Picture 3.2. Functional block diagram 4 Wiring diagram PZEM-004T-10A wiring diagram Picture 4.1 wiring diagram PZEM-004T-100A wiring diagram Picture 4.2. wiring diagram 5 Other instructions 5.1 5.2 Working temperature -20°C ~ +60°C [...]<p><a class="btn btn-secondary understrap-read-more-link" href="https://usemanuals.com/innovatorsguru/ac-communication-v3-0/">Read More...</a></p>]]></description>
										<content:encoded><![CDATA[<h4><strong>PZEM-004T V3.0 User Manual</strong></h4>
<h5>Overview</h5>
<p>This document describes the specification of the AC communication module, the module is mainly used for measuring AC voltage, current, active power, frequency, power factor and active energy, the module is without display function, the data is read through the interface.</p>
<p>: Measuring Range 10A (Built-in Shunt)</p>
<p>: Measuring Range 100A (external transformer)</p>
<p>1. Function description</p>
<p><strong>1.1 Voltage</strong></p>
<p>1.1.1 Measuring range:80~260V<br />
1.1.2 Resolution: 0.1V<br />
1.1.3. Measurement accuracy: 0.5%</p>
<p><strong>1.2 Current</strong></p>
<p>1.2.1 Measuring range: 0~10A() ; 0~100A()<br />
1.2.2 Starting measure current: 0.01A () ; 0. 024 ()<br />
1.2.3. Resolution: 0.001A<br />
1.2.4 Measurement accuracy: 0.5%</p>
<p><strong>1.3 Active power</strong></p>
<p>1.3.1 Measuring range: 0~2.3kW () ; 0~23kW ()<br />
1.3.2 Starting measure power: 0.4W<br />
1.3.3. Resolution: 0.1W<br />
1.3.4 Display format:<br />
&lt;1000W, it display one decimal, such as: 999.9W<br />
≥ 1000W, it display only integer, such as: 1000W<br />
1.3.5 Measurement accuracy: 0.5%</p>
<p><strong>1.4 Power factor</strong></p>
<p>1.4.1. Measuring range: 0.00~1.00<br />
1.4.2 Resolution: 0.01<br />
1.4.3. Measurement accuracy: 1%</p>
<p><strong>1.5 Frequency</strong></p>
<p>1.5.1 Measuring range: 45Hz~65Hz<br />
1.5.2 Resolution: 0.1Hz<br />
1.5.3. Measurement accuracy: 0.5%</p>
<p><strong>1.6 Active energy</strong></p>
<p>1.6.1. Measuring range: 0~9999.99kWh<br />
1.6.2 Resolution: 1Wh<br />
1.6.3. Measurement accuracy: 0.5%<br />
1.6.4 Display format:<br />
&lt;10kWh, the display unit is Wh(1kWh=1000Wh), such as: 9999Wh<br />
≥ 10kWh, the display unit is kWh, such as: 9999.99kWh<br />
1.6.5 Reset energy: use software to reset.</p>
<p><strong>1.7 Over power alarm</strong></p>
<p>Active power threshold can be set, when the measured active power exceeds the threshold, it can alarm</p>
<p><strong>1.8 Communication interface</strong></p>
<p>RS485 interface.</p>
<p>2 Communication protocol</p>
<p><strong>2.1 Physical layer protocol</strong></p>
<p>Physical layer use UART to RS485 communication interface<br />
Baud rate is 9600, 8 data bits, 1 stop bit, no parity</p>
<p><strong>2.2 Application layer protocol</strong></p>
<p>The application layer use the Modbus-RTU protocol to communicate. At present, it only supports function codes such as 0x03 (Read Holding Register), 0x04 (Read Input Register), 0x06 (Write Single Register), 0x41 (Calibration), 0x42 (Reset energy).etc.</p>
<p>0x41 function code is only for internal use (address can be only 0xF8), used for factory calibration and return to factory maintenance occasions, after the function code to increase 16-bit password, the default password is 0x3721</p>
<p>The address range of the slave is 0x01 ~ 0xF7. The address 0x00 is used as the broadcast address, the slave does not need to reply the master. The address 0xF8 is used as the general address, this address can be only used in single-slave environment and can be used for calibration etc.operation.</p>
<p><strong>2.3. Read the measurement result</strong></p>
<p>The command format of the master reads the measurement result is(total of 8 bytes):</p>
<p>Slave Address + 0x04 + Register Address High Byte + Register Address Low Byte + Number of Registers High Byte + Number of Registers Low Byte + CRC Check High Byte + CRC Check Low Byte.</p>
<p>The command format of the reply from the slave is divided into two kinds:</p>
<p>Correct Reply: Slave Address + 0x04 + Number of Bytes + Register 1 Data High Byte + Register 1 Data Low Byte + … + CRC Check High Byte + CRC Check Low Byte</p>
<p>Error Reply: Slave address + 0x84 + Abnormal code + CRC check high byte + CRC check low byte</p>
<p>Abnormal code analyzed as following (the same below)</p>
<ul>
<li>0x01,Illegal function</li>
<li>0x02,Illegal address</li>
<li>0x03,Illegal data</li>
<li>0x04,Slave error</li>
</ul>
<p>The register of the measurement results is arranged as the following table</p>
<p><img decoding="async" src="https://usemanuals.com/wp-content/uploads/2023/06/register-of-the-measurement-results-300x172-1.webp" /></p>
<p>For example, the master sends the following command (CRC check code is replaced by 0xHH and 0xLL, the same below)</p>
<p>0x01 + 0x04 + 0x00 + 0x00 + 0x00 + 0x0A + 0xHH + 0xLL</p>
<p>Indicates that the master needs to read 10 registers with slave address 0x01 and the start address of the register is 0x0000</p>
<p>The correct reply from the slave is as following:</p>
<p>0x01 + 0x04 + 0x14 + 0x08 + 0x98 + + 0x00 + 0x00 + 0x00 + 0x00 + 0x01 + 0xF4 + 0x00 + 0x64 + 0x00 + 0x00 + 0xHH + 0xLL</p>
<p>The above data shows</p>
<ul>
<li>Voltage is 0x0898, converted to decimal is 2200, display 220.0V</li>
<li>Current is 0x000003E8, converted to decimal is 1000, display 1.000A</li>
<li>Power is 0x00000898, converted to decimal is 2200, display 220.0W</li>
<li>Energy is 0x00000000, converted to decimal is 0, display 0Wh</li>
<li>Frequency is 0x01F4, converted to decimal is 500, display 50.0Hz</li>
<li>Power factor is 0x0064, converted to decimal is 100, display 1.00</li>
<li>Alarm status is 0x0000, indicates that the current power is lower than the alarm power threshold</li>
</ul>
<p><strong>2.4 Read and modify the slave parameters</strong></p>
<p>At present,it only supports reading and modifying slave address and power alarm threshold</p>
<p>The register is arranged as the following table</p>
<p><img decoding="async" src="https://usemanuals.com/wp-content/uploads/2023/06/The-register-is-arranged-as-the-following-table-300x53-1.webp" /></p>
<p>The command format of the master to read the slave parameters and read the measurement results are same(descrybed in details in Section 2.3), only need to change the function code from 0x04 to 0x</p>
<p>The command format of the master to modify the slave parameters is (total of 8 bytes):</p>
<p>Slave Address + 0x + Register Address High Byte + Register Address Low Byte + Register Value High Byte + Register Value Low Byte + CRC Check High Byte + CRC Check Low Byte.</p>
<p>The command format of the reply from the slave is divided into two kinds:</p>
<p>Correct Response: Slave Address + 0x + Number of Bytes + Register Address Low Byte + Register Value High Byte + Register Value Low Byte + CRC Check High Byte + CRC Check Low Byte.</p>
<p>Error Reply: Slave address + 0x86 + Abnormal code + CRC check high byte + CRC check low byte.</p>
<p>For example, the master sets the slave’s power alarm threshold:</p>
<p>0x01 + 0x + 0x00 + 0x01 + 0x08 + 0xFC + 0xHH + 0xLL</p>
<p>Indicates that the master needs to set the 0x0001 register (power alarm threshold) to 0x08FC (2300W).</p>
<p>Set up correctly, the slave return to the data which is sent from the master.</p>
<p>For example, the master sets the address of the slave</p>
<p>0x01 + 0x + 0x00 + 0x02 + 0x00 + 0x05 + 0xHH + 0xLL</p>
<p>Indicates that the master needs to set the 0x0002 register (Modbus-RTU address) to 0x0005</p>
<p>Set up correctly, the slave return to the data which is sent from the master.</p>
<p><strong>2.5 Reset energy</strong></p>
<p>The command format of the master to reset the slave’s <strong>energy</strong> is (total 4 bytes):</p>
<p>Slave address + 0x42 + CRC check high byte + CRC check low byte.</p>
<p>Correct reply: slave address + 0x42 + CRC check high byte + CRC check low byte.</p>
<p>Error Reply: Slave address + 0xC2 + Abnormal code + CRC check high byte + CRC check low byte</p>
<p><strong>2.6 Calibration</strong></p>
<p>The command format of the master to calibrate the slave is (total 6 bytes):</p>
<p>0xF8 + 0x41 + 0x37 + 0x21 + CRC check high byte + CRC check low byte.</p>
<p>Correct reply: 0xF8 + 0x41 + 0x37 + 0x21 + CRC check high byte + CRC check low byte.</p>
<p>Error Reply: 0xF8 + 0xC1 + Abnormal code + CRC check high byte + CRC check low byte.</p>
<p>It should be noted that the calibration takes 3 to 4 seconds, after the master sends the command, if the calibration is successful, it will take 3 ~ 4 seconds to receive the response from the slave.</p>
<p><strong>2.7. CRC check</strong></p>
<p>CRC check use 16bits format, occupy two bytes, the generator polynomial is X16 + X15 + X2 +1, the polynomial value used for calculation is 0xA001.</p>
<p>The value of the CRC check is a frame data divide all results of checking all the bytes except the CRC check value.</p>
<p>3 Functional block diagram</p>
<p><img decoding="async" src="https://usemanuals.com/wp-content/uploads/2023/06/PZEM-004T-10AFunctional-block-diagramPicture-300x144-1.webp" /></p>
<p>Picture 3.1 Functional block diagram</p>
<p><img decoding="async" src="https://usemanuals.com/wp-content/uploads/2023/06/PZEM-004T-100AFunctional-block-diagram-300x144-1.webp" /><br />
Picture 3.2. Functional block diagram</p>
<p>4 Wiring diagram</p>
<p><strong>PZEM-004T-10A wiring diagram</strong></p>
<p><img decoding="async" src="https://usemanuals.com/wp-content/uploads/2023/06/PZEM-004T-10Awiring-diagram-300x149-1.webp" /></p>
<p>Picture 4.1 wiring diagram</p>
<p><strong>PZEM-004T-100A wiring diagram</strong></p>
<p><img decoding="async" src="https://usemanuals.com/wp-content/uploads/2023/06/PZEM-004T-100Awiring-diagram-300x163-1.webp" /></p>
<p>Picture 4.2. wiring diagram</p>
<p>5 Other instructions</p>
<p>5.1</p>
<p>5.2 Working temperature</p>
<p>-20°C ~ +60°C</p>
<form id="commentform" class="comment-form" action="https://manuals.plus/wp-comments-post.php" method="post" novalidate="">
<p class="form-submit">
</form>
]]></content:encoded>
					
		
		
			</item>
	</channel>
</rss>

<!--
Performance optimized by W3 Total Cache. Learn more: https://www.boldgrid.com/w3-total-cache/

Page Caching using Disk: Enhanced 

Served from: usemanuals.com @ 2026-08-27 12:44:49 by W3 Total Cache
-->