PlatformaIO
#51
-
What could be the problem? When compiling, it gives such an error |
Beta Was this translation helpful? Give feedback.
Answered by
rednblkx
Apr 15, 2024
Replies: 1 comment 5 replies
-
Not errors, unless they are for some reason preventing you from compiling, they are just warnings as also clearly denoted. |
Beta Was this translation helpful? Give feedback.
5 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
basically what @ihrapsa said.
But i want to explain a couple of things, since it does change to unlock and not lock, i assume you enabled
MQTT_HOMEKEY_ALWAYS_UNLOCK
as normally it doesn't do anything, this option makes it so it publishes the value 0 for UNLOCK to theMQTT_STATE_TOPIC
mqtt topic and also updates the homekit entity to Unlocked.In case you tried to enable both
MQTT_HOMEKEY_ALWAYS_UNLOCK
andMQTT_HOMEKEY_ALWAYS_LOCK
, note that's not possible since that wouldn't make sense and also the code checks with an "if else" ifMQTT_HOMEKEY_ALWAYS_UNLOCK
is enable else ifMQTT_HOMEKEY_ALWAYS_LOCK
is enabled.