Applicable to electronic scale, price computering scale, electronic platform scale, digital scale; parcel post scale, electronic balance and all varieties of commercial scales by single load cell.
Model: SEN128A3B
http://www.seeedstudio.com/depot/images/product/loadcell500.jpg
Note: Weight sensor output 0V when the load less than 150g,so we can not directly measure the load .My method is using a 200g local avoid measure blind spot.Read the analog data of 200g weight as no-load(0g),read the analog data of 700g weight as full load(500g).
void setup() { Serial.begin(9600); } void loop() { int value; value = analogRead(0); Serial.println(value); }