Skip to content

Commit

Permalink
Merge branch 'master' of https://github.com/olkal/HX711_ADC
Browse files Browse the repository at this point in the history
  • Loading branch information
olkal committed Mar 28, 2019
2 parents 90a9b2f + bae88fc commit 0568e94
Showing 1 changed file with 7 additions and 6 deletions.
13 changes: 7 additions & 6 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,9 @@ Wires between HX711 and load cell should be twisted and kept as short as possibl
Most available HX711 modules seems to follow the reference design, but be aware that some modules are poorly designed with under-sized capacitors, and noisy readings.
The Sparkfun module seems to differ from most other available modules as it has some additional components for noise reduction.

Update 1.1.2:
- Added example sketch "Read_1x_load_cell_interrupt_driven", it can be useful to enable an interrupt to trigger the update function if you have other time consuming code in your sketch loop (i.e. writing to a graphic LCD display) that otherwise could affect the settling time

Update 1.1.0:
- Data set configuration (data set, number of samples) has been moved from HX711_ADC.h to the new file config.h
- Included "yield" in function tare() to avoid crash on ESP8266 if wiring is incorrect
Expand All @@ -36,10 +39,8 @@ Update 1.1.0:
- Added function getTareTimeoutFlag() for testing and debugging purpose
- Added function disableTareTimeout() for testing and debugging purpose
- Added function getSettlingTime() for testing and debugging purpose
- Added example sketch "HX711_ADC_Calibration" with option to save the calibration value to eeprom
- Added example sketch "HX711_ADC_Testing" with some of the above mentioned functions for tare timeout, samplerate, conversion time, etc
- In example sketches setup, option included to fetch calibration value from eeprom
- Added example sketch "Calibration" with option to save the calibration value to eeprom
- In example sketches setup, option included to retrieve calibration value from eeprom
- Added example sketch "Testing" with some of the above mentioned functions for tare timeout, samplerate, conversion time, etc


Update 1.0.2:
- Implemented requested function setTareOffset(long newoffset)
- Initializing of the index counter in the class declaration: readIndex = 0

0 comments on commit 0568e94

Please sign in to comment.