Skip to content

Commit 3a83e6b

Browse files
committed
chore(config): back to default values
1 parent a053c0c commit 3a83e6b

File tree

3 files changed

+5
-6
lines changed

3 files changed

+5
-6
lines changed

AquaMQTT/include/config/Configuration.h

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,7 @@ constexpr bool OVERRIDE_TIME_AND_DATE_IN_MITM = true;
5757
/**
5858
* Choose to publish raw messages represented as hex-string on debug mqtt topics
5959
*/
60-
constexpr bool DEBUG_RAW_SERIAL_MESSAGES = true;
60+
constexpr bool DEBUG_RAW_SERIAL_MESSAGES = false;
6161

6262
/**
6363
* Choose to collect the message sequence and frequencies in LISTENER mode.
@@ -80,15 +80,15 @@ constexpr bool DEBUG_PUBLISH_DROPPED_MESSAGES = false;
8080
* topics "msgHandled, msgUnhandled, msgCRCNOK and msgSent" topics for each serial
8181
* channel (hmi/main or listener),
8282
*/
83-
constexpr bool MQTT_PUBLISH_SERIAL_STATISTICS = true;
83+
constexpr bool MQTT_PUBLISH_SERIAL_STATISTICS = false;
8484

8585
/**
8686
* Choose to publish time and date used by the heatpump. This is mainly for debugging
8787
* if the time and date override from AquaMQTT works as expected. You may want to
8888
* enable this, if you are customizing the NTP timezone or server or even trying to
8989
* use the RTC module from the AquaMQTT board.
9090
*/
91-
constexpr bool MQTT_PUBLISH_HEATPUMP_TIME_AND_DATE = true;
91+
constexpr bool MQTT_PUBLISH_HEATPUMP_TIME_AND_DATE = false;
9292

9393
/**
9494
* Change the time interval where all known attributes are re-published to the MQTT broker.
@@ -105,7 +105,7 @@ constexpr uint16_t MQTT_STATS_UPDATE_MS = 5000;
105105
* Note: Filters are only applied within the MQTT channel, the communication between HMI and Controller
106106
* are still using raw temperature values and is not altered.
107107
*/
108-
constexpr bool MQTT_FILTER_TEMPERATURE_NOISE = false;
108+
constexpr bool MQTT_FILTER_TEMPERATURE_NOISE = true;
109109

110110
/**
111111
* Parametrize kalman filter for reading temperature values

AquaMQTT/include/message/MessageConstants.h

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,6 @@
77

88
namespace aquamqtt::message
99
{
10-
class IHMIMessage;
1110
constexpr uint8_t HEATPUMP_MAX_FRAME_LENGTH = 70;
1211

1312
constexpr uint8_t MESSAGE_PERIOD_MS = 100;

AquaMQTT/platformio.ini

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ test_framework = googletest
1414
#upload_protocol = esptool
1515
# uncomment the below lines to use over the air update
1616
#upload_protocol = espota
17-
#upload_port = 192.168.188.62
17+
#upload_port = 192.168.188.85
1818
lib_deps =
1919
locoduino/RingBuffer@1.0.5
2020
FrankBoesing/FastCRC@1.41.0

0 commit comments

Comments
 (0)