-
I would like a way to configure GPIOs into my private builds.
But since coding to a lot deep internals this method seems to break quite often. The latest be 9.2.0.1 does not seem to like this code and is reset my configuration. Is there a better way to build the configuration into my private builds? thanks |
Beta Was this translation helpful? Give feedback.
Replies: 4 comments 6 replies
-
Did you ever looked for command template or using define USER_TEMPLATE. Learn how to use it once and you are done. |
Beta Was this translation helpful? Give feedback.
-
A example is here https://github.com/arendst/Tasmota/blob/development/tasmota/my_user_config.h#L60 |
Beta Was this translation helpful? Give feedback.
-
Use the template function and you get all values, no manual counting. Just copy and paste. See docu https://tasmota.github.io/docs/Templates/ |
Beta Was this translation helpful? Give feedback.
-
user_config_override.h is used at compile time and the settings here are used. This file is the place for ALL changed user settings. |
Beta Was this translation helpful? Give feedback.
Did you ever looked for command template or using define USER_TEMPLATE.
Learn how to use it once and you are done.