BME280 Weather Station | With Arduino, ESP8266 & ESP32

Поділитися
Вставка
  • Опубліковано 3 сер 2024
  • In this tutorial, we learn how to make a Mini Weather station using BME280 Barometric Pressure Sensor that can give real-time information of Atmospheric Pressure, Temperature & Humidity. Using BME280 we can even measure the altitude above sea level.
    The tutorials cover How to use BME280 with Arduino, ESP32 & ESP8266 along with Source Code/Program & Library details.
    00:00 Introduction to BME280
    01:48 BME280 Pressure, Temperature, Humidity & Altitude
    02:07 I2C Address of BME280
    02:44 Interface BME280 With Arduino
    05:39 Interface BME280 with ESP32
    08:20 Interface BME280 with ESP8266
    Source Code BME280 Arduino: how2electronics.com/bme280-ar...
    Source Code BME280 ESP32: how2electronics.com/esp32-bme...
    Source Code BME280 ESP8266: how2electronics.com/esp8266-b...
    ....................................................................................................................................................................................................................................
    Drop a like if you liked this video.
    Don't forget to subscribe our channel for more Electronics project and tutorials.
    Website: how2electronics.com
    Facebook: / electronicsbyalex
  • Наука та технологія

КОМЕНТАРІ • 49

  • @user-ny5vs6hi1s
    @user-ny5vs6hi1s 4 роки тому

    thanks a lot! very useful!

  • @electronic7979
    @electronic7979 4 роки тому +2

    Very good project 👍 I like it

  • @anirbanmandal3123
    @anirbanmandal3123 4 роки тому +1

    Wonderful like previous .

  • @tonylee0922
    @tonylee0922 4 роки тому +1

    很棒,謝謝教學,期待下次教學,讚!👍👍👍👍👍👍👍👍👍👍

  • @gabrielsiqueira4918
    @gabrielsiqueira4918 4 роки тому +2

    Very good!

  • @Mahmud_and_Family_Plus
    @Mahmud_and_Family_Plus 3 роки тому

    Thanks from Bangladesh

  • @yogeshitaliya473
    @yogeshitaliya473 4 роки тому +1

    Nice one

  • @ronkline8726
    @ronkline8726 Рік тому

    Thank you !!

  • @syaduinotech3681
    @syaduinotech3681 3 роки тому

    This video is very good videos. Do you have video about the ESP8266 & ESP32 with the BME 680? If you have it, kindly share the link to learn about.

  • @romanletnansky1828
    @romanletnansky1828 8 місяців тому

    Very nice video and great program. Could this weather and icons be integrated into Home Assistant?

  • @josecarloscarrillocastillo2545
    @josecarloscarrillocastillo2545 9 місяців тому

    Hi, thanks for u support! How do you do electronic diagrams?

  • @kosa2004
    @kosa2004 4 роки тому

    Coool 😀

  • @Ilikeridin
    @Ilikeridin 4 роки тому +2

    Can you only see this when connected to the same network/wifi or from anywhere?

  • @UBsLab
    @UBsLab 3 роки тому

    SUBBED...!

  • @user-wm5pf4el1u
    @user-wm5pf4el1u 4 роки тому +2

    Hi
    Can you please explain how to connect (( arduino uno +BME280 +Hc-05) ) with the right code
    To receive the data by phone

  • @fabienlouvel5536
    @fabienlouvel5536 9 місяців тому

    943hPa as read by the sensor means either a very strong barometric depression or more likely, inaccuracy or consistency in calibrating and will affect altitude reading as well. Would be curious of a fix for that.

  • @rameshpatil3701
    @rameshpatil3701 4 роки тому

    Sir thanks for the video
    Please can you explain the code for BME 280 + Node MCU + google Firebase + MIT app inventer

  • @pocat00
    @pocat00 3 роки тому

    could you make this show up on MQTT so I could use it on home assistant thank you

  • @lightdevil7143
    @lightdevil7143 11 місяців тому

    It's ok to use Vcc instant of vin in BME 280

  • @ingenierocristian
    @ingenierocristian 3 роки тому

    Hi, I need to make an I2C communication between an Esp 32 and Esp8266, where can I find info about?

  • @pocat00
    @pocat00 3 роки тому +3

    nice video. Interface BME280 with ESP8266 how do you change it to Fahrenheit

    • @blakerhoades6356
      @blakerhoades6356 3 роки тому +1

      In this loop change:
      void handle_OnConnect() {
      temperature = bme.readTemperature();
      humidity = bme.readHumidity();
      pressure = bme.readPressure() / 100.0F;
      altitude = bme.readAltitude(SEALEVELPRESSURE_HPA);
      server.send(200, "text/html", SendHTML(temperature,humidity,pressure,altitude));
      }
      To:
      void handle_OnConnect() {
      temperature = bme.readTemperature();
      humidity = bme.readHumidity();
      pressure = bme.readPressure() / 100.0F;
      altitude = bme.readAltitude(SEALEVELPRESSURE_HPA);
      server.send(200, "text/html", SendHTML(1.8*temperature+32,humidity,pressure,altitude));
      }

  • @clarissaranchez1699
    @clarissaranchez1699 10 місяців тому

    What if I want to remove the Humidity? Can you make a video if how to make it?

  • @iniinfoboss3463
    @iniinfoboss3463 Рік тому

    Can hpa be changed to pa?

  • @everything1373
    @everything1373 Рік тому

    Is there any guide to set-up this web server on Raspberry Pi Zero W or Pi 4?

  • @khrisravelo8196
    @khrisravelo8196 4 роки тому +3

    Sir, Thanks for this video. Can you please make sensor for ESP32 and ESP8266 using MAX4466 for noise and Wind Sensor Rev. C sensor. Thanks

    • @HowtoElectronics
      @HowtoElectronics  4 роки тому

      I don't have these sensors currently with me. I will work on MAX4466 in future.

    • @khrisravelo8196
      @khrisravelo8196 4 роки тому +1

      And last if you can use example using CCS811 sensor module. i already made but after a couple of time i encounter some error reading for memory using ESP32 and ESP8266 Thanks

    • @khrisravelo8196
      @khrisravelo8196 4 роки тому

      @@HowtoElectronics thanks i hope soon you made. question about CCS811 why cant hold long time or stable using ESP32 or ESP8266?

    • @HowtoElectronics
      @HowtoElectronics  4 роки тому

      I don't have CCS811.

  • @plsanu
    @plsanu 4 роки тому +1

    Please upload Rfid Rc522 and Fingerprint based attendance system Double security using nodemcu php mysql and send sms alert to parents

  • @zeror3
    @zeror3 2 роки тому

    can we use Nokia 5110 lcd screen to this project?

  • @Evilslayer73
    @Evilslayer73 3 роки тому

    how to add an ili9341 to this project??

  • @AESSUKUMAR
    @AESSUKUMAR 2 роки тому

    I have a problem for the arduino... Which lcd light is on but no value displayed.. How to be it resolved?.. Pls help me..

  • @shahzebhusainshaikh4767
    @shahzebhusainshaikh4767 3 роки тому

    What if we go outside the wifi range

  • @user-hd7hq4lf4y
    @user-hd7hq4lf4y 3 роки тому

    Can't open third link :( is it actual?

  • @no0bajnabi932
    @no0bajnabi932 4 роки тому

    How can i learn iot?

  • @desifun9321
    @desifun9321 4 роки тому +1

    Code can't be working

  • @ChafaRemix
    @ChafaRemix 3 роки тому

    Why i cant, get the IP address??

  • @blakerhoades6356
    @blakerhoades6356 3 роки тому

    Can you use this sensor with the 20x4 display but with arduino nano 33 IoT in the Blynk app?

  • @Duanam
    @Duanam 4 роки тому

    What's solution to update the value of sensor to Webserver without refresh the browser?

    • @HowtoElectronics
      @HowtoElectronics  4 роки тому

      Check one of my previous video on weather station. Its done and explained there.

  • @harshitjindal2809
    @harshitjindal2809 4 роки тому

    Hey bro am not able to find code

  • @ElectroniClinic
    @ElectroniClinic 4 роки тому +2

    kooooooooooooooooooooooooool...