Тёмный
No video :(

Arduino Windspeed Anemometer or Redneck Speedometer? 

Science Fun
Подписаться 7 тыс.
Просмотров 8 тыс.
50% 1

Опубликовано:

 

22 авг 2024

Поделиться:

Ссылка:

Скачать:

Готовим ссылку...

Добавить в:

Мой плейлист
Посмотреть позже
Комментарии : 45   
@GLH8
@GLH8 8 месяцев назад
I've returned to this video several times as I've got the same anemometer, and have set it up in a similar way. On top of my shed though. !!
@ScienceFunInnovations
@ScienceFunInnovations 7 месяцев назад
Glad it helped!
@MarioCrispino
@MarioCrispino 3 года назад
Love the way you tested the Anemometer. Great video. I might include this anemometer in one of my video projects. It seems quite a straightforward process, some of the other anemometers out there seem more complicated. Many thanks
@ScienceFunInnovations
@ScienceFunInnovations 3 года назад
I did get a few funny looks driving down the street... :-)
@MarioCrispino
@MarioCrispino 3 года назад
I'm not surprised, great stuff! I think you should have put an even bigger one on the roof. That would definitely have got some strange looks. Keep up the great work.
@prov_s195
@prov_s195 3 года назад
Thanks! my school project is now completed! weather station
@ScienceFunInnovations
@ScienceFunInnovations 3 года назад
Nice work!
@RobotoForgoto
@RobotoForgoto Год назад
Hey man! I dig your channel. I have either made or wanted to make several of you projects independently! You probably do it better!
@ScienceFunInnovations
@ScienceFunInnovations Год назад
I'm mostly learning as I go. Enjoy!
@andreyl2705
@andreyl2705 Год назад
nice work)
@ScienceFunInnovations
@ScienceFunInnovations Год назад
Thanks 😁
@gjonymacarony
@gjonymacarony 6 месяцев назад
Hello Thank you for this video. Will this anemometer work in a tube?😅 I'm thinking to measure the heart recovery ventilation air flow..
@ScienceFunInnovations
@ScienceFunInnovations 6 месяцев назад
It should. You would just have to adjust the values for the interference from the tube.
@syaduinotech3681
@syaduinotech3681 3 года назад
Thanks for sharing sir.. I am newbies.. can you help recommend any lcd tutorial setup. Tq sir
@ScienceFunInnovations
@ScienceFunInnovations 3 года назад
Using an I2C module makes it much easier. Try Robojax ru-vid.com/video/%D0%B2%D0%B8%D0%B4%D0%B5%D0%BE-q9YC_GVHy5A.html
@syaduinotech3681
@syaduinotech3681 3 года назад
@@ScienceFunInnovations thanks sir
@cometmace
@cometmace 3 года назад
can that anemometer be mounted sideways (90 deg from vertical) and still produce consistent readings, albeit different from a vertical mounting. I less interested in wind speed and more interested in whether there is any airflow rising in a vertical column that exceeds some threshold (zero really).
@ScienceFunInnovations
@ScienceFunInnovations 3 года назад
Yes. It can be mounted in any orientation.
@tarunsaxena8490
@tarunsaxena8490 Год назад
Did you try to open it to reveal which DC toy motor is used inside? If yes, kindly let us know the motor model or pic of the motor. Many thanks
@ScienceFunInnovations
@ScienceFunInnovations Год назад
I haven't opened it up. I don't think it would open without breaking the plastic.
@tarunsaxena8490
@tarunsaxena8490 Год назад
@@ScienceFunInnovations Thanks for replying. Possibly would you be able to test it as a motor by applying DC voltage from a variable supply source to check it working i.E operating voltage, current, RPM, and coil's internal resistance probably it will be easier to find the motor without physically looking at the motor. Thanks again, really appreciate you replying back to my comment
@ayahesham1685
@ayahesham1685 3 года назад
I'm still a beginner on using Arduino, how do I get the corresponding 5V logic values?
@ScienceFunInnovations
@ScienceFunInnovations 3 года назад
Speed vs. Voltage? The manufacturer included a table of speed vs voltage.
@ayahesham1685
@ayahesham1685 3 года назад
@@ScienceFunInnovations thank you for your fast response. I meant the values on column “D” on the excel sheet, how did you get these values?
@marvins.betita2013
@marvins.betita2013 3 года назад
How can you code IT If you use 7 segment display
@ScienceFunInnovations
@ScienceFunInnovations 3 года назад
I haven't done much with 7 segment displays. Perhaps a future video...
@Stubby0266
@Stubby0266 2 года назад
Could you provide the list of libraries and show how to upload the code for the Ardunio?
@ScienceFunInnovations
@ScienceFunInnovations 2 года назад
Sorry, it has been too long since I wrote that code and I can't find the files.
@arifzaqwan2587
@arifzaqwan2587 4 года назад
Can i have the coding
@ScienceFunInnovations
@ScienceFunInnovations 4 года назад
//Connect gnd to gnd, Vcc to 5V, SDA to A4, SCL to A5 //Connect anemometer red to A0 and yello to gnd #include #include #include #define BACKLIGHT_PIN 3 LiquidCrystal_I2C lcd(0x27,2,1,0,4,5,6,7); float windspeed = 0.00; void setup() { lcd.begin (16,2); lcd.setBacklightPin(BACKLIGHT_PIN,POSITIVE); lcd.setBacklight(HIGH); lcd.home (); lcd.setCursor (0,0); lcd.print("Wind Speed (MPH)"); pinMode(A0,INPUT); } void loop() { windspeed = (analogRead(A0) * 73.0 / 512.0); lcd.setCursor (0,1); lcd.print(" "); lcd.setCursor (0,1); lcd.print(windspeed); delay(500); }
@glower4273
@glower4273 3 года назад
How does your yellow fan do? Can you make your own video about it? because it's expensive to buy and I want to build that fan. Thank you so much.
@ScienceFunInnovations
@ScienceFunInnovations 3 года назад
It seems to just be a regular DC motor with a windmill. The voltage from the motor increases with wind speed. There are some videos on RU-vid on how to make your own using plastic Easter egg shells. Good luck!
@glower4273
@glower4273 3 года назад
@@ScienceFunInnovations thanks for your comments, have a nice day
@goncalotr
@goncalotr Год назад
as others asked, can you provide the lcd.h library file
@ScienceFunInnovations
@ScienceFunInnovations Год назад
Oh man, that was so long ago. I think I just got it from the library manager in Arduino, think it is called LiquidCrystal now. That's the only library that I have installed.
@RobsterCWell
@RobsterCWell 3 года назад
LCD.h isn't defined for some reason
@ScienceFunInnovations
@ScienceFunInnovations 3 года назад
Are you getting an error message?
@RobsterCWell
@RobsterCWell 3 года назад
@@ScienceFunInnovations the error says that it couldn't find the LCD.h in the library.
@vianeyximenamartinezvite2848
@vianeyximenamartinezvite2848 3 года назад
@@RobsterCWell hey, did you know how to charge the LCD library?
@RobsterCWell
@RobsterCWell 3 года назад
@@vianeyximenamartinezvite2848 maybe it's because his version was different than mine. But once I got the code written, the error message said that the LCD header was missing. I was just following the error message.
@johnpaultrongcoso68
@johnpaultrongcoso68 2 года назад
@@RobsterCWell I got the same error as you do, how did you solve it?
@lucasdubuis8932
@lucasdubuis8932 2 года назад
Hey men i need the librairy what u use can u drop me in com pls =)
@ScienceFunInnovations
@ScienceFunInnovations 2 года назад
Which library? The one for the LCD screen?
@Stubby0266
@Stubby0266 2 года назад
@@ScienceFunInnovations Which file library did you use for LCD.h? I have downloaded a few for the screen type and LCD and still won't compile.
@Stubby0266
@Stubby0266 2 года назад
Also it doesn't like the set Backlight line, lcd.setBacklightPin(BACKLIGHT_PIN,POSITIVE), dosen't understand "POSITIVE".
Далее
Raspberry Pi Anemometer: Measuring Wind Speed!
20:51
Просмотров 107 тыс.
Italians vs @BayashiTV_  SO CLOSE
00:30
Просмотров 4,2 млн
Construction site video BEST.99
01:00
Просмотров 341 тыс.
Using Inexpensive 433 MHz RF Modules with Arduino
29:50
Measuring Wind Speed with an Anemometer and Arduino
17:20
Breadboarding tips
20:16
Просмотров 429 тыс.
Using an Arduino with a Tipping Bucket Rain Gauge
14:54
3D printer Wind sensor and Raspberry Pi
12:57
Просмотров 8 тыс.