Load Cell Sensor 1KG (YZC-131) Weight Scale Weighing Sensor
In stock
Order before 12.00PM
The YZC-131 5Kg Weighing Load Cell Sensor is specifically designed for use in electronic kitchen scales and other lightweight weighing applications. This load cell accurately converts mechanical weight into an electrical signal, making it perfect for high-precision weight measurement in scales and similar devices. It comes pre-wired with four color-coded wires, allowing for easy integration with microcontroller platforms like Arduino, Raspberry Pi, or other electronic systems.
The load cell is constructed from durable aluminum alloy to ensure consistent performance and reliability. Its compact and lightweight design makes it ideal for both commercial applications and DIY weighing projects.
Features:
- Precise weight measurement up to 5Kg
- Compatible with microcontroller platforms such as Arduino and Raspberry Pi
- Easy to wire and integrate with electronic circuits
- Sturdy aluminum alloy construction for long-lasting durability
- Ideal for use in kitchen scales, luggage scales, and similar lightweight measurement devices
- Pre-wired for simple setup
Specifications:
- Model: YZC-131
- Maximum Load Capacity: 5Kg
- Rated Output: 1.0 ± 0.1mV/V
- Non-linearity: ±0.03% full scale
- Repeatability: ±0.03% full scale
- Creep: ±0.03% (30 minutes)
- Zero Balance: ±0.1mV/V
- Input Resistance: 1050 ± 10Ω
- Output Resistance: 1000 ± 10Ω
- Insulation Resistance: ≥2000MΩ (50V DC)
- Recommended Excitation Voltage: 5-10V DC
- Maximum Excitation Voltage: 15V DC
- Cable Length: 4 wires, approximately 30cm
- Red: +E (Excitation+)
- Black: -E (Excitation-)
- Green: +S (Signal+)
- White: -S (Signal-)
- Material: Aluminum Alloy
- Working Temperature: -10°C to +40°C
- Dimensions: 75mm x 12.7mm x 12.7mm (L x W x H)
- Weight: Approximately 22g
This YZC-131 5Kg load cell sensor is perfect for small-scale weight measurement projects, offering both accuracy and reliability in a variety of lightweight weighing applications.
Interfacing With Arduino:
Interfacing a load cell with an Arduino involves connecting the load cell to an amplifier (such as the HX711), which then sends the signal to the Arduino. Here’s how you can interface 1Kg, 5Kg, 10Kg, and 20Kg load cells using Arduino:
Components Required:
- Load Cell (1Kg, 5Kg, 10Kg, or 20Kg)
- HX711 Load Cell Amplifier Module
- Arduino (UNO or any compatible board)
- Jumper Wires
- Breadboard
- Power Supply
Steps to Interface Load Cells with Arduino:
1. Wiring the Load Cell to the HX711 Amplifier:
Most load cells, regardless of their capacity (1Kg, 5Kg, 10Kg, or 20Kg), come with four wires:
- Red: +E (Excitation+)
- Black: -E (Excitation-)
- Green: +S (Signal+)
- White: -S (Signal-)
Wire the load cell to the HX711 module as follows:
- Red wire from the load cell to E+ on the HX711.
- Black wire from the load cell to E- on the HX711.
- Green wire from the load cell to A+ on the HX711.
- White wire from the load cell to A- on the HX711.
(Note: If you’re using a load cell with five wires, the extra wire (usually yellow) is for grounding or shielding and can be ignored.)
2. Wiring the HX711 to the Arduino:
Connect the HX711 module to the Arduino as follows:
- VCC on HX711 to 5V on Arduino.
- GND on HX711 to GND on Arduino.
- DT (Data) on HX711 to Pin 3 on Arduino.
- SCK (Clock) on HX711 to Pin 2 on Arduino.
3. Arduino Code:
You'll need the HX711 library to easily read data from the load cell. Install the library via Arduino IDE:
- Go to Sketch → Include Library → Manage Libraries, then search for "HX711" and install the HX711 library by "Bogdan Necula."
Here's a sample code for reading load cell data:
#include "HX711.h" // HX711 circuit wiring const int LOADCELL_DOUT_PIN = 3; const int LOADCELL_SCK_PIN = 2; HX711 scale; void setup() { Serial.begin(9600); scale.begin(LOADCELL_DOUT_PIN, LOADCELL_SCK_PIN); Serial.println("Load Cell Setup Ready"); } void loop() { if (scale.is_ready()) { long reading = scale.read(); // Read raw data from load cell Serial.print("Raw reading: "); Serial.println(reading); // You can add calibration here based on your specific load cell } else { Serial.println("HX711 not found."); } delay(1000); // Delay for easier viewing in the Serial Monitor }
4. Calibrating the Load Cell:
To accurately measure weight, you need to calibrate the load cell. Place a known weight on the load cell, read the raw value, and determine the scaling factor. Modify the code to output the actual weight based on your load cell's calibration factor.
Here’s how you can calibrate:
// Add this part after setting up the load cell in the setup() function long calibration_factor = 2280; // You will need to adjust this based on your specific load cell scale.set_scale(calibration_factor); // Set the calibration factor scale.tare(); // Tare the scale to 0 void loop() { Serial.print("Weight: "); Serial.print(scale.get_units(), 2); // Print the weight in KG Serial.println(" Kg"); delay(1000); }
5. Adjusting for Different Load Cells (1Kg, 5Kg, 10Kg, and 20Kg):
- The procedure is the same for different capacities of load cells. The only difference is the calibration factor.
- For each load cell (1Kg, 5Kg, 10Kg, 20Kg), you will need to calibrate using a known weight and adjust the calibration factor accordingly.
- For example, for a 5Kg load cell, place a 5Kg weight, observe the raw reading, and calculate the calibration factor.
6. Calibration Factor Calculation Example:
-
Place a known weight on the load cell, for example, 2Kg.
-
Note down the raw reading displayed in the Serial Monitor.
-
Use the following formula to calculate the calibration factor:
Calibration Factor = Raw Reading / Known Weight
- Replace
calibration_factor
in the code with your new value.
Request Stock
Recently viewed products
You might also be interested in...
Customers who bought this also bought...
General Questions
-
What is the latest price of the Load Cell Sensor 1KG (YZC-131) Weight Scale Weighing Sensor in Bangladesh?
The latest price of Load Cell Sensor 1KG (YZC-131) Weight Scale Weighing Sensor in Bangladesh is BDT 300.00 . You can buy the Load Cell Sensor 1KG (YZC-131) Weight Scale Weighing Sensor at the best price on BDTronics.com or contact us via phone.
-
Where to buy Load Cell Sensor 1KG (YZC-131) Weight Scale Weighing Sensor in Bangladesh?
You can buy Load Cell Sensor 1KG (YZC-131) Weight Scale Weighing Sensor online by ordering on BDTronics.com or directly collect by visiting our store in person. BDTronics is a trusted provider of high-quality electronics, 3D printers, solar systems, and robotics parts. We offer fast shipping across the country via courier service.
-
What are the delivery options of Load Cell Sensor 1KG (YZC-131) Weight Scale Weighing Sensor in Bangladesh?
We provide home delivery service all over Bangladesh. We support cash on delivery, bKash and Credit Card (Visa/ MasterCard/ Amex) payment solutions. The delivery time usually takes 1-2 days inside Dhaka and 2-3 days outside Dhaka.