Tasmota with only BME280 - compile config into firmware #24589
-
|
Hello instead of using in
which is the whole sensors pre-built, but only: And how can I compile my GPIO configuration into the firmware? It took me a while (and several useless compilations) to understand, that if I change to But I dont want to edit the Configuration manually (I need 42 ESPs with the same firmware), I want to have it already in my firmware. But how? Thanks.frank |
Beta Was this translation helpful? Give feedback.
Replies: 4 comments 5 replies
-
|
In Compiling Doc I just found in USER_BACKLOG section the example: |
Beta Was this translation helpful? Give feedback.
-
|
To have gpios configured at build time, create a template in the web UI, and set it using the symbol Again and again, forget all that crap you got from Grok (or whatever guessing method). There exists no To have a build including the 4M board setup for a file system, the simplest is to build Note that with a 4M build, you do not need to have If you do not actually need the extra features with a 4M build (like the file system), you could also build |
Beta Was this translation helpful? Give feedback.
-
|
OK then, I'll go for the tasmota-sensors.bin which already worked with my sensor.
|
Beta Was this translation helpful? Give feedback.
-
|
OK then, it works with this in my and this in my Next thing is the TelePeriod, I need 30 seconds, default is 300 but I need an MQTT value every 30 seconds. But I am very sceptical, if this is not some hoax again. How is it really done? EDIT: INCREDIBLE! The AI was right! That works 👍 |
Beta Was this translation helpful? Give feedback.

To have gpios configured at build time, create a template in the web UI, and set it using the symbol
USER_TEMPLATE. Default-enabled with#define MODULE USER_MODULE. This is what I'd recommend instead of any use ofWebGetConfiginUSER_BACKLOG(unless you have more complex updates).Again and again, forget all that crap you got from Grok (or whatever guessing method). There exists no
USE_BME280symbol, this is merely a hallucination. The driver can be included withUSE_BMPinstead.To have a build including the 4M board setup for a file system, the simplest is to build
tasmota-4Mafter having done all of your other defaults updates (including#define USE_BMP) inuser_config_override.h, mea…