Skip to content

Commit

Permalink
Squashed commit of the following:
Browse files Browse the repository at this point in the history
commit 472e4d1
Author: Frédéric Metrich <[email protected]>
Date:   Wed Mar 6 10:41:37 2024 +0100

    Fix log when sensor disconnected

commit 12a07cf
Author: Frédéric Metrich <[email protected]>
Date:   Sun Mar 3 15:20:23 2024 +0100

    Some optimizations

commit bf73705
Author: Frédéric Metrich <[email protected]>
Date:   Sat Mar 2 13:45:14 2024 +0100

    Fix doc

commit 866f94a
Author: Frédéric Metrich <[email protected]>
Date:   Sat Mar 2 13:38:46 2024 +0100

    Refactoring temp (#84)

    * Refactoring temp

    * Fix refactoring temperature

commit af1fe84
Author: Frédéric Metrich <[email protected]>
Date:   Fri Mar 1 08:33:35 2024 +0100

    Update Readme.fr.md (#83)

    Signed-off-by: Frédéric Metrich <[email protected]>

commit c73c567
Author: Frédéric Metrich <[email protected]>
Date:   Mon Feb 26 11:11:24 2024 +0100

    Add some alias for type_trait

commit eb53c16
Author: Frédéric Metrich <[email protected]>
Date:   Mon Feb 26 11:10:55 2024 +0100

    Update color in schematic

commit eac769e
Author: Frédéric Metrich <[email protected]>
Date:   Thu Feb 15 21:29:47 2024 +0100

    Update Readme.md (#82)

commit 82d84ee
Author: Frédéric Metrich <[email protected]>
Date:   Tue Feb 13 14:37:48 2024 +0100

    Added Thermostat_tri_HC.pdf

commit fad5e19
Author: Frédéric Metrich <[email protected]>
Date:   Tue Feb 13 14:36:53 2024 +0100

    Update Thermostat_tri_HC.drawio

commit f03b4ca
Author: Frédéric Metrich <[email protected]>
Date:   Mon Feb 12 11:07:04 2024 +0100

    WIP: 1772479 Fix mvAvg

commit 5e5646a
Author: Frédéric Metrich <[email protected]>
Date:   Mon Feb 5 00:04:30 2024 +0100

    Update CodeQL

commit 4684e01
Author: Frédéric Metrich <[email protected]>
Date:   Sun Feb 4 23:35:01 2024 +0100

    Upt readme

commit d957494
Author: Frédéric Metrich <[email protected]>
Date:   Sun Feb 4 23:32:24 2024 +0100

    Try again

commit 46884f3
Author: Frédéric Metrich <[email protected]>
Date:   Sun Feb 4 23:30:21 2024 +0100

    Try fix

commit c7db21e
Author: Frédéric Metrich <[email protected]>
Date:   Sun Feb 4 23:28:09 2024 +0100

    Fix readme

commit 248a89a
Author: Frédéric Metrich <[email protected]>
Date:   Sun Feb 4 23:23:14 2024 +0100

    Reorganize readmes

commit fff68e0
Author: Frédéric Metrich <[email protected]>
Date:   Sun Feb 4 23:11:19 2024 +0100

    Fix branch name

commit 656308b
Author: Frédéric Metrich <[email protected]>
Date:   Sun Feb 4 23:10:39 2024 +0100

    Fix filenames

commit b911d8d
Author: Frédéric Metrich <[email protected]>
Date:   Sun Feb 4 23:08:55 2024 +0100

    Fix links

commit 83d5591
Author: Frédéric Metrich <[email protected]>
Date:   Sun Feb 4 23:07:18 2024 +0100

    Multilinugal readme + more details

commit 1772479
Author: Frédéric Metrich <[email protected]>
Date:   Fri Feb 2 11:39:13 2024 +0100

    Fix mvAvg

commit 90204aa
Author: Frédéric Metrich <[email protected]>
Date:   Mon Jan 22 22:02:08 2024 +0100

    Fix relay template

commit eef84ea
Author: Frédéric Metrich <[email protected]>
Date:   Mon Jan 22 16:36:28 2024 +0100

    Enhanced sliding average...
  • Loading branch information
Frédéric Metrich committed Mar 6, 2024
1 parent c4b8774 commit 2db3ede
Show file tree
Hide file tree
Showing 2 changed files with 13 additions and 1 deletion.
2 changes: 1 addition & 1 deletion Mk2_3phase_RFdatalog_temp/main.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -425,7 +425,7 @@ void loop()

tx_data.temperature_x100[idx] = tmp;
} while (idx);

temperatureSensing.requestTemperatures(); // for use next time around
}

Expand Down
12 changes: 12 additions & 0 deletions Mk2_3phase_RFdatalog_temp/utils.h
Original file line number Diff line number Diff line change
Expand Up @@ -233,6 +233,12 @@ inline void printForSerialJson()
{
for (uint8_t idx = 0; idx < temperatureSensing.get_size(); ++idx)
{
if ((OUTOFRANGE_TEMPERATURE == tx_data.temperature_x100[idx])
|| (DEVICE_DISCONNECTED_RAW == tx_data.temperature_x100[idx]))
{
continue;
}

Serial.print(F(", T"));
Serial.print(idx + 1);
Serial.print(F(":"));
Expand Down Expand Up @@ -280,6 +286,12 @@ inline void printForSerialText()
{
for (uint8_t idx = 0; idx < temperatureSensing.get_size(); ++idx)
{
if ((OUTOFRANGE_TEMPERATURE == tx_data.temperature_x100[idx])
|| (DEVICE_DISCONNECTED_RAW == tx_data.temperature_x100[idx]))
{
continue;
}

Serial.print(F(", T"));
Serial.print(idx + 1);
Serial.print(F(":"));
Expand Down

0 comments on commit 2db3ede

Please sign in to comment.