Giter VIP home page Giter VIP logo

Comments (5)

olkal avatar olkal commented on June 1, 2024

Hi, thanks!
If you need to restart the micro controller without loosing the old value I suggest that you save the tareoffset to eeprom and then restore it after restart:

//before restart:
long tare_offset = LoadCell.getTareOffset(); //save this value to eeprom

//after restart, restore the previous value from eeprom and set:
LoadCell.setTareOffset(tare_offset);

from hx711_adc.

sidikhanrei avatar sidikhanrei commented on June 1, 2024

Hi Thank you,
I will try it tomorrow.

Thank you for your fast respond.

from hx711_adc.

sidikhanrei avatar sidikhanrei commented on June 1, 2024

Hi, another questions is, how to start without LoadCell.start() and directly calculating object mass when serial monitor is opened?

from hx711_adc.

olkal avatar olkal commented on June 1, 2024

Hi, another questions is, how to start without LoadCell.start() and directly calculating object mass when serial monitor is opened?

Try to put the code below in the setup() part of your sketch so that it runs before the loop is startet. That should fill up the data set. I will make a library function for this in the next release.

///assuming that the dout pin is connected to D4:
  int s = LoadCell.getSamplesInUse() + 2; // get number of samples in data set
  while ( s > 0 ) {
    LoadCell.update();
    yield();
    if (digitalRead(4) == LOW) { // HX711 dout pin is pulled low when a new conversion is ready
      LoadCell.getData(); // add data to the set and start next conversion
      s--;
    }
  }

from hx711_adc.

olkal avatar olkal commented on June 1, 2024

In latest release 1.2.0 there are new start() functions with selectable tare/no tare. There are also new functions for refreshing the dataset before readiing in loop, after i.e. restart/reset

from hx711_adc.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.