Anemometer

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.

By madepablo
Created on July 18, 2011, 01:28

Category: Analog

Difficulty: amateurs

License:  Creative Commons Attribution-Share Alike 3.0 Unported License

Files

Fritzing Files

Comments

  1. ramm87 # Aug. 11, 2011, 8:46 p.m.

    do u have the arduino code?
  2. 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); }

Login to post a comment...
  • Print this
© 2007 - 2011 University of Applied Sciences Potsdam