A motor to measure the wind velocity
Wind moves an anemometer, connected to a motor. The resulting volts are measured by arduino. After a calibration, volts could be translated directly to wind speed.
Category: Analog
Difficulty: amateurs
License:
ramm87 # Aug. 11, 2011, 8:46 p.m.
charantola # Nov. 8, 2011, 8:31 p.m.
ramm87 # Aug. 11, 2011, 8:46 p.m.
do u have the arduino code?charantola # Nov. 8, 2011, 8:31 p.m.
// Posted by Fabiano Charantola int analoginput = 0; float vin = 0.0; void setup(){ pinMode(analoginput, INPUT); Serial.begin(9600); } void loop(){ vin = analogRead(analoginput); Serial.println(vin); delay(500); }