Shop Dolls Stuffed Toys Shop Carpets Rugs Shop Doors Windows
HOME » Home & Living » Kitchenware » Kitchen Weighing Scales » พร้อมส่ง-Load Cell 50KG resistance strain half bridge sensor body scale

พร้อมส่ง-Load Cell 50KG resistance strain half bridge sensor body scale
พร้อมส่ง-Load Cell 50KG resistance strain half bridge sensor body scale1พร้อมส่ง-Load Cell 50KG resistance strain half bridge sensor body scale2พร้อมส่ง-Load Cell 50KG resistance strain half bridge sensor body scale3พร้อมส่ง-Load Cell 50KG resistance strain half bridge sensor body scale4พร้อมส่ง-Load Cell 50KG resistance strain half bridge sensor body scale5

ส่งฟรี เก็บเงินปลายทาง
ฟรีค่าจัดส่ง จัดส่งเร็วภายใน 2-3 วัน
คืนเงิน/คืนสินค้าได้ใน 7วัน

พร้อมส่ง-Load Cell 50KG resistance strain half bridge sensor body scale


รหัสสินค้า : 2486602203
หมวดหมู่สินค้า : Home & Living » Kitchenware » Kitchen Weighing Scales
ร้านค้า : AllNewTrend (093-8936230)
star5-0 (4.96)

เปรียบเทียบราคา

เก็บโค้ดส่วนลด

ราคาปกติ : 35 ฿

FLASH⚡SALE


Share :

พร้อมส่ง-Load Cell 50KG resistance strain half bridge sensor body scale

พร้อมส่ง-Load Cell 50KG resistance strain half bridge sensor body scale
***** รับประกันสินค้า 30 วัน *****

Attribute:
Within 1000 ohm half bridge strain gauge load cell range 50 kg half bridge structure
When measured the correct force is applied to the outer strain of the E-shaped beam.
(Eg a strain gauge center white beam plastic arm)
And the outer edge to create the opposite shear force
Such as medium stress beam bending the necessary changes can occur under stress
Side beam stress with another force able to have no barrier.
Specifications:
Model Number: Weighing Scale
Weight: 18 g.
Size: 3.4 × 3.4 cm / 1.33 × 1.33 inches
Capacity: 50 kg / 110lb (each)
Structure: Half - bridge
Output sensitivity: 1.0 ± 15% mv / V
Nonlinearity: 0.05% FS
Input resistance: 1000 ± 10ohm
Output Impedance: 1000 ± 10ohm
Insulation resistance: ≧ 2000 M ohm
The sensor uses the following 3 methods:
1 using external sensors full bridge resistors sensor range measurement range: 50 kg higher for external resistors
2 use only 2-bridge sensor measuring range two sensor range: 50kgx2 = 100kg
3 the use of four full-bridge sensors measuring range range of four sensors and: 50kgx4 = 200kg

/* Example Sketch for 1x50 KG Load Cell
Setup your scale and start the sketch WITHOUT a weight on the scale
Once readings are displayed place the weight on the scale
Press +/- or a/z to adjust the calibration_factor until the output readings match the known weight
Arduino pin 6 -> HX711 CLK
Arduino pin 5 -> HX711 DOUT
Arduino pin 5V -> HX711 VCC
Arduino pin GND -> HX711 GND
*/

#include HX711.h
//download library HX711.h and example sketch สอบถามลิงค์ดาวน์โหลดจากร้านค้าได้ครับ

HX711 scale(5 6);

float calibration_factor = 41000; // 48100 this calibration factor is adjusted according to my load cell
//Use calibration_factor = 41000 for test 340 g./1.53 g./6.11 kgs.
float units;
float ounces;

void setup() {
Serial.begin(9600);
Serial.println(HX711 calibration sketch);
Serial.println(Remove all weight from scale);
Serial.println(After readings begin place known weight on scale);
Serial.println(Press + or a to increase calibration factor);
Serial.println(Press - or z to decrease calibration factor);

scale.set_scale();
scale.tare(); //Reset the scale to 0

long zero_factor = scale.read_average(); //Get a baseline reading
Serial.print(Zero factor: ); //This can be used to remove the need to tare the scale. Useful in permanent scale projects.
Serial.println(zero_factor);
}

void loop() {

scale.set_scale(calibration_factor); //Adjust to this calibration factor

Serial.print(Reading: );
units = scale.get_units() 10;
if (units < 0)
{
units = 0.00;
}
ounces = units * 0.035274;
Serial.print(units);
Serial.print( kg);
Serial.print( calibration_factor: );
Serial.print(calibration_factor);
Serial.println();
delay(500);

if(Serial.available())
{
char temp = Serial.read();
if(temp == + || temp == a)
calibration_factor += 1;
else if(temp == - || temp == z)
calibration_factor -= 1;
}
}


/* Example Sketch for 4x50 KG Load Cell
Example using the SparkFun HX711 breakout board with a scale
By: Nathan Seidle
SparkFun Electronics
Date: November 19th 2014
License: This code is public domain but you buy me a beer if you use this and we meet someday (Beerware license).

This example demonstrates basic scale output. See the calibration sketch to get the calibration_factor for your
specific load cell setup.

This example code uses bogdes excellent library:https://github.com/bogde/HX711
bogdes library is released under a GNU GENERAL PUBLIC LICENSE

The HX711 does one thing well: read load cells. The breakout board is compatible with any wheat-stone bridge
based load cell which should allow a user to measure everything from a few grams to tens of tons.
Arduino pin 2 -> HX711 CLK
3 -> DAT
5V -> VCC
GND -> GND

The HX711 board can be powered from 2.7V to 5V so the Arduino 5V power should be fine.

*/

#include HX711.h
//download library HX711.h and example sketch สอบถามลิงค์ดาวน์โหลดจากร้านค้าได้ครับ

#define calibration_factor -7050.0 //This value is obtained using the SparkFun_HX711_Calibration sketch

#define DOUT 3
#define CLK 2

HX711 scale;

void setup() {
Serial.begin(9600);
Serial.println(HX711 scale demo);

scale.begin(DOUT CLK);
scale.set_scale(calibration_factor); //This value is obtained by using the SparkFun_HX711_Calibration sketch
scale.tare(); //Assuming there is no weight on the scale at start up reset the scale to 0

Serial.println(Readings:);
}

void loop() {
Serial.print(Reading: );
Serial.print(scale.get_units()*0.453592 2); //scale.get_units() returns a float (1 lbs = 0.453592 kg)
Serial.print( kgs.); //You can change this to kg but youll need to refactor the calibration_factor
Serial.println();
}

ติดต่อ/สอบถาม :

BESTSELLER :

เครื่องชั่งดิจิตอล 10 kg เป็นสแตนเลส กิโล อุปกรณ์เบเกอรี่ เครื่องชั่งดิจิตอล 10 kg เป็นสแตนเลส กิโล อุปกรณ์เบเกอรี่...
star5-0 (4.71)
เครื่องชั่งดิจิตอล LCDความแม่นยำสูง ตาชั่ง เครื่องชั่งดิจิตอล มินิแบบพกพา มีฝาเปิด-ปิด สําหรับชั่งเครื่องประดับ ชั่งเพชร เครื่องชั่งดิจิตอล LCDความแม่นยำสูง ตาชั่ง เครื่องชั่งดิจิตอล มินิแบบพ...
star5-0 (5)
เครื่องชั่งดิจิตอล เครื่องชั่ง ขนาดเล็ก ความละเอียดสูง สำหรับชั่งอาหาร เครื่องประดับ จุดทศนิยม1/2 ตำแหน่ง / Accurate เครื่องชั่งดิจิตอล เครื่องชั่ง ขนาดเล็ก ความละเอียดสูง สำหรับชั่งอาหาร...
star5-0 (4.77)
willette_store ตาชั่งดิจิตอล 0.01 กรัม เครื่องชั่งดิจิตอล0.01g-200g กิโลดิจิตอล ตาชั่งน้ำหนัก าชั่งอาหารแบบพกพา willette_store ตาชั่งดิจิตอล 0.01 กรัม เครื่องชั่งดิจิตอล0.01g-200g กิ...
star5-0 (5)
Accurate ตาชั่งขนาด 1 / 2 / 3 / 5 กิโลกรัม เครื่องชั่งสปริง สูตรอาหาร ในครัวเรือน ตาชั่ง ห้ามชั่งซื้อขาย / Paveta Accurate ตาชั่งขนาด 1 / 2 / 3 / 5 กิโลกรัม เครื่องชั่งสปริง สูตรอาหาร ...
star5-0 (4.76)
ตาชั่งดิจิตอล 0.01 กรัม เครื่องชั่งดิจิตอล0.01g-200g กิโลดิจิตอล ตาชั่งน้ำหนัก ตาชั่งอาหารแบบพกพา ตาชั่งดิจิตอล 0.01 กรัม เครื่องชั่งดิจิตอล0.01g-200g กิโลดิจิตอล ตาชั่...
star5-0 (4.74)
sirenashop เครื่องชั่งดิจิตอล  สําหรับชั่งเครื่องประดับ ชั่งเพชร มีฝาเปิด-ปิด LCDความแม่นยำสูง สําหรับชั่งเครื่องประดับ sirenashop เครื่องชั่งดิจิตอล สําหรับชั่งเครื่องประดับ ชั่งเพชร มีฝาเ...
star5-0 (5)
Accurate เครื่องชั่ง ขนาด1/2/3/5 Kg. ตาชั่งสปริง ชั่งอาหาร สำหรับในครัวเรือน ห้ามชั่งซื้อขาย / Accurate Accurate เครื่องชั่ง ขนาด1/2/3/5 Kg. ตาชั่งสปริง ชั่งอาหาร สำหรับในครั...
star5-0 (4.74)
เครื่องชั่งอาหาร ตาชั่งดิจิตอล แจกแบตเตอรี่ฟรี 10กิโลกรัม ตาชั่งดิจิตอ หลายสี เครื่องชั่งอาหาร ตาชั่งดิจิตอล แจกแบตเตอรี่ฟรี 10กิโลกรัม ตาชั่งดิจิตอ...
star5-0 (4.81)
⚡มีสินค้า⚡เครื่องชั่งน้ําหนักดิจิทัล หน้าจอ LCD 2 ถาด 6 ยูนิต สเตนเลส ขนาดเล็ก สําหรับชั่งอาหาร เครื่องประดับ ⚡มีสินค้า⚡เครื่องชั่งน้ําหนักดิจิทัล หน้าจอ LCD 2 ถาด 6 ยูนิต สเตนเลส ...
star5-0 (4.79)
💥2024 จัดส่งภายใน1วัน💥ตาชั่งดิจิตอล มีรับประกัน 40กก เครื่องชั่งดิจิตอล เครื่องชั่ง สูงสุด 40กก กันน้ำ 10kg ดิจิตอล 40KG 💥2024 จัดส่งภายใน1วัน💥ตาชั่งดิจิตอล มีรับประกัน 40กก เครื่องชั่งดิจิตอ...
star5-0 (4.65)
【สินค้าพร้อมส่ง】เครื่องชั่งกาแฟ ตาชั่งกาแฟ 3kg/0.1g มีฟังชั่นชดเชยน้ำหนัก LED เครื่องชั่งดิจิตอล ตาชั่งดิจิตอล เหมาะสำหร 【สินค้าพร้อมส่ง】เครื่องชั่งกาแฟ ตาชั่งกาแฟ 3kg/0.1g มีฟังชั่นชดเชยน้ำห...
star5-0 (4.77)

Sandals Flip Flops

🧡ลดเพิ่ม 15% ใช้โค้ด HOTFASHHI24🧡 Adidas รองเท้าแตะ Racer TR ใส่สบาย แห้งไว น้ำหนักเบา G58170 G58171 - แท้/ป้ายไทย 🧡ลดเพิ่ม 15% ใช้โค้ด HOTFASHHI24🧡 Adidas รองเท้าแตะ Racer TR ใส่สบาย แ...
star5-0 (4.91)
รองเท้าแตะ crocs LiteRide ใส่สบาย รองเท้าแตะหัวโต ทั้งชายและหญิง วัสดุผลิตจากยางแท้ 100% ขายดี รองเท้าแตะ crocs LiteRide ใส่สบาย รองเท้าแตะหัวโต ทั้งชายและหญิง วัสดุ...
star5-0 (4.65)
CANNUP รองเท้าแตะหัวโต ลายการ์ตูน พื้นหนา 3 ซม ไซซ์ 36-45 AZ1010002 CANNUP รองเท้าแตะหัวโต ลายการ์ตูน พื้นหนา 3 ซม ไซซ์ 36-45 AZ1010002...
star5-0 (5)
Cameljeans รองเท้าแตะ รองเท้าชายหาด ลําลอง นุ่ม กันน้ํา สําหรับผู้ชาย Cameljeans รองเท้าแตะ รองเท้าชายหาด ลําลอง นุ่ม กันน้ํา สําหรับผู้ชาย...
star5-0 (4.83)
รองเท้าaddaหัวโต 5TD76 รองเท้าแตะหัวโต แบบสวม รองเท้าaddaหัวโต 5TD76 รองเท้าแตะหัวโต แบบสวม...
star5-0 (4.84)
O.O fashion  รองเท้าหัวโต แตะชาย รองเท้าหัวโตผู้ชาย นุ่ม พื้นหนา กันลื่น ใส่เดินสบาย  D92E047 O.O fashion รองเท้าหัวโต แตะชาย รองเท้าหัวโตผู้ชาย นุ่ม พื้นหนา กันลื...
star5-0 (4.91)
[ใส่โค้สNP9SPSH ลด20%] 🍎รองเท้าช้างดาวแท้ นันยาง ช้างดาว🍎 รองเท้าหูหนีบช้างดาวแท้100%สินค้าพร้อมส่ง ส่งเร็วมาก [ใส่โค้สNP9SPSH ลด20%] 🍎รองเท้าช้างดาวแท้ นันยาง ช้างดาว🍎 รองเท้าหูหนี...
star5-0 (4.8)
Deblu  รองเท้าแตะเดอบลู-เพื่อสุขภาพ รองเท้าลำลองผู้ชาย รุ่น M8902 Deblu รองเท้าแตะเดอบลู-เพื่อสุขภาพ รองเท้าลำลองผู้ชาย รุ่น M8902...
star5-0 (4.67)

หมวดหมู่ที่แนะนำ :

Rain Boots | Fashion Boots | Others |