

The DC Power Monitor with WiFi by 테무 (Part ID: DC Power Monitor with Wifi) is a versatile device designed to measure and display the direct current (DC) power usage of a circuit. Equipped with Wi-Fi connectivity, it allows for remote monitoring and data logging, making it an ideal solution for applications requiring real-time power analysis and control.








Below are the key technical details of the DC Power Monitor with WiFi:
| Parameter | Value |
|---|---|
| Input Voltage Range | 0–60 V DC |
| Current Measurement Range | 0–30 A DC |
| Power Measurement Range | 0–1800 W |
| Accuracy | ±1% |
| Wi-Fi Standard | IEEE 802.11 b/g/n (2.4 GHz) |
| Communication Protocol | HTTP, MQTT |
| Display Type | OLED (128x64 resolution) |
| Operating Temperature | -10°C to 60°C |
| Power Supply | 5 V DC (via micro-USB or terminal) |
| Dimensions | 80 mm x 50 mm x 25 mm |
The device features the following input/output terminals and connectors:
| Pin/Connector | Description |
|---|---|
| VIN+ | Positive DC voltage input for power measurement |
| VIN- | Negative DC voltage input for power measurement |
| I+ | Positive current input for current sensing |
| I- | Negative current input for current sensing |
| GND | Ground connection for the device |
| 5V | 5 V DC power input (via micro-USB or terminal block) |
| TX | UART transmit pin for serial communication |
| RX | UART receive pin for serial communication |
Powering the Device:
Connect a 5 V DC power source to the 5V and GND terminals or use the micro-USB port.
Connecting the Circuit for Measurement:
VIN+ and the negative line to VIN-.I+ and I- terminals in series with the load.Wi-Fi Configuration:
DCMonitor_XXXX).192.168.4.1 to access the configuration page.Data Access:
The DC Power Monitor can communicate with an Arduino UNO via UART. Below is an example code snippet to read data from the device:
#include <SoftwareSerial.h>
// Define RX and TX pins for SoftwareSerial
SoftwareSerial dcMonitor(10, 11); // RX = pin 10, TX = pin 11
void setup() {
Serial.begin(9600); // Initialize Serial Monitor
dcMonitor.begin(9600); // Initialize communication with DC Power Monitor
Serial.println("DC Power Monitor with WiFi - Arduino Integration");
}
void loop() {
if (dcMonitor.available()) {
// Read data from the DC Power Monitor
String data = dcMonitor.readStringUntil('\n');
// Print the received data to the Serial Monitor
Serial.println("Received Data: " + data);
}
delay(1000); // Wait for 1 second before the next read
}
Device Not Powering On:
5V and GND terminals or the micro-USB cable.Wi-Fi Connection Fails:
Inaccurate Measurements:
No Data on Arduino:
Q1: Can the device log data without an active Wi-Fi connection?
A1: No, the device requires Wi-Fi for remote data logging. However, real-time data can still be viewed on the OLED display.
Q2: Is the device compatible with 24 V battery systems?
A2: Yes, the device supports up to 60 V DC, making it suitable for 24 V systems.
Q3: How do I update the firmware?
A3: Firmware updates can be performed via the web interface. Navigate to the "Firmware Update" section and upload the provided firmware file.
Q4: Can I use the device with a 5 GHz Wi-Fi network?
A4: No, the device only supports 2.4 GHz Wi-Fi networks.
Q5: What happens if the measured current exceeds 30 A?
A5: The device may become damaged. Always ensure the current remains within the specified range. Use external current shunts if necessary.
This concludes the documentation for the DC Power Monitor with WiFi by 테무. For further assistance, refer to the manufacturer's support resources.