-
Notifications
You must be signed in to change notification settings - Fork 546
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
HX711 Read returning different value with same load cell but on different MCU #61
Comments
What exactly are you trying to do with this operation? Surely it is easier to have the loop do this (swap the order):
The first shift does nothing as the retVal starts with 0. |
retVal = retVal << (1 && j); However,the suggestion you made to swap the statements is valid. |
typo correction "...undersatand how this would result in ... " |
Agreed, it seems like it "should" work, but it depends on how the compiler treats logical values. Pretty sure that isn't clearly defined. |
As per HX711 datasheet the range of values should be between 800000h (MIN) and 7FFFFFh (MAX). But as you can see i'm getting 8 digit values on the other board, though in Arduino it is 7 digit. |
I can try retVal = retVal << (j?1:0); But not convinced it will solve. |
So you're running exactly the same code on both? Both via Arduino IDE? Same gcc version? The only thing that worried me in you original code I highlighted, as it could have led to incorrect shifting. I've seen various compiler bugs over the years, including problems with shifting by 0. In reality you should be sign extending the values = i.e. 800000h => FF800000h to get a 32-bit signed.
Just picking two of your example readings: Something you're doing must be different for these to be read differently from the HX711 on the two platforms. |
BTW |
Hi, sorry for the delayed response, was sucked into something else. SETUPThe same Loadcell and HX711 is used. Once Loadcell is connected to HX711 it remains that way. HX711 connected to NRF first and readings taken. TABULATED READINGSQUESTIONSa) Why is the HX711 readings -ve when read via Arduino and +ve when read via NRF(CortexMO) |
Forgot to paste the code. Here it is.
} |
The values returned by the Arduino look completely normal. The values read from the HX711 need to be sign extended as I've explained above. So 0x800000 is actually 0xff800000 or -8388608 decimal, and 0x7fffff is 8388607, giving a full 24 bit range of 16777216. Of course, you don't typically get that full dynamic range. Thus, your values in the table above starting with FF when sign extended to 32 bit will be smaller negative values. At 0g you have 0xfffedc77 which is -74633. That is your zero offset (tare), and a small negative offset is nothing to worry about. At 700g you have 94294 - -74633 or a total of 168927, which means approx 241 counts per gram. Why your code on the Cortex M0 isn't working I can't exactly explain, nor have the time to try reproduce, but it clearly is only half the expected value. The only thought I have other than a hard to spot bug, is that the Cortex M0 is pulsing the clock and reading the result too fast for the HX711. Actually, you could try moving the digitalRead() to after the falling pulse on PD_SCK and see if that helps.
Any reason you aren't using the code from the library (which is known to work, and does sign extension), rather than writing your own read function? |
hi there, Any other suggestions you may have ? If you would like to run some experiments, please tell me , i can do it. Below is the code of HX711::read().
} |
It just doesn't appear to be reading all 24 bits. |
i think i have some nrf52832 too, and a (cheap) logic analyser, i'll try to look into this if time permits. thanks @electrokean for all your effort. |
i just checked and unfortunately i don't have the NRF52832 board. sorry. |
hi Electrokean adn Bogde , |
@mashhashkarma yes, that will help. |
hi @mashhashkarma , did you solve the issue? did you get the logic analyzer? do you still need any help with this? fyi, i only have this: http://dangerousprototypes.com/blog/open-logic-sniffer/ (i'm not sure if it's better or worse than the one you found) |
hi Bogde, havent got the chance to try out the logic analzer yet .... been sucked into some other urgent matters. |
sure, no problem, i'll keep it open. |
@bogde Is your library supported on nRF52? I'm using this core: https://github.com/sandeepmistry/arduino-nRF5 . To my understanding, as long as they have implemented Arduino HAL, all libraries should work on target. Isn't it right? If so why is there a https://github.com/bogde/HX711#hal-support in the readme? |
Hi Pooya, [1] lists two items regarding support for SAMD, however those have not been tested. We will be happy to hear if the library works properly on a nRF52, so please get back to us. The background on needing to implement specific support for ESP8266 and ESP32 is that those are considered to be Lines 36 to 62 in 75dfed4
With kind regards, |
@amotl void printHX711() {
// TODO check if available here instead of true
if (true) {
Serial.print("Reading: ");
r_weight = scale.get_units(1);
/* if (units < 0) { */
/* units = 0.00; */
/* } */
Serial.print(r_weight);
Serial.print(" grams");
Serial.print(" calibration_factor: ");
Serial.println(calibration_factor);
} else {
Serial.println("HX711 not found.");
}
}
Here are the snapshots from my logic analyzer in four zoom levels. If I need to perform other experiments or if there is a "stress-test script" that should be tested, don't hesitate to ask me. |
Hi Pooya, sorry that I am probably not able to contribute something significant here because I am not an electronic engineer at all. However, from a software perspective, have you been able to confirm that the code running on your MCU actually uses the If so, you might want to fiddle with the With kind regards, |
hi Bogde,
Thank you for your HX711 library code. I used it on HX711 and it worked well.
I tried to used same on another MCU.
I observed that the values returned by Read() on Arduino is significantly different from that on another board (NRF52832) though the HX711 module and the loadcell is the same. Yes, have used 3.3v in both.
Following are the sample values returned by Read() as recorded on each. Please share your opinion on what maybe going wrong. I have also pasted the code of long HX711::read() below. I have modified it to use bit operations than nested for loop to form the 24 bit value. Kindly check.
As recorded on Arduino:
HXvLOG:HX711Read():RetVal 8315205
HXvLOG:HX711Read():RetVal 8315038
HXvLOG:HX711Read():RetVal 8314981
HXvLOG:HX711Read():RetVal 8315190
HXvLOG:HX711Read():RetVal 8315342
HXvLOG:HX711Read():RetVal 8315221
HXvLOG:HX711Read():RetVal 8315107
HXvLOG:HX711Read():RetVal 8314698
HXvLOG:HX711Read():RetVal 8315440
HXvLOG:HX711Read():RetVal 8315588
As recorded on other board(NRF52832)
HXvLOG:HX711Read():RetVal 16746359
HXvLOG:HX711Read():RetVal 16746363
HXvLOG:HX711Read():RetVal 16746310
HXvLOG:HX711Read():RetVal 16746301
HXvLOG:HX711Read():RetVal 16746294
HXvLOG:HX711Read():RetVal 16746298
HXvLOG:HX711Read():RetVal 16746318
HXvLOG:HX711Read():RetVal 16746303
HXvLOG:HX711Read():RetVal 16746311
HXvLOG:HX711Read():RetVal 16746311
Following is the source code -->
long HX711::read() {
}
The text was updated successfully, but these errors were encountered: