Browse Source
Merge pull request #1662 from Niek/relay-mqtt-reporting
Fix building without MQTT_SUPPORT
rules-rpn
Xose Pérez
5 years ago
committed by
GitHub
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with
6 additions and
0 deletions
-
code/espurna/mqtt.ino
|
|
@ -870,4 +870,10 @@ void mqttLoop() { |
|
|
|
|
|
|
|
} |
|
|
|
|
|
|
|
#else
|
|
|
|
|
|
|
|
bool mqttForward() { |
|
|
|
return false; |
|
|
|
} |
|
|
|
|
|
|
|
#endif // MQTT_SUPPORT
|