From d291b300fcd0294c954aeb45ba0cb2cece91efc3 Mon Sep 17 00:00:00 2001 From: RJ Nowling Date: Thu, 30 Oct 2025 19:45:26 -0500 Subject: [PATCH 1/2] Add units for humidity I confirmed the humidity units, so add them to the API docs. --- docs/api.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/api.md b/docs/api.md index 7d9ccd1..5547606 100644 --- a/docs/api.md +++ b/docs/api.md @@ -146,7 +146,7 @@ Represents a Modulino Thermo module. #### Methods - **`float getHumidity()`** - Returns the humidity reading. + Returns the humidity reading as a percentage in the range 0 to 100. - **`float getTemperature()`** Returns the temperature reading in Celsius. From 64d8be6c8cb1b55ccefe4f5637416ac9a141e804 Mon Sep 17 00:00:00 2001 From: RJ Nowling Date: Thu, 30 Oct 2025 22:07:12 -0500 Subject: [PATCH 2/2] Specify humidity reading type Co-authored-by: Per Tillisch --- docs/api.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/api.md b/docs/api.md index 5547606..399a1d3 100644 --- a/docs/api.md +++ b/docs/api.md @@ -146,7 +146,7 @@ Represents a Modulino Thermo module. #### Methods - **`float getHumidity()`** - Returns the humidity reading as a percentage in the range 0 to 100. + Returns the relative humidity reading as a percentage in the range 0 to 100. - **`float getTemperature()`** Returns the temperature reading in Celsius.