benzino77 / tasmocompiler

Web GUI for custom Tasmota compilation
MIT License
478 stars 143 forks source link

BME680 Sensor #402

Closed bobybobybob closed 1 month ago

bobybobybob commented 1 month ago

I don't know if this is a problem of the compiler or of Tasmota itself.

ESP32 Generic, leave everything as in the default settings. In the details

define USE_I2C

define USE_ENS16x

define USE_SCD40

define USE_BH1750

define USE_BME68X

define USE_SEN5X

define USE_EXPRESSION

define SUPPORT_IF_STATEMENT

The BME680 sensor is not displayed in Tasmota.

It only appears when I also add #define USE_BMP.

benzino77 commented 1 month ago

Hi,

BME68X is not included in any feature group I suppose. Have a look at features description

benzino77 commented 1 month ago

Try the development version of TasmoCompiler. It should now include BME68x in Temp-Hum-Pres feature group.

bobybobybob commented 1 month ago

Sorry, I have to run everything through a translator and write about it too. The Tasmota people write https://tasmota.github.io/docs/BME680/

: When compiling your build add the following to user_config_override.h:

ifndef USE_BME68X

define USE_BME68X // Enable support for BME680/BME688 sensor using Bosch BME68x library (+6k9 code)

endif

With other sensor things this has also worked so far with your very useful software.

bvc

bobybobybob commented 1 month ago

Sorry, I have only just seen your latest message. thank you for your support. I really like your software.

benzino77 commented 1 month ago
#ifndef USE_BME68X
#define USE_BME68X // Enable support for BME680/BME688 sensor using Bosch BME68x library (+6k9 code)
#endif

TasmoCompiler should now include those lines ;)