From 9d5435a1b6171112a1a5190b0802bd7324f4502e Mon Sep 17 00:00:00 2001 From: fvanroie <15969459+fvanroie@users.noreply.github.com> Date: Fri, 8 Oct 2021 22:35:55 +0200 Subject: [PATCH] Keep the function names I removed the code, but kept the names of the function --- src/custom/my_custom_fan_template.cpp | 21 +++++++++++++++++++++ 1 file changed, 21 insertions(+) diff --git a/src/custom/my_custom_fan_template.cpp b/src/custom/my_custom_fan_template.cpp index 03fc171e..a7334388 100644 --- a/src/custom/my_custom_fan_template.cpp +++ b/src/custom/my_custom_fan_template.cpp @@ -48,6 +48,27 @@ void custom_loop() } } +void custom_every_second() +{ + // Unused +} + +void custom_every_5seconds() +{ + // Unused +} + +bool custom_pin_in_use(uint pin) +{ + // no pins are used + return false; +} + +void custom_get_sensors(JsonDocument& doc) +{ + // Unused +} + /* Receive custom topic & payload messages */ void custom_topic_payload(const char* topic, const char* payload, uint8_t source) {