Good that you mentioned the library name. I tried those common ones and failed. You saved me a few hours to figure this myself. Thanks!
@RoadRunnerMeep4 жыл бұрын
Love the idea of using blu-tac for soldering, so much easier
@brend0GG6 жыл бұрын
Life saver. Do you know how long I mucked around with this before I found this video? Kept trying to make the default examples work.
@bybecker5 жыл бұрын
Hi. Nice job! For many years I intend to do something similar but using 3 analog displays for temperature, atmospheric pressure and relative humidity. (like wall vintage barometers)
@f0xvibes3 жыл бұрын
Thanks for the advice with the library. Now my bmp280 works. Are the maybe fake? Or why they didn't work with adafruit Library? Or wrong adress in the lib?
@abelpratama38096 жыл бұрын
I followed your instruction, at the begin untill the end. But, why it didn't work for my BMP280? It means it couldn't be read the sensor. Pressure and temperature weren't be displayed on Serial Monitor. Just "BMP280" available on Serial Monitor only. Help me please.
@JohnUsp5 жыл бұрын
Your video help me a lot, thank you.
@williammiller75436 жыл бұрын
Anthony, Another great General Info video. Thanks, AdaBill
@AntonyCartwright6 жыл бұрын
Thanks AdaBill... :-)
@MichaelAMalone5 жыл бұрын
Another tuber mentioned a place to find the value for your elevation.... I'll post it when I find it... but you add it in or something and it tells the correct pressure for that time and that location
@rslinnings4 жыл бұрын
Wiring up the chip for a second try - now it does not work. Is there any chance I could have ruined the chip by swapping the 3.3V and GND?
@AndyDavis-vc1sc Жыл бұрын
Press the solder to the pen point and drip the melted solder into the pin. By touching the soldering pen point to the circuit board, you risk destroying it.
@JohnChrysostom1016 ай бұрын
3.3 and 5V versions are around
@electronic79796 жыл бұрын
Excellent project
@AntonyCartwright6 жыл бұрын
Thanks! :-)
@BrokenToe6 жыл бұрын
Your supplying it with 3.3v on the bus, but the i2c data lines are still using 5v logic. Either use a level shifter, or 5k resistors in the data lines otherwise you can potentially damage this unit. Or just use a 3.3v microcontroller.
@AntonyCartwright6 жыл бұрын
Hiya! This module is 5v tolerant. You can actually use 5v VCC too! :-)
@sergiourquijo40004 жыл бұрын
@@AntonyCartwright you sure about that?
@kierankay50145 жыл бұрын
Hi could anyone help me with a problem that I am having with my bmp280 and esp32 I am currently using your code from github but would like to add some extra on the bottom, unfortunately I don’t really know what I am doing, so wondered if you would know how to make the esp32 to use the pressure reading from the bmp280 to do something like this: PRESSURE (in PSI rather than hPa)>(any number imputed via WiFi. E.g. 12.5) = YES/NO
@rslinnings4 жыл бұрын
Thanks for the video. Worked first try! Why did you use A4 and A5 pins? Are they reserved for SCA and SDA?
@sirreggiereginald25424 жыл бұрын
Yup! They are. You can find an arduino pin out diagrams that show A4 and A5 reserved for SDA and SCL respectively components101.com/sites/default/files/component_pin/Arduino-Nano-Pinout.png
@bulldogbrower67323 жыл бұрын
Never observed a person wire up a project with the power on.
@AntonyCartwright3 жыл бұрын
You've never lived!!!
@SuperADI26 жыл бұрын
I am surprised how you can present something that you don't gather all the information previously, hope in future you will make much more good tutorial, because I was fallowing you for a while and looking at your video
@AntonyCartwright6 жыл бұрын
Hey super ADI! :-) Thanks for watching my videos! I can confidently present them without full knowledge because I realise that it is far better to explain things in very simple ways without excessive detail. I believe it's not necessary to know everything in order to achieve. I love to encourage viewers that everyone can do electronics. It is not important to be an expert. This approach works very well for me and the channel because it is encouraging to other beginners that I also make mistakes and that I'm also a beginner myself - I do not know all, yet I can still achieve. In the past, I've made some videos with lots of research and lots of detail, but it does not work! For some reason, people are not attracted to this. I think it is because people don't care about too much detail, they just want it to work. :-)
@korishan6 жыл бұрын
Appeal to "your" audiences, whom like to have the stupid-simple approach and to "just get it working" without really needing to know "why". I like Antony's videos since he explains what he's doing on screen and I don't have to specifically "watch" the channel to learn what he's doing all the time.
@AntonyCartwright6 жыл бұрын
Yes! Exactly... Quick and Simple! It's what people want. I think people don't like to be overwhelmed with information, they just want to see instant progress with minimum theory. In some of my videos, there must be theory and you MUST understand something before continuing... If that is the case, I will add the theory to the start of the video. :-) Antony...
@camelCased6 жыл бұрын
Thanks for the video. I'm curious, is this sensor sensitive and fast enough to measure air speed differences when blowing on it through a small tube glued to the hole on the sensor? And also the tube itself will have a small hole to make it possible to blow through, like if when playing a flute. I'd like to use it for MIDI controller, but I'm not sure if it won't be too slow or not enough sensitive (not detecting enough levels of blowing).
@AntonyCartwright6 жыл бұрын
camelCased hi. It will be quite fast. You'd have to look at the documentation.
@biswanathbanik5 жыл бұрын
it is showing temp val 187 degree in room how to fix it
@Alislaboratory5 жыл бұрын
Hey what do i do if my serial monitor is displaying a bunch of gibberish?
@Legend813a5 жыл бұрын
Check baud rate
@smookiekins22896 жыл бұрын
is there a known "fix" for the height mistake? I keep getting a height of -27 m... I know im not that low, so is there a solution?
@AntonyCartwright6 жыл бұрын
Yes, as you see, me also... I don't know the fix, but I've not looked very hard.
@romel584 жыл бұрын
@@AntonyCartwright The way these sensors calculate altitude is by sensing the pressure at your current location. In the sketch you have to enter the barometric pressure at sea level. From the 2 readings the controller can extrapolate your altitude. Barometric pressure fluctuates all the time, so does sea level bar pressure, so you always end up with a slightly off altitude. I have not used this sketch but the ones I have used all have an input for the sea level barometric pressure. From Google you can get an altitude for your location. then use this calculator keisan.casio.com/exec/system/1224575267 to calculate sea level pressure. I hope this helps
@iot_galaxy74243 жыл бұрын
Good video! Thanks! Not enough views tho😭❤️
@yagotrias36856 жыл бұрын
First apologise my English i so bad. I have a problem in the Serial Monitor it displays characters like this one: i⸮⸮⸮⸮m⸮⸮⸮ayi⸮⸮⸮q⸮⸮⸮⸮a⸮⸮⸮xZ⸮ If you can help me, please I'll be very grateful.
@AntonyCartwright6 жыл бұрын
The baud rate isn't right... :-)
@yagotrias36856 жыл бұрын
Thank I fix it was de SDO it has to be in 3.3v to work if the I2c is 0x77 or GND if it's 0x76.
@gElectroniks5 жыл бұрын
i got same errror until i set baud rate to 155200. then al sorted out. oh abd also 5v instead of 3.3. cheers!