First of I hooked up two BME280. This is possible due to the fact that it is possible to re-address them using a simple resolder+cut (see picture below; red=cut, green=solder).

First I added the two BME280 according to basic settings:

Then I set up a Dummy device according to this set up:

It happened to have this task number:

I then fixed this rule (please observe that my obscure nomenclature leave a lot to desire):
Code: Select all
on TempHumidityPressure_OUTSIDE#%RH do
TaskValueSet,7,1,[TempHumidityPressure_OUTSIDE#°C]-(100-[TempHumidityPressure_OUTSIDE#%RH])/5
if TempHumidityPressure_OUTSIDE#%RH>49
Publish %sysname%/DewPoint_OUTSIDE/°C,[Dew_point#°C1]
else
Publish %sysname%/DewPoint_OUTSIDE/°C,[Dew_point#°C1]*
endif
endon
on TempHumidityPressure_INSIDE#%RH do
TaskValueSet,7,2,[TempHumidityPressure_INSIDE#°C]-(100-[TempHumidityPressure_INSIDE#%RH])/5
if TempHumidityPressure_INSIDE#%RH>49
Publish %sysname%/DewPoint_INSIDE/°C,[Dew_point#°C2]
else
Publish %sysname%/DewPoint_INSIDE/°C,[Dew_point#°C2]*
endif
endon
So there's how you add dew point to your nodes!
