Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

No variation in output from HX711 module #205

Closed
francescomosconi opened this issue Jun 30, 2021 · 0 comments
Closed

No variation in output from HX711 module #205

francescomosconi opened this issue Jun 30, 2021 · 0 comments

Comments

@francescomosconi
Copy link

francescomosconi commented Jun 30, 2021

Hi everyone Github members,
I'm new to using Arduino, I'm working to get the deformation of an object by two strain gauges, so with an half-bridge.
The problem is that I don't have any variation in the output from the HX711 module.
Would be great if I could get some advice as to why I'm not getting any results and do let me know if I can provide more information to get assistance.

Schermata 2021-06-30 alle 18 50 02

Schermata 2021-06-30 alle 17 54 09

` #include "HX711.h"

// HX711 circuit wiring
const int LOADCELL_DOUT_PIN = 2;
const int LOADCELL_SCK_PIN = 3;

HX711 scale;

void setup() {
Serial.begin(57600);
scale.begin(LOADCELL_DOUT_PIN, LOADCELL_SCK_PIN);
}

void loop() {

if (scale.is_ready()) {
long reading = scale.read();
Serial.print("HX711 reading: ");
Serial.println(reading);
} else {
Serial.println("HX711 not found.");
}

delay(1000);

}`

@francescomosconi francescomosconi changed the title No variation in output from with HX711 No variation in output from HX711 module Jun 30, 2021
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant