Cirkit Designer Logo
Cirkit Designer
Your all-in-one circuit design IDE
Home / 
Component Documentation

How to Use Energy Meter XTM35SA: Examples, Pinouts, and Specs

Image of Energy Meter XTM35SA
Cirkit Designer LogoDesign with Energy Meter XTM35SA in Cirkit Designer

Introduction

The Energy Meter XTM35SA, manufactured by Tignous, is a digital energy meter designed for accurate measurement of electrical energy consumption in residential, commercial, and industrial applications. It features a clear LCD display for real-time energy monitoring and supports various communication protocols for data logging and remote monitoring. The XTM35SA is compact, reliable, and easy to integrate into existing electrical systems, making it a versatile choice for energy management solutions.

Explore Projects Built with Energy Meter XTM35SA

Use Cirkit Designer to design, explore, and prototype these projects online. Some projects support real-time simulation. Click "Open Project" to start designing instantly!
ESP32-Based Energy Monitoring and Control System with RS485 Communication
Image of ENERGY METER USING ESP-NOW: A project utilizing Energy Meter XTM35SA in a practical application
This is a smart energy monitoring system consisting of three single-phase energy meters, each connected to an AC power supply and an AC bulb to measure energy consumption. The energy meters are interfaced with ESP32 microcontrollers through RS485 modules, indicating a setup for data acquisition and possibly remote communication, although the specific embedded functionality is not provided.
Cirkit Designer LogoOpen Project in Cirkit Designer
ESP32-Based Smart Electricity Monitoring System with Wi-Fi and Telegram Alerts
Image of ehe: A project utilizing Energy Meter XTM35SA in a practical application
This circuit is an energy monitoring and billing system using an ESP32 microcontroller. It measures voltage and current through ZMPT101B and ACS712 sensors, respectively, and calculates energy consumption and cost, displaying the data on an LCD and sending updates to Blynk and Telegram.
Cirkit Designer LogoOpen Project in Cirkit Designer
Arduino UNO-Based Smart Energy Meter with GSM Module and LCD Display
Image of energy meter: A project utilizing Energy Meter XTM35SA in a practical application
This circuit is an energy meter system that uses an Arduino UNO to monitor and control power usage. It includes a GSM module for sending SMS notifications, a relay to control an AC bulb, a limit switch for input, an LCD for display, and a buzzer for alerts.
Cirkit Designer LogoOpen Project in Cirkit Designer
ESP32C3 and SIM800L Powered Smart Energy Monitor with OLED Display and Wi-Fi Connectivity
Image of SERVER: A project utilizing Energy Meter XTM35SA in a practical application
This circuit is a power monitoring system that uses an ESP32C3 microcontroller to collect power usage data from slave devices via WiFi and SMS. The collected data is displayed on a 0.96" OLED screen, and the system is powered by an AC-DC converter module. Additionally, the circuit includes a SIM800L GSM module for SMS communication and LEDs for status indication.
Cirkit Designer LogoOpen Project in Cirkit Designer

Explore Projects Built with Energy Meter XTM35SA

Use Cirkit Designer to design, explore, and prototype these projects online. Some projects support real-time simulation. Click "Open Project" to start designing instantly!
Image of ENERGY METER USING ESP-NOW: A project utilizing Energy Meter XTM35SA in a practical application
ESP32-Based Energy Monitoring and Control System with RS485 Communication
This is a smart energy monitoring system consisting of three single-phase energy meters, each connected to an AC power supply and an AC bulb to measure energy consumption. The energy meters are interfaced with ESP32 microcontrollers through RS485 modules, indicating a setup for data acquisition and possibly remote communication, although the specific embedded functionality is not provided.
Cirkit Designer LogoOpen Project in Cirkit Designer
Image of ehe: A project utilizing Energy Meter XTM35SA in a practical application
ESP32-Based Smart Electricity Monitoring System with Wi-Fi and Telegram Alerts
This circuit is an energy monitoring and billing system using an ESP32 microcontroller. It measures voltage and current through ZMPT101B and ACS712 sensors, respectively, and calculates energy consumption and cost, displaying the data on an LCD and sending updates to Blynk and Telegram.
Cirkit Designer LogoOpen Project in Cirkit Designer
Image of energy meter: A project utilizing Energy Meter XTM35SA in a practical application
Arduino UNO-Based Smart Energy Meter with GSM Module and LCD Display
This circuit is an energy meter system that uses an Arduino UNO to monitor and control power usage. It includes a GSM module for sending SMS notifications, a relay to control an AC bulb, a limit switch for input, an LCD for display, and a buzzer for alerts.
Cirkit Designer LogoOpen Project in Cirkit Designer
Image of SERVER: A project utilizing Energy Meter XTM35SA in a practical application
ESP32C3 and SIM800L Powered Smart Energy Monitor with OLED Display and Wi-Fi Connectivity
This circuit is a power monitoring system that uses an ESP32C3 microcontroller to collect power usage data from slave devices via WiFi and SMS. The collected data is displayed on a 0.96" OLED screen, and the system is powered by an AC-DC converter module. Additionally, the circuit includes a SIM800L GSM module for SMS communication and LEDs for status indication.
Cirkit Designer LogoOpen Project in Cirkit Designer

Common Applications

  • Residential energy consumption monitoring
  • Commercial building energy management
  • Industrial power usage tracking
  • Integration with smart home systems
  • Data logging for energy audits

Technical Specifications

The following table outlines the key technical specifications of the XTM35SA:

Parameter Specification
Manufacturer Tignous
Part ID XTM35SA
Voltage Rating 230V AC ± 20%
Current Rating 5(80)A
Frequency 50/60 Hz
Accuracy Class Class 1
Power Consumption ≤ 2W / 10VA
Display Type LCD (6+2 digits)
Communication Protocols RS485 (Modbus RTU), Infrared (optional)
Operating Temperature -25°C to +55°C
Storage Temperature -40°C to +70°C
Dimensions 100mm x 36mm x 65mm
Mounting Type DIN Rail
Certification IEC 62053-21, CE

Pin Configuration and Descriptions

The XTM35SA features terminal connections for power input, load output, and communication. The table below describes the terminal layout:

Terminal No. Description
1 Line Input (L)
2 Neutral Input (N)
3 Line Output (L)
4 Neutral Output (N)
5 RS485 Communication (A)
6 RS485 Communication (B)
7 Infrared Communication (optional)

Usage Instructions

How to Use the XTM35SA in a Circuit

  1. Mounting: Securely mount the XTM35SA on a DIN rail in your distribution box.
  2. Wiring:
    • Connect the Line Input (L) and Neutral Input (N) terminals to the incoming power supply.
    • Connect the Line Output (L) and Neutral Output (N) terminals to the load.
    • For communication, connect the RS485 terminals (A and B) to your data acquisition system or monitoring device.
  3. Power On: Once all connections are secure, power on the system. The LCD display will show real-time energy consumption data.
  4. Communication Setup:
    • If using RS485, configure the Modbus RTU settings (e.g., baud rate, parity) as per your system requirements.
    • For infrared communication, align the infrared port with the receiver for data transfer.

Important Considerations and Best Practices

  • Ensure all connections are made with the power supply turned off to avoid electrical hazards.
  • Use appropriately rated cables for the current and voltage levels in your system.
  • Verify the RS485 communication settings (e.g., device ID, baud rate) to ensure compatibility with your monitoring system.
  • Regularly inspect the meter for any signs of damage or wear.

Arduino UNO Integration Example

The XTM35SA can be connected to an Arduino UNO via the RS485 interface for data logging. Below is an example code snippet for reading energy data using the Modbus RTU protocol:

#include <ModbusMaster.h>

// Instantiate ModbusMaster object
ModbusMaster node;

void setup() {
  Serial.begin(9600); // Initialize serial communication
  node.begin(1, Serial); // Set Modbus slave ID to 1
}

void loop() {
  uint8_t result;
  uint16_t data;

  // Read energy consumption (example register address: 0x0000)
  result = node.readInputRegisters(0x0000, 1);

  if (result == node.ku8MBSuccess) {
    data = node.getResponseBuffer(0);
    Serial.print("Energy Consumption: ");
    Serial.print(data);
    Serial.println(" kWh");
  } else {
    Serial.println("Error reading data");
  }

  delay(1000); // Wait 1 second before next read
}

Note: Replace the register address (0x0000) with the actual address for energy data as specified in the XTM35SA Modbus register map.

Troubleshooting and FAQs

Common Issues and Solutions

  1. No Display on Power On:

    • Cause: Incorrect wiring or no power supply.
    • Solution: Verify the input connections and ensure the power supply is within the specified range.
  2. Inaccurate Readings:

    • Cause: Loose connections or incorrect wiring.
    • Solution: Check all connections and ensure the meter is properly installed.
  3. RS485 Communication Failure:

    • Cause: Incorrect baud rate or wiring issues.
    • Solution: Verify the RS485 settings (baud rate, parity, etc.) and check the wiring.
  4. Infrared Communication Not Working:

    • Cause: Misalignment of the infrared port.
    • Solution: Ensure the infrared port is properly aligned with the receiver.

FAQs

  • Q: Can the XTM35SA measure three-phase power?
    A: No, the XTM35SA is designed for single-phase power measurement only.

  • Q: What is the maximum current the XTM35SA can handle?
    A: The XTM35SA can handle a maximum current of 80A.

  • Q: Is the XTM35SA compatible with solar inverters?
    A: Yes, the XTM35SA can be used to monitor energy consumption in systems with solar inverters, provided the voltage and current ratings are within range.

  • Q: How do I reset the energy readings?
    A: Refer to the user manual for instructions on resetting the meter, as this may vary depending on the firmware version.

This concludes the documentation for the Energy Meter XTM35SA. For further assistance, refer to the official Tignous user manual or contact their support team.