The Weilo M60 Loadcell Indicator is a precision device designed to display the weight or force measured by a load cell. It converts the electrical signals generated by the load cell into a readable format, typically shown on a digital display. The M60 is equipped with advanced features such as calibration options, data logging, and compatibility with various load cell types, making it a versatile tool for industrial, commercial, and laboratory applications.
Parameter | Specification |
---|---|
Manufacturer | Weilo |
Part ID | M60 |
Input Signal Range | 0.5 mV/V to 4.0 mV/V |
Excitation Voltage | 5V DC |
Display Type | 6-digit LED display |
Display Resolution | Up to 1/10,000 |
Power Supply | 24V DC ±10% |
Operating Temperature | -10°C to 50°C |
Communication Interfaces | RS232, RS485, Modbus RTU |
Calibration Options | Manual and automatic |
Mounting Style | Panel-mounted |
The M60 Loadcell Indicator features a terminal block for wiring connections. Below is the pin configuration:
Pin Number | Label | Description |
---|---|---|
1 | +EXC | Positive excitation voltage to load cell |
2 | -EXC | Negative excitation voltage to load cell |
3 | +SIG | Positive signal from load cell |
4 | -SIG | Negative signal from load cell |
Pin Number | Label | Description |
---|---|---|
5 | +24V | Positive power supply (24V DC) |
6 | GND | Ground connection |
7 | TX | Transmit data (RS232/RS485) |
8 | RX | Receive data (RS232/RS485) |
+EXC
and -EXC
terminals.+SIG
and -SIG
terminals.+24V
and GND
terminals.The M60 Loadcell Indicator can communicate with an Arduino UNO via RS232. Below is an example code snippet for reading data:
#include <SoftwareSerial.h>
// Define RX and TX pins for RS232 communication
SoftwareSerial loadcellSerial(10, 11); // RX = pin 10, TX = pin 11
void setup() {
Serial.begin(9600); // Initialize Serial Monitor
loadcellSerial.begin(9600); // Initialize RS232 communication
Serial.println("Weilo M60 Loadcell Indicator - Arduino Example");
}
void loop() {
// Check if data is available from the loadcell indicator
if (loadcellSerial.available()) {
String weightData = ""; // Variable to store weight data
// Read data from the loadcell indicator
while (loadcellSerial.available()) {
char c = loadcellSerial.read();
weightData += c; // Append each character to the string
}
// Print the received weight data to the Serial Monitor
Serial.println("Weight: " + weightData);
}
delay(500); // Wait for 500ms before the next read
}
No Display or Power:
+24V
and GND
connections and ensure the power supply is within the specified range.Inaccurate Weight Readings:
Communication Failure:
Fluctuating Readings:
Q1: Can the M60 handle multiple load cells?
A1: No, the M60 is designed to work with a single load cell. For multiple load cells, use a summing box.
Q2: How often should I calibrate the indicator?
A2: Calibration frequency depends on usage, but it is recommended to calibrate at least once every six months.
Q3: Is the M60 compatible with all load cells?
A3: The M60 is compatible with most strain gauge-based load cells with an output range of 0.5 mV/V to 4.0 mV/V.
Q4: Can I use the M60 in outdoor environments?
A4: The M60 is not weatherproof. Use it in a controlled environment or within an enclosure for outdoor applications.
This concludes the documentation for the Weilo M60 Loadcell Indicator. For further assistance, refer to the manufacturer's user manual or contact technical support.