Skip to content

v1.1.5

Compare
Choose a tag to compare
@olkal olkal released this 09 May 21:01
· 32 commits to master since this release
  • Breaking change: The tare offset value is now calculated differently
  • Breaking change: The 1 microsecond SCK pin delay that was included in previous versions is now disabled as default. The delay can now be enabled from the config.h file if required
  • New functions: setSamplesInUse(int samples) and getSamplesInUse() makes it possible to manipulate/override the number of samples in use at the time to a lower value than defined in the config.h file. This can be used to manipulate smoothing avarage resolution and settling time. Note that the memory usage will not be reduced by using this function. (@rafaellehmkuhl @jpk73 #12
  • Timeout in startMultiple() implemented (@nightflyer88 #23)
  • Removed functions not in use getSingleConversion() and getSingleConversionRaw() that was still listed in the HX711_ADC.h file (@jpk73 #25)
  • Keyword correction (@kbickham #27)
  • From the config.h file you can now disable interrupts in a section of the code to avoid HX711 "power down" mode. This can be useful if you have other time consuming (>60μs) interrupt routines that could be triggered while the sck pin is high
  • Rename ISR function and add "digitalPinToInterrupt" in example file "Read_1x_load_cell_interrupt_driven.ino" (@Jodaille #26)