You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
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
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)