HX711 Tare problem

Greetings.

I have working HX711 and loadcell 1kg. No problem there.. i use GitHub - bogde/HX711: An Arduino library to interface the Avia Semiconductor HX711 24-Bit Analog-to-Digital Converter (ADC) for Weight Scales. library.

Problem is that if device restarts and i have for example 200gms load on scale... shows after restart weight 0kg.. but i would like even if you restart that weight would be same as before restart.

So i would like to somehow set scale to "remember" value of load after reset. Is that possible?

can we store the Tare/Offset values in EEPROM and use it in loop wherever required?

So i would like to somehow set scale to "remember" value of load after reset. Is that possible?

Yes

can we store the Tare/Offset values in EEPROM and use it in loop wherever required?

Yes.

can u help me sort out the problem ...plz :confused:

What problem?

Each time you press the Tare button you store the offset number into EEPROM.

In the setup function you restore the offset variable from the EEPROM.

Look up how to store the format of number you have into EEPROM.

As you haven’t told us anything about the code that is as specific as I can get.