-
Notifications
You must be signed in to change notification settings - Fork 1
/
PZEM004Tv30.cpp
605 lines (509 loc) · 15.9 KB
/
PZEM004Tv30.cpp
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
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
/*
Copyright (c) 2019 Jakub Mandula
Permission is hereby granted, free of charge, to any person obtaining a copy of
this software and associated documentation files (the “Software”), to deal in
the Software without restriction, including without limitation the rights to
use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of
the Software, and to permit persons to whom the Software is furnished to do so,
subject to the following conditions:
The above copyright notice and this permission notice shall be included in all
copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED “AS IS”, WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS
FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR
COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER
IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
*/
#include "PZEM004Tv30.h"
#include <stdio.h>
// #include "UARTClass.h"
#define REG_VOLTAGE 0x0000
#define REG_CURRENT_L 0x0001
#define REG_CURRENT_H 0X0002
#define REG_POWER_L 0x0003
#define REG_POWER_H 0x0004
#define REG_ENERGY_L 0x0005
#define REG_ENERGY_H 0x0006
#define REG_FREQUENCY 0x0007
#define REG_PF 0x0008
#define REG_ALARM 0x0009
#define CMD_RHR 0x03
#define CMD_RIR 0X04
#define CMD_WSR 0x06
#define CMD_CAL 0x41
#define CMD_REST 0x42
#define WREG_ALARM_THR 0x0001
#define WREG_ADDR 0x0002
#define UPDATE_TIME 200
#define RESPONSE_SIZE 32
#define READ_TIMEOUT 100
#define PZEM_BAUD_RATE 9600
//extern HardwareSerial Serial;
#define DEBUG
// Debugging function;
void printBuf(uint8_t* buffer, uint16_t len){
#ifdef DEBUG
for(uint16_t i = 0; i < len; i++){
char temp[6];
sprintf(temp, "%.2x ", buffer[i]);
Serial.print(temp);
}
Serial.println();
#endif
}
/*!
* PZEM004Tv30::PZEM004Tv30
*
* Software Serial constructor
*
* @param receivePin RX pin
* @param transmitPin TX pin
* @param addr Slave address of device
*/
#if defined(PZEM004_SOFTSERIAL)
PZEM004Tv30::PZEM004Tv30(uint8_t receivePin, uint8_t transmitPin, uint8_t addr)
{
SoftwareSerial *port = new SoftwareSerial(receivePin, transmitPin);
port->begin(PZEM_BAUD_RATE);
this->_serial = port;
this->_isSoft = true;
init(addr);
}
#endif
/*!
* PZEM004Tv30::PZEM004Tv30
*
* Hardware serial constructor
*
* @param port Hardware serial to use
* @param addr Slave address of device
*/
PZEM004Tv30::PZEM004Tv30(HardwareSerial& serialPZEM, uint8_t addr):
_serial(serialPZEM)
{
this->_serial = serialPZEM;
init(addr);
}
/*!
* PZEM004Tv30::~PZEM004Tv30
*
* Destructor deleting software serial
*
*/
PZEM004Tv30::~PZEM004Tv30()
{
if(_isSoft){};
//delete this._serial;
}
/*!
* PZEM004Tv30::voltage
*
* Get line voltage in Volts
*
* @return current L-N volage
*/
float PZEM004Tv30::voltage()
{
if(!updateValues()) // Update vales if necessary
return NAN; // Update did not work, return NAN
return _currentValues.voltage;
}
/*!
* PZEM004Tv30::current
*
* Get line in Amps
*
* @return line current
*/
float PZEM004Tv30::current()
{
if(!updateValues())// Update vales if necessary
return NAN; // Update did not work, return NAN
return _currentValues.current;
}
/*!
* PZEM004Tv30::power
*
* Get Active power in W
*
* @return active power in W
*/
float PZEM004Tv30::power()
{
if(!updateValues()) // Update vales if necessary
return NAN; // Update did not work, return NAN
return _currentValues.power;
}
/*!
* PZEM004Tv30::energy
*
* Get Active energy in kWh since last reset
*
* @return active energy in kWh
*/
float PZEM004Tv30::energy()
{
if(!updateValues()) // Update vales if necessary
return NAN; // Update did not work, return NAN
return _currentValues.energy;
}
/*!
* PZEM004Tv30::frequeny
*
* Get current line frequency in Hz
*
* @return line frequency in Hz
*/
float PZEM004Tv30::frequency()
{
if(!updateValues()) // Update vales if necessary
return NAN; // Update did not work, return NAN
return _currentValues.frequeny;
}
/*!
* PZEM004Tv30::pf
*
* Get power factor of load
*
* @return load power factor
*/
float PZEM004Tv30::pf()
{
if(!updateValues()) // Update vales if necessary
return NAN; // Update did not work, return NAN
return _currentValues.pf;
}
/*!
* PZEM004Tv30::sendCmd8
*
* Prepares the 8 byte command buffer and sends
*
* @param[in] cmd - Command to send (position 1)
* @param[in] rAddr - Register address (postion 2-3)
* @param[in] val - Register value to write (positon 4-5)
* @param[in] check - perform a simple read check after write
*
* @return success
*/
bool PZEM004Tv30::sendCmd8(uint8_t cmd, uint16_t rAddr, uint16_t val, bool check, uint16_t slave_addr){
uint8_t sendBuffer[8]; // Send buffer
uint8_t respBuffer[8]; // Response buffer (only used when check is true)
if((slave_addr == 0xFFFF) ||
(slave_addr < 0x01) ||
(slave_addr > 0xF7)){
slave_addr = _addr;
}
sendBuffer[0] = slave_addr; // Set slave address
sendBuffer[1] = cmd; // Set command
sendBuffer[2] = (rAddr >> 8) & 0xFF; // Set high byte of register address
sendBuffer[3] = (rAddr) & 0xFF; // Set low byte =//=
sendBuffer[4] = (val >> 8) & 0xFF; // Set high byte of register value
sendBuffer[5] = (val) & 0xFF; // Set low byte =//=
setCRC(sendBuffer, 8); // Set CRC of frame
_serial.write(sendBuffer, 8); // send frame
if(check) {
if(!recieve(respBuffer, 8)){ // if check enabled, read the response
return false;
}
// Check if response is same as send
for(uint8_t i = 0; i < 8; i++){
if(sendBuffer[i] != respBuffer[i])
return false;
}
}
return true;
}
/*!
* PZEM004Tv30::setAddress
*
* Set a new device address and update the device
* WARNING - should be used to set up devices once.
* Code initializtion will still have old address on next run!
*
* @param[in] addr New device address 0x01-0xF7
*
* @return success
*/
bool PZEM004Tv30::setAddress(uint8_t addr)
{
if(addr < 0x01 || addr > 0xF7) // sanity check
return false;
// Write the new address to the address register
if(!sendCmd8(CMD_WSR, WREG_ADDR, addr, true))
return false;
_addr = addr; // If successful, update the current slave address
return true;
}
/*!
* PZEM004Tv30::getAddress
*
* Get the current device address
*
* @return address
*/
uint8_t PZEM004Tv30::getAddress()
{
return _addr;
}
/*!
* PZEM004Tv30::setPowerAlarm
*
* Set power alarm threshold in watts
*
* @param[in] watts Alamr theshold
*
* @return success
*/
bool PZEM004Tv30::setPowerAlarm(uint16_t watts)
{
if (watts > 25000){ // Sanitych check
watts = 25000;
}
// Write the watts threshold to the Alarm register
if(!sendCmd8(CMD_WSR, WREG_ALARM_THR, watts, true))
return false;
return true;
}
/*!
* PZEM004Tv30::getPowerAlarm
*
* Is the power alarm set
*
*
* @return arlam triggerd
*/
bool PZEM004Tv30::getPowerAlarm()
{
if(!updateValues()) // Update vales if necessary
return NAN; // Update did not work, return NAN
return _currentValues.alarms != 0x0000;
}
/*!
* PZEM004Tv30::init
*
* initialization common to all consturctors
*
* @param[in] addr - device address
*
* @return success
*/
void PZEM004Tv30::init(uint8_t addr){
if(addr < 0x01 || addr > 0xF8) // Sanity check of address
addr = PZEM_DEFAULT_ADDR;
_addr = addr;
// Set initial lastRed time so that we read right away
_lastRead = 0;
_lastRead -= UPDATE_TIME;
}
/*!
* PZEM004Tv30::updateValues
*
* Read all registers of device and update the local values
*
* @return success
*/
bool PZEM004Tv30::updateValues()
{
//static uint8_t buffer[] = {0x00, CMD_RIR, 0x00, 0x00, 0x00, 0x0A, 0x00, 0x00};
static uint8_t response[25];
// If we read before the update time limit, do not update
if(_lastRead + UPDATE_TIME > millis()){
return true;
}
// Read 10 registers starting at 0x00 (no check)
sendCmd8(CMD_RIR, 0x00, 0x0A, false);
if(recieve(response, 25) != 25){ // Something went wrong
return false;
}
// Update the current values
_currentValues.voltage = ((uint32_t)response[3] << 8 | // Raw voltage in 0.1V
(uint32_t)response[4])/10.0;
_currentValues.current = ((uint32_t)response[5] << 8 | // Raw current in 0.001A
(uint32_t)response[6] |
(uint32_t)response[7] << 24 |
(uint32_t)response[8] << 16) / 1000.0;
_currentValues.power = ((uint32_t)response[9] << 8 | // Raw power in 0.1W
(uint32_t)response[10] |
(uint32_t)response[11] << 24 |
(uint32_t)response[12] << 16) / 10.0;
_currentValues.energy = ((uint32_t)response[13] << 8 | // Raw Energy in 1Wh
(uint32_t)response[14] |
(uint32_t)response[15] << 24 |
(uint32_t)response[16] << 16) / 1000.0;
_currentValues.frequeny =((uint32_t)response[17] << 8 | // Raw Frequency in 0.1Hz
(uint32_t)response[18]) / 10.0;
_currentValues.pf = ((uint32_t)response[19] << 8 | // Raw pf in 0.01
(uint32_t)response[20])/100.0;
_currentValues.alarms = ((uint32_t)response[21] << 8 | // Raw alarm value
(uint32_t)response[22]);
// Record current time as _lastRead
_lastRead = millis();
return true;
}
/*!
* PZEM004Tv30::resetEnergy
*
* Reset the Energy counter on the device
*
* @return success
*/
bool PZEM004Tv30::resetEnergy(){
uint8_t buffer[] = {0x00, CMD_REST, 0x00, 0x00};
uint8_t reply[5];
buffer[0] = _addr;
setCRC(buffer, 4);
_serial.write(buffer, 4);
uint16_t length = recieve(reply, 5);
if(length == 0 || length == 5){
return false;
}
return true;
}
/*!
* PZEM004Tv30::recieve
*
* Receive data from serial with buffer limit and timeout
*
* @param[out] resp Memory buffer to hold response. Must be at least `len` long
* @param[in] len Max number of bytes to read
*
* @return number of bytes read
*/
uint16_t PZEM004Tv30::recieve(uint8_t *resp, uint16_t len)
{
#ifdef PZEM004_SOFTSERIAL
if(_isSoft)
((SoftwareSerial *)_serial.listen(); // Start software serial listen
#endif
unsigned long startTime = millis(); // Start time for Timeout
uint8_t index = 0; // Bytes we have read
while((index < len) && (millis() - startTime < READ_TIMEOUT))
{
if(_serial.available() > 0)
{
uint8_t c = (uint8_t)_serial.read();
resp[index++] = c;
}
yield(); // do background netw tasks while blocked for IO (prevents ESP watchdog trigger)
}
// Check CRC with the number of bytes read
if(!checkCRC(resp, index)){
return 0;
}
return index;
}
/*!
* PZEM004Tv30::checkCRC
*
* Performs CRC check of the buffer up to len-2 and compares check sum to last two bytes
*
* @param[in] data Memory buffer containing the frame to check
* @param[in] len Length of the respBuffer including 2 bytes for CRC
*
* @return is the buffer check sum valid
*/
bool PZEM004Tv30::checkCRC(const uint8_t *buf, uint16_t len){
if(len <= 2) // Sanity check
return false;
uint16_t crc = CRC16(buf, len - 2); // Compute CRC of data
return ((uint16_t)buf[len-2] | (uint16_t)buf[len-1] << 8) == crc;
}
/*!
* PZEM004Tv30::setCRC
*
* Set last two bytes of buffer to CRC16 of the buffer up to byte len-2
* Buffer must be able to hold at least 3 bytes
*
* @param[out] data Memory buffer containing the frame to checksum and write CRC to
* @param[in] len Length of the respBuffer including 2 bytes for CRC
*
*/
void PZEM004Tv30::setCRC(uint8_t *buf, uint16_t len){
if(len <= 2) // Sanity check
return;
uint16_t crc = CRC16(buf, len - 2); // CRC of data
// Write high and low byte to last two positions
buf[len - 2] = crc & 0xFF; // Low byte first
buf[len - 1] = (crc >> 8) & 0xFF; // High byte second
}
// Pre computed CRC table
static const uint16_t crcTable[] PROGMEM = {
0X0000, 0XC0C1, 0XC181, 0X0140, 0XC301, 0X03C0, 0X0280, 0XC241,
0XC601, 0X06C0, 0X0780, 0XC741, 0X0500, 0XC5C1, 0XC481, 0X0440,
0XCC01, 0X0CC0, 0X0D80, 0XCD41, 0X0F00, 0XCFC1, 0XCE81, 0X0E40,
0X0A00, 0XCAC1, 0XCB81, 0X0B40, 0XC901, 0X09C0, 0X0880, 0XC841,
0XD801, 0X18C0, 0X1980, 0XD941, 0X1B00, 0XDBC1, 0XDA81, 0X1A40,
0X1E00, 0XDEC1, 0XDF81, 0X1F40, 0XDD01, 0X1DC0, 0X1C80, 0XDC41,
0X1400, 0XD4C1, 0XD581, 0X1540, 0XD701, 0X17C0, 0X1680, 0XD641,
0XD201, 0X12C0, 0X1380, 0XD341, 0X1100, 0XD1C1, 0XD081, 0X1040,
0XF001, 0X30C0, 0X3180, 0XF141, 0X3300, 0XF3C1, 0XF281, 0X3240,
0X3600, 0XF6C1, 0XF781, 0X3740, 0XF501, 0X35C0, 0X3480, 0XF441,
0X3C00, 0XFCC1, 0XFD81, 0X3D40, 0XFF01, 0X3FC0, 0X3E80, 0XFE41,
0XFA01, 0X3AC0, 0X3B80, 0XFB41, 0X3900, 0XF9C1, 0XF881, 0X3840,
0X2800, 0XE8C1, 0XE981, 0X2940, 0XEB01, 0X2BC0, 0X2A80, 0XEA41,
0XEE01, 0X2EC0, 0X2F80, 0XEF41, 0X2D00, 0XEDC1, 0XEC81, 0X2C40,
0XE401, 0X24C0, 0X2580, 0XE541, 0X2700, 0XE7C1, 0XE681, 0X2640,
0X2200, 0XE2C1, 0XE381, 0X2340, 0XE101, 0X21C0, 0X2080, 0XE041,
0XA001, 0X60C0, 0X6180, 0XA141, 0X6300, 0XA3C1, 0XA281, 0X6240,
0X6600, 0XA6C1, 0XA781, 0X6740, 0XA501, 0X65C0, 0X6480, 0XA441,
0X6C00, 0XACC1, 0XAD81, 0X6D40, 0XAF01, 0X6FC0, 0X6E80, 0XAE41,
0XAA01, 0X6AC0, 0X6B80, 0XAB41, 0X6900, 0XA9C1, 0XA881, 0X6840,
0X7800, 0XB8C1, 0XB981, 0X7940, 0XBB01, 0X7BC0, 0X7A80, 0XBA41,
0XBE01, 0X7EC0, 0X7F80, 0XBF41, 0X7D00, 0XBDC1, 0XBC81, 0X7C40,
0XB401, 0X74C0, 0X7580, 0XB541, 0X7700, 0XB7C1, 0XB681, 0X7640,
0X7200, 0XB2C1, 0XB381, 0X7340, 0XB101, 0X71C0, 0X7080, 0XB041,
0X5000, 0X90C1, 0X9181, 0X5140, 0X9301, 0X53C0, 0X5280, 0X9241,
0X9601, 0X56C0, 0X5780, 0X9741, 0X5500, 0X95C1, 0X9481, 0X5440,
0X9C01, 0X5CC0, 0X5D80, 0X9D41, 0X5F00, 0X9FC1, 0X9E81, 0X5E40,
0X5A00, 0X9AC1, 0X9B81, 0X5B40, 0X9901, 0X59C0, 0X5880, 0X9841,
0X8801, 0X48C0, 0X4980, 0X8941, 0X4B00, 0X8BC1, 0X8A81, 0X4A40,
0X4E00, 0X8EC1, 0X8F81, 0X4F40, 0X8D01, 0X4DC0, 0X4C80, 0X8C41,
0X4400, 0X84C1, 0X8581, 0X4540, 0X8701, 0X47C0, 0X4680, 0X8641,
0X8201, 0X42C0, 0X4380, 0X8341, 0X4100, 0X81C1, 0X8081, 0X4040
};
/*!
* PZEM004Tv30::CRC16
*
* Calculate the CRC16-Modbus for a buffer
* Based on https://www.modbustools.com/modbus_crc16.html
*
* @param[in] data Memory buffer containing the data to checksum
* @param[in] len Length of the respBuffer
*
* @return Calculated CRC
*/
uint16_t PZEM004Tv30::CRC16(const uint8_t *data, uint16_t len)
{
uint8_t nTemp; // CRC table index
uint16_t crc = 0xFFFF; // Default value
while (len--)
{
nTemp = *data++ ^ crc;
crc >>= 8;
crc ^= (uint16_t)pgm_read_word(&crcTable[nTemp]);
}
return crc;
}
/*!
* PZEM004Tv30::search
*
* Search for available devices. This should be used only for debugging!
* Prints any found device addresses on the bus.
* Can be disabled by defining PZEM004T_DISABLE_SEARCH
*/
void PZEM004Tv30::search(){
#if ( not defined(PZEM004T_DISABLE_SEARCH))
static uint8_t response[7];
for(uint16_t addr = 0x01; addr <= 0xF8; addr++){
//Serial.println(addr);
sendCmd8(CMD_RIR, 0x00, 0x01, false, addr);
if(recieve(response, 7) != 7){ // Something went wrong
continue;
} else {
Serial.print("Device on addr: ");
Serial.print(addr);
}
}
#endif
}