Page 1 of 1
BMP085 ESPEasy
Posted: Thursday 21 July 2016 15:37
by robpijpers
I have a BMP085 sensor (pressure and temp) attached to a NodeMCU board running ESPeasy that sends the data over to Domoticz.
I can not find a useful virtual sensor to only show the pressure.
Is there a way to create a custom virtual sensor or another way to achieve this?
Thx, Rob
Re: BMP085 ESPEasy
Posted: Friday 22 July 2016 11:20
by Derik

- ScreenShot131.jpg (44.06 KiB) Viewed 4028 times
Re: BMP085 ESPEasy
Posted: Saturday 08 October 2016 18:48
by tuspam
up
Re: BMP085 ESPEasy
Posted: Wednesday 16 November 2016 22:02
by tOmki
up up
Re: BMP085 ESPEasy
Posted: Monday 31 July 2017 14:47
by jpdn
I use a BMP085 and I get the temperature ( an 0% value for humidity) in the Temperature tab, and the pressure widget in the Meteo tab.
Re: BMP085 ESPEasy
Posted: Monday 31 July 2017 16:20
by Milifax
jpdn wrote:I use a BMP085 and I get the temperature ( an 0% value for humidity) in the Temperature tab, and the pressure widget in the Meteo tab.
Use the Temp+Baro device recently added in latest beta and you'll get rid of the 0% humidity.
The seperate 'widgets' stay in temp and weather.
Or use the Barometer device and use Rules in ESPEasy (see the forum over there)
Re: BMP085 ESPEasy
Posted: Wednesday 02 August 2017 10:31
by fvdijke
Hi, i have a same problem i think.
I added a Temp + Baro device but only the Temp value is shown. I tried both the BMP180 and 280's. On my nodeMCU i can see both value's (see images)

- Screen 2017-08-02 om 10.20.09.jpg (37.53 KiB) Viewed 3240 times

- Screen 2017-08-02 om 10.20.52.jpg (78.12 KiB) Viewed 3240 times
Re: BMP085 ESPEasy
Posted: Wednesday 02 August 2017 10:39
by Milifax
fvdijke wrote:Hi, i have a same problem i think.
...
Use rules in ESPEasy to get it working:
To make ESPEasy work with Domoticz BMP280 sensor, disable the Send to controller for the specific device and;
add a rule in ESPEasy like the following:
Code: Select all
On System#Boot do //When the ESP boots, do
timerSet,1,240 //Set Timer 1 for the next event in 240 seconds
endon
On Rules#Timer=1 do
SendToHTTP,192.168.1.80,8080,/json.htm?type=command¶m=udevice&idx=69&nvalue=0&svalue=[Barometer#Temperature];[Barometer#Pressure];BAR_FOR;ALTITUDE
timerSet,1,240 //Resets the Timer 1 for another 240 seconds
endon
-- Comment: Where Barometer is the name of the device and #Temperature and #Pressure are the valuenames
-- Above will send updates every 4 minutes, hench the timer set
Hope this helps.
Re: BMP085 ESPEasy
Posted: Wednesday 02 August 2017 11:44
by fvdijke
Thanks for your quick response!
Is this a BMP related problem? My BME280 sensor works perfectly:

- Screen 2017-08-02 om 11.39.51.jpg (47 KiB) Viewed 3230 times