Skip to content

Commit 0ec5735

Browse files
committed
0.3.5 HX711_MP
1 parent ed30274 commit 0ec5735

16 files changed

Lines changed: 29 additions & 21 deletions

File tree

libraries/HX711_MP/.github/workflows/arduino-lint.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ jobs:
66
runs-on: ubuntu-latest
77
timeout-minutes: 5
88
steps:
9-
- uses: actions/checkout@v5
9+
- uses: actions/checkout@v6
1010
- uses: arduino/arduino-lint-action@v2
1111
with:
1212
library-manager: update

libraries/HX711_MP/.github/workflows/arduino_test_runner.yml

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,9 +6,8 @@ jobs:
66
runTest:
77
runs-on: ubuntu-latest
88
timeout-minutes: 20
9-
109
steps:
11-
- uses: actions/checkout@v5
10+
- uses: actions/checkout@v6
1211
- uses: ruby/setup-ruby@v1
1312
with:
1413
ruby-version: 2.6

libraries/HX711_MP/.github/workflows/jsoncheck.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ jobs:
1313
runs-on: ubuntu-latest
1414
timeout-minutes: 5
1515
steps:
16-
- uses: actions/checkout@v5
16+
- uses: actions/checkout@v6
1717
- name: json-syntax-check
1818
uses: limitusus/json-syntax-check@v2
1919
with:

libraries/HX711_MP/CHANGELOG..md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,11 @@ The format is based on [Keep a Changelog](http://keepachangelog.com/)
55
and this project adheres to [Semantic Versioning](http://semver.org/).
66

77

8+
## [0.3.5] - 2026-06-28
9+
- rename examples
10+
- update GitHub actions
11+
- minor edits
12+
813
## [0.3.4] - 2025-09-16
914
- fix #11, HX711 rate pin code (HX711 - #70)
1015
- add a doReset parameter to begin() to improve start up time.

libraries/HX711_MP/HX711_MP.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
//
22
// FILE: HX711_MP.cpp
33
// AUTHOR: Rob Tillaart
4-
// VERSION: 0.3.4
4+
// VERSION: 0.3.5
55
// PURPOSE: Library for load cells for UNO
66
// URL: https://github.com/RobTillaart/HX711_MP
77
// URL: https://github.com/RobTillaart/HX711

libraries/HX711_MP/HX711_MP.h

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
//
33
// FILE: HX711_MP.h
44
// AUTHOR: Rob Tillaart
5-
// VERSION: 0.3.4
5+
// VERSION: 0.3.5
66
// PURPOSE: Library for load cells for Arduino
77
// URL: https://github.com/RobTillaart/HX711_MP
88
// URL: https://github.com/RobTillaart/HX711
@@ -15,7 +15,7 @@
1515

1616
#include "Arduino.h"
1717

18-
#define HX711_MP_LIB_VERSION (F("0.3.4"))
18+
#define HX711_MP_LIB_VERSION (F("0.3.5"))
1919

2020

2121
const uint8_t HX711_AVERAGE_MODE = 0x00;

libraries/HX711_MP/LICENSE

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
MIT License
22

3-
Copyright (c) 2019-2025 Rob Tillaart
3+
Copyright (c) 2019-2026 Rob Tillaart
44
Copyright (c) 2018 Bogdan Necula
55

66
Permission is hereby granted, free of charge, to any person obtaining a copy

libraries/HX711_MP/README.md

Lines changed: 8 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -35,6 +35,8 @@ interpolate beyond the calibration data points.**
3535

3636
If problems occur or there are questions, please open an issue at GitHub.
3737

38+
Feedback as always is welcome.
39+
3840

3941
### 10 or 80 SPS
4042

@@ -64,11 +66,13 @@ This is a close "relative" of the HX711 that allows to set the SPS to
6466

6567
### Related
6668

67-
- https://github.com/bogde/HX711
69+
- https://github.com/bogde/HX711
70+
- https://github.com/bogde/HX711/issues/172 - hx711 module design fault fix
6871
- https://github.com/RobTillaart/weight (conversions kg <> stone etc.)
6972
- https://github.com/RobTillaart/HX710AB
70-
- https://github.com/RobTillaart/HX711
71-
- https://github.com/RobTillaart/HX711_MP multipoint calibration version.
73+
- https://github.com/RobTillaart/HX711
74+
- https://github.com/RobTillaart/HX711_MP MP = multipoint calibration version.
75+
- https://github.com/RobTillaart/printHelpers engineering and scientific notation.
7276

7377
Discussion about resolution of the ADC
7478
- https://forum.arduino.cc/t/scale-from-50-kg-to-5000kg-what-adc/1139710
@@ -303,7 +307,7 @@ If not configured the other functions won't work.
303307
- A+/A- uses gain of 128 or 64
304308
- B+/B- uses gain of 32
305309

306-
Colour scheme wires of two devices.
310+
Colour scheme wires of two devices. Check the datasheet of your device!
307311

308312
| HX711 Pin | Colour dev 1 | Colour dev 2 |
309313
|:-----------:|:---------------:|:---------------:|

libraries/HX711_MP/examples/HX_MP_calibrate/HX_MP_calibrate.ino renamed to libraries/HX711_MP/examples/HX711_MP_calibrate/HX711_MP_calibrate.ino

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
//
2-
// FILE: HX_MP_calibrate.ino
2+
// FILE: HX711_MP_calibrate.ino
33
// AUTHOR: Rob Tillaart
44
// PURPOSE: HX711_MP sketch to help calibration.
55
// URL: https://github.com/RobTillaart/HX711_MP

libraries/HX711_MP/examples/HX_MP_performance/HX_MP_performance.ino renamed to libraries/HX711_MP/examples/HX711_MP_performance/HX711_MP_performance.ino

File renamed without changes.

0 commit comments

Comments
 (0)