From 0dc0866632a051a6af484605fa9699b4ca32520d Mon Sep 17 00:00:00 2001 From: Rob Tillaart Date: Mon, 17 Jun 2024 12:31:09 +0200 Subject: [PATCH] refactor constructor after fix #50 --- HX711.h | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/HX711.h b/HX711.h index 7eaf696..d2b31a5 100644 --- a/HX711.h +++ b/HX711.h @@ -9,7 +9,8 @@ // // NOTES // Superset of interface of HX711 class of Bogde -// float instead of long as float has 23 bits mantissa. +// uses float instead of long as float has 23 bits mantissa +// which almost perfectly matches the 24 bit ADC. #include "Arduino.h"