reaper7 / SDM_Energy_Meter

reading SDM72 SDM120 SDM220 SDM230 SDM630 modbus energy meters from arduino (esp8266, esp32, avr)

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Library for reading SDM72 SDM120 SDM220 SDM230 SDM630 DDM18SD Modbus Energy meters.

SECTIONS:


Introduction:

This library allows you reading SDM module(s) using:

  • Hardware Serial (recommended option, smallest number of reads errors, especially for esp8266) or
  • Software Serial, attached as core libraries for ESP8266 and AVR or as external lib for ESP32
    (the new version of esp Software Serial library
    has a different initialization compared to avr!
    This version of SDM library (>=2.2.2) works only with esp Software Serial 8.0.1 or higher!!!
    If you have an older esp Software Serial version
    then use other SDM library, details below the Credits section
    )

you also need rs232<->rs485 converter:

  • with automatic flow direction control (look at images below) or
  • with additional pins for flow control, like MAX485
    (in this case MAX485 DE and RE pins must be connected together to one of uC pin
    and this pin must be passed when initializing the library
    )

Tested on Wemos D1 Mini with Arduino IDE 1.8.3-1.8.10 & ESP8266 core 2.3.0-2.5.2


Screenshots:




live page example (extended) screenshot


Configuring:

Default configuration is specified in the SDM.h file, and parameters are set to:
Software Serial mode, baud 4800, uart config SERIAL_8N1, without DE/RE pin,
uart pins for esp32 hwserial and esp32/esp8266/avr swserial as NOT_A_PIN (-1).

For esp32 hwserial this means using the default pins for the selected uart port,
specified in the core library (HardwareSerial.cpp).
For swserial option (esp32/esp8266/avr) is necessary
to specify the pin numbers, as described below.

User can set the parameters in two ways:

  • by editing the SDM_Config_User.h file
  • by passing values during initialization (section below)

SDM_Config_User.h file includes also two parameters that can be adjusted depending on your needs:

  • WAITING_TURNAROUND_DELAY (default set to 200ms) defines the time (after sending the query) for the response from the slave device. If the slave device does not send the required number of bytes (FRAMESIZE) within this time, an SDM_ERR_TIMEOUT error will be returned.
  • RESPONSE_TIMEOUT (default set to 500ms) defines the time (after sending the request and receiving the reply) to a possible response from other slave devices on the bus, during this time it will not be possible to execute another query. It is a protection time for devices that are not able to quickly respond to inquiries.

NOTE for Hardware Serial mode: to force the Hardware Serial mode,
user must edit the corresponding entry in SDM_Config_User.h file.
adding #define USE_HARDWARESERIAL to the main ino file is not enough.


Initializing:

If the user configuration is specified in the SDM_Config_User.h file
or if the default configuration from the SDM.h file is suitable
initialization is limited to passing serial port reference (software or hardware)
and looks as follows:

//lib init when Software Serial is used:
#include <SDM.h>
#include <SoftwareSerial.h>

// for ESP8266 and ESP32
SoftwareSerial swSerSDM;
//              _______________________________software serial reference
//             |
SDM sdm(swSerSDM);


// for AVR
SoftwareSerial swSerSDM(SDM_RX_PIN, SDM_TX_PIN);
//                               |           |_tx pin definition(from SDM_Config_User.h)
//                               |_____________rx pin definition(from SDM_Config_User.h)
//
//              _______________________________software serial reference
//             |
SDM sdm(swSerSDM);
//lib init when Hardware Serial is used:
#include <SDM.h>

//            _________________________________hardware serial reference
//           |
SDM sdm(Serial);

If the user wants to temporarily change the configuration during the initialization process
then can pass additional parameters as below:

//lib init when Software Serial is used:
#include <SDM.h>
#include <SoftwareSerial.h>

// for ESP8266 and ESP32
SoftwareSerial swSerSDM;
//              ________________________________________software serial reference
//             |      __________________________________baudrate(optional, default from SDM_Config_User.h)
//             |     |           _______________________dere pin for max485(optional, default from SDM_Config_User.h)
//             |     |          |              _________software uart config(optional, default from SDM_Config_User.h)
//             |     |          |             |    _____rx pin number(optional, default from SDM_Config_User.h)
//             |     |          |             |   |    _tx pin number(optional, default from SDM_Config_User.h)
//             |     |          |             |   |   | 
SDM sdm(swSerSDM, 9600, NOT_A_PIN, SWSERIAL_8N1, 13, 15);


// for AVR
SoftwareSerial swSerSDM(10, 11);
//              ________________________________________software serial reference
//             |      __________________________________baudrate(optional, default from SDM_Config_User.h)   
//             |     |           _______________________dere pin for max485(optional, default from SDM_Config_User.h)
//             |     |          |
SDM sdm(swSerSDM, 9600, NOT_A_PIN);
//lib init when Hardware Serial is used:
#include <SDM.h>

// for ESP8266
//            ______________________________________hardware serial reference
//           |      ________________________________baudrate(optional, default from SDM_Config_User.h)
//           |     |           _____________________dere pin for max485(optional, default from SDM_Config_User.h)
//           |     |          |            _________hardware uart config(optional, default from SDM_Config_User.h)
//           |     |          |           |       __swap hw serial pins from 3/1 to 13/15(optional, default from SDM_Config_User.h)
//           |     |          |           |      |
SDM sdm(Serial, 9600, NOT_A_PIN, SERIAL_8N1, false);


// for ESP32
//            ______________________________________hardware serial reference
//           |      ________________________________baudrate(optional, default from SDM_Config_User.h)
//           |     |           _____________________dere pin for max485(optional, default from SDM_Config_User.h)
//           |     |          |            _________hardware uart config(optional, default from SDM_Config_User.h)
//           |     |          |           |    _____rx pin number(optional, default from SDM_Config_User.h)
//           |     |          |           |   |    _tx pin number(optional, default from SDM_Config_User.h)
//           |     |          |           |   |   | 
SDM sdm(Serial, 9600, NOT_A_PIN, SERIAL_8N1, 13, 15);


// for AVR
//            ______________________________________hardware serial reference
//           |      ________________________________baudrate(optional, default from SDM_Config_User.h)
//           |     |           _____________________dere pin for max485(optional, default from SDM_Config_User.h)
//           |     |          |            _________hardware uart config(optional, default from SDM_Config_User.h)
//           |     |          |           |
//           |     |          |           |
SDM sdm(Serial, 9600, NOT_A_PIN, SERIAL_8N1);

NOTE for ESP8266: when GPIO15 is used (especially for swapped hardware serial):
some converters (like mine) have built-in pullup resistors on TX/RX lines from rs232 side,
connection this type of converters to ESP8266 pin GPIO15 block booting process.
In this case you can replace the pull-up resistor on converter with higher value (100k),
to ensure low level on GPIO15 by built-in in most ESP8266 modules pulldown resistor.


Reading:

List of available registers for SDM72/120/220/230/630:
https://github.com/reaper7/SDM_Energy_Meter/blob/master/SDM.h#L103

//reading voltage from SDM with slave address 0x01 (default)
//                                         ____register name
//                                        |
float voltage = sdm.readVal(SDM_PHASE_1_VOLTAGE);

//reading power from 1st SDM with slave address ID = 0x01
//reading power from 2nd SDM with slave address ID = 0x02
//useful with several meters on RS485 line
//                                      _______register name
//                                     |       SDM device ID  
//                                     |      |
float power1 = sdm.readVal(SDM_PHASE_1_POWER, 0x01);
float power2 = sdm.readVal(SDM_PHASE_1_POWER, 0x02);
//reading multiple registers at once
//                                      _______first register
//                                     |                     last register  
//                                     |                    |              SDM device ID
//                                     |                    |             |         callback function
//                                     |                    |             |        |
uint8_t error = sdm->readValues(SDM_PHASE_1_VOLTAGE, SDM_PHASE_3_POWER, 0x01, get_result);

// callback function:
void get_result(uint16_t reg, float result)
{
    printf("Register: %d, value: %f\n", reg, result;
}

NOTE: if you reading multiple SDM devices on the same RS485 line,
remember to set the same transmission parameters on each device,
only ID must be different for each SDM device.


Problems:

Sometimes readVal return NaN value (not a number),
this means that the requested value could not be read from the sdm module for various reasons.

Please check out open and close issues, maybe the cause of your error is explained or solved there.

The most common problems are:

You can get last error code using function:

//get last error code
//                                      ______optional parameter,
//                                     |      true -> read and reset error code
//                                     |      false or no parameter -> read error code
//                                     |      but not reset stored code (for future checking)
//                                     |      will be overwriten when next error occurs
uint16_t lasterror = sdm.getErrCode(true);

//clear error code also available with:
sdm.clearErrCode();

Errors list returned by getErrCode:
https://github.com/reaper7/SDM_Energy_Meter/blob/master/SDM.h#L86

You can also check total number of errors using function:

//get total errors counter
//                                       _____optional parameter,
//                                      |     true -> read and reset errors counter
//                                      |     false or no parameter -> read errors counter
//                                      |     but not reset stored counter (for future checking)
uint16_t cnterrors = sdm.getErrCount(true);

//clear errors counter also available with:
sdm.clearErrCount();

And finally you can read the counter of correctly made readings:

//get total success counter
//                                         ___optional parameter,
//                                        |   true -> read and reset success counter
//                                        |   false or no parameter -> read success counter
//                                        |   but not reset stored counter (for future checking)
uint16_t cntsuccess = sdm.getSuccCount(true);

//clear success counter also available with:
sdm.clearSuccCount();

Credits:

contribution to this project:
πŸ‘ ESP SoftwareSerial library by Peter Lerup (https://github.com/plerup/espsoftwareserial)
πŸ‘ crc calculation by Jaime GarcΓ­a (https://github.com/peninquen/Modbus-Energy-Monitor-Arduino)
πŸ‘ new registers for SDM120 and SDM630 by bart.e (#3)
πŸ‘ new registers for SDM72 by jegaha (#34)
πŸ‘ new registers for SDM120CT by JeroenSt (#41)
πŸ‘ new registers for DDM18SD by JeroenSt (#44)
πŸ‘ additional SDM630 registers and influxdb example by AndersV209 (#45)
πŸ‘ new registers for SDM72DM V2 by datjan (#62)
πŸ‘ compatibility with EspSoftwareSerial >= 8.0.1 by maxpautsch (#75)

other projects based on or using this library
πŸ‘‰ BZ40i Energy Meter by adlerweb (https://github.com/adlerweb/BZ40i_Energy_Meter)
πŸ‘‰ DDS238 Energy Meter by E-NINA (https://github.com/E-NINA/dds238_Energy_Meter)
πŸ‘‰ ESPEasy by TD-er (https://github.com/TD-er/ESPEasy)
πŸ‘‰ Sonoff-Tasmota by arendst (https://github.com/arendst/Sonoff-Tasmota)


library version for old esp software serial (6.0.0 - 7.0.1) is available at old_esp_swserial_600_701 branch
library version for old esp software serial (5.2.0 - 5.4.0) is available at old_esp_swserial_520_540 branch
library version for old esp software serial (< 5.2.0) is available at old_esp_swserial_lib branch
old template library version is available at old_template branch


2016-2023 Reaper7

paypal.me/reaper7md

About

reading SDM72 SDM120 SDM220 SDM230 SDM630 modbus energy meters from arduino (esp8266, esp32, avr)


Languages

Language:C++ 94.8%Language:C 5.2%