Schlagwort: tachometer

  • Build your own tachometer with an IR sensor and an Arduino

    Build your own tachometer with an IR sensor and an Arduino

    Reading Time: 2 minutes

    A tachometer is a device that display the speed of a rotating object. The most well-known example is the automotive tachometer, which shows a driver the RPM of the engine — information that is particularly useful when the car has a manual transmission. But there are many other uses for tachometers and this tutorial from Mirko Pavleski explains how to build a tachometer with an infrared sensor.

    To calculate the rotational speed of something like a wheel, you need to monitor at least one point on that wheel and time the interval between passes by a static reference point. A common way to achieve that is with a Hall effect sensor that detects the magnetic field from a permanent magnet attached to the wheel’s rim. But Hall effect sensors are unsuitable for some applications, such as when there are strong magnetic fields nearby. Pavleski’s write-up demonstrates how to instead use an infrared sensor to detect the passing of the wheel’s spokes.

    This infrared sensor module works by emitting infrared light from an LED and monitoring the reflection. When one of the wheel’s spokes passes in front of the sensor, the reflection becomes strong and easy to detect. An Arduino Nano board measures the time between those events and multiplies the result by the number of spokes to determine the total time for a complete revolution. Divide 60 by that number and you get the RPM. The Arduino continuously calculates that value and displays the number on a small OLED screen. Power comes from a 9V battery.

    One of the great things about this design is that it doesn’t require contact with the measured object and since it is portable, so one can measure the RPM of anything spinning that has spokes.

    [youtube https://www.youtube.com/watch?v=0pLw3B1Q8dk?feature=oembed&w=500&h=281]

    The post Build your own tachometer with an IR sensor and an Arduino appeared first on Arduino Blog.

    Website: LINK

  • A DIY non-contact digital tachometer for machinists

    A DIY non-contact digital tachometer for machinists

    Reading Time: 3 minutes

    A tachometer is a device that counts the revolutions of a rotating object, with the most well-known example being the automotive tachometer that monitors the revolutions per minute (RPMs) of an internal combustion engine. But tachometers are useful, and sometimes a requirement, in many other applications. RPM is a very important datum when working with machine tools like lathes and milling machines, which is what this DIY non-contact digital tachometer was designed to accommodate.

    The term “feeds and speeds” refers to the parameters a machinist uses to achieve the ideal tool load. A vertical milling machine’s end mill, for example, can only remove a certain amount of material with each stroke of each cutting flute. For that reason, it is imperative that a machinist know how fast the end mill is rotating. Most modern machine tools (not just CNC tools, but also manual tools) include a digital RPM display. But many older machines and some modern machines with low-cost VFDs (variable-frequency drives) do not and that makes it very difficult to maintain optimal load. This DIY device addresses those shortcomings in an affordable way.

    Inside of the device’s 3D-printed enclosure are an Arduino Nano board, an infrared distance sensor module, a 0.91” 128×32 OLED screen, a lithium-ion battery, and a TP4056 lithium battery charging module. Any time the infrared sensor sees a strong reflection of its emitted light, it counts a pulse. But timing the delay between pulses, the Arduino can calculate the RPM and then display that number on the OLED screen. The user only needs to mount the device in front of the object to monitor, like a mill’s spindle or a lathe’s chuck, and put a 6mm-wide piece of white tape in front of the infrared sensor. Every time that white tape passes in front of the sensor, it reflects a lot of light for the sensor to detect as a pulse.

    This doesn’t require any physical modification of the machine tool, because it runs on battery and doesn’t need to make physical contact with the spindle, so it is perfect for machinists working on an employer’s equipment. 

    Boards:Nano
    Categories:Arduino

    Website: LINK