Friends, here is simple sketch doing ONLY ONE thing it is printing raw not calibrated data from tension sensor
#include <Q2HX711.h>
Q2HX711 hx711(A1, A0);
void setup() {
Serial.begin(9600);
}
void loop() {
Serial.println(hx711.read());
}
Everything is ok, it prints right data with no drops or noises(tested for 6 hours). But if I add only one string to print before
Serial.print("0,");
Serial.println(hx711.read());
It begins print noisy data with big deviations, drops or splashes. There should be one more sensor(HMC588L) I removed it to test tension sensor but problem did not resolved. Tension is very important I need noise-free data(( It is driving me crazy >:(