pezinek
4 years ago
committed by
GitHub
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with
4 additions and
3 deletions
-
code/espurna/main.cpp
|
|
@ -192,6 +192,10 @@ void setup() { |
|
|
|
#if LIGHT_PROVIDER != LIGHT_PROVIDER_NONE
|
|
|
|
lightSetup(); |
|
|
|
#endif
|
|
|
|
// rpnSetup must be called before relaySetup
|
|
|
|
#if RPN_RULES_SUPPORT
|
|
|
|
rpnSetup(); |
|
|
|
#endif
|
|
|
|
#if RELAY_SUPPORT
|
|
|
|
relaySetup(); |
|
|
|
#endif
|
|
|
@ -262,9 +266,6 @@ void setup() { |
|
|
|
#if SCHEDULER_SUPPORT
|
|
|
|
schSetup(); |
|
|
|
#endif
|
|
|
|
#if RPN_RULES_SUPPORT
|
|
|
|
rpnSetup(); |
|
|
|
#endif
|
|
|
|
#if UART_MQTT_SUPPORT
|
|
|
|
uartmqttSetup(); |
|
|
|
#endif
|
|
|
|