Keep the function names

I removed the code, but kept the names of the function
This commit is contained in:
fvanroie 2021-10-08 22:35:55 +02:00 committed by GitHub
parent 5a7c270cb2
commit 9d5435a1b6
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -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)
{