Load cell example code

Library: Library: HX711

Code:

#include <Hx711.h>
Hx711 scale(A2, A3);

void setup() {
Serial.begin(9600);
}

void loop() {
Serial.print(scale.getGram(), 1);
Serial.println(" g");
delay(200);
}

This is code for one load cell. I haven't tried 2 yet, but I heard that if you get 2 working it will be easy to get to 3