From b9daa7d055661e566c399cc1ac999f00a3e7d6ee Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ludovic=20BOU=C3=89?= Date: Tue, 7 May 2024 16:22:35 +0200 Subject: [PATCH] Fix typo in matter_flow_sensor.ino Fix typo in matter_flow_sensor.ino --- .../Matter/examples/matter_flow_sensor/matter_flow_sensor.ino | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libraries/Matter/examples/matter_flow_sensor/matter_flow_sensor.ino b/libraries/Matter/examples/matter_flow_sensor/matter_flow_sensor.ino index 9738791..d4b3630 100644 --- a/libraries/Matter/examples/matter_flow_sensor/matter_flow_sensor.ino +++ b/libraries/Matter/examples/matter_flow_sensor/matter_flow_sensor.ino @@ -60,7 +60,7 @@ void loop() // Publish the pressure value - you can also use 'matter_flow_sensor = current_flow' matter_flow_sensor.set_measured_value_cubic_meters_per_hour(current_flow); Serial.printf("Current flow: %.02lf m3/h\n", current_flow); - // Increase the humidity value + // Increase the flow value current_flow += 0.5f; if (current_flow > 20.0f) { current_flow = 0.0f;