0% found this document useful (0 votes)
2 views

IEEE PAPER format

The document outlines the design and implementation of a tachometer using Arduino sensors, detailing the components, circuit diagrams, and code necessary for operation. It explains how the tachometer measures the rotational speed of objects through sensors like IR or hall effect sensors and displays the results on an Arduino serial monitor or an external display. The project serves as a practical example of interfacing sensors with Arduino to create a functional measurement device.

Uploaded by

omkarb731
Copyright
© © All Rights Reserved
Available Formats
Download as DOCX, PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
2 views

IEEE PAPER format

The document outlines the design and implementation of a tachometer using Arduino sensors, detailing the components, circuit diagrams, and code necessary for operation. It explains how the tachometer measures the rotational speed of objects through sensors like IR or hall effect sensors and displays the results on an Arduino serial monitor or an external display. The project serves as a practical example of interfacing sensors with Arduino to create a functional measurement device.

Uploaded by

omkarb731
Copyright
© © All Rights Reserved
Available Formats
Download as DOCX, PDF, TXT or read online on Scribd
You are on page 1/ 6

TACHOMETER USING ARDUINO SENSORS

Omkar Borhade Shlok Kudtarkar


Electrical Engineering Electrical Engineering
FCRIT,Vashi FCRIT,Vashi
[email protected] [email protected]

Faiz Dhamaskar Suhas Tagyalkar


Electrical Engineering Electrical Engineering
FCRIT,Vashi FCRIT, Vashi
[email protected] [email protected]

Abhishek Shiwalkar
Electrical Engineering
FCRIT,Vashi
[email protected]

Keywords— Arduino Uno ; RGB LED control ; IR receiver ; IR The tachometer circuit using Arduino sensors works by using
remote ; Code logic ; Block Diagram ; Circuit diagram ; the sensor (such as an IR sensor or hall effect sensor) to detect
connections ; PCB fabrication ; EAGLE ; Interface ; Other the rotational speed of an object, such as a motor. Here's a
applications ;
simplified explanation of how it works:

1. The sensor detects the rotations of the object and generates


1. INTRODUCTION
an electrical signal.
A tachometer is a device used to measure the rotational speed 2. The Arduino board reads this signal through one of its
of an object, such as the engine in a car. It typically uses a digital input pins.
potentiometer and resistors to convert the rotational speed into 3. The Arduino code processes the signal and calculates the
an electrical signal. Two potentiometers may be used to rotational speed based on
measure both the maximum and minimum speeds. An IR the time between rotations.
sensor can also be used to detect the rotation and provide
accurate readings. The block diagram of a tachometer shows 4. The calculated speed can be displayed on the Arduino serial
the components and their connections. Let me know if you'd monitor or an external
like more information on any specific aspect. A tachometer is display, such as an LCD screen.
a valuable instrument used to measure the rotational speed of a
motor, engine, or any rotating machinery. In this project, we
will explore how to create a tachometer using an Arduino, a To implement this circuit, you would connect the sensor to the
versatile microcontroller, and a few simple components. This appropriate pins on the Arduino board and write the code to
project not only provides a real-time display of the rotational read and process the sensor data. The specific wiring and code
speed but also serves as a practical example of how to will vary depending on the sensor and Arduino YOU ARE
interface sensors and display data using Arduino. Let's dive USING.
into the exciting world of tachometers and learn how to build
one with Arduino.

2. WORKING OF THE CIRCUIT


3. BLOCK DIAGRAM AND CIRCUIT DIAGRAM
DESCRIPTION OF THE PINS
1. VCC: This pin provides a regulated voltage of 5V to power
the Arduino Nano.

2. GND: These pins are the ground connections for the


Arduino Nano.

3. AREF: This pin is used as the reference voltage for analog-


to-digital conversions.

4. A0-A7: These pins are analog input pins used to read


analog voltage values.

5. D0-D13: These pins are digital input/output pins. D0 and


D1 are also used for serial
communication (RX and TX).

6. TX/RX: These pins are used for serial communication with


other devices.

7. RESET: This pin is used to reset the Arduino Nano.

8. 5V: This pin provides a regulated voltage of 5V from the


Arduino Nano.

9. VIN: This pin allows an external power source to power the


Arduino Nano.

10. GND: These pins are additional ground connections for


the Arduino Nano.

11. AREF: This pin is used as the reference voltage for


analog-to-digital conversions.

These are the main pins on the Arduino Nano Type C. Each
pin has specific functions for input,
output, power, and communication. The exact usage of each
4. PIN DIAGRAM OF ARDUINO pin will depend on your specific project
and the components you are connecting to the Arduino Nano.
CODE TO RUN THE CIRCUIT (Sample Code)

5. LIST OF COMPONENTS Sample code to run a tachometer using Arduino and


sensors : cpp
const int sensor Pin = 2; // Replace with the
SR NO NAME OF COMPONENT RATING appropriate pin number for your sensor unsigned int rpm;
unsigned long time old ;
1. SSD1306 DISPLAY 5V
void setup() {
2. TP 4056 MODULE 250kΩ
3. ARDUINO NANO TYPE 220 Ω
C
4. MINI ROCKER SWITCH 16x2 Lcd Display
PUSH BUTTON LITHIUM Serial.begin(9600);
BATTERY attachInterrupt(digitalPinToInterrupt(sensorPin),
rpm_fun, RISING);timeold = 0;
}

void loop() {
6. SIMULATION RESULT USING TINKER CAD if (millis() - timeold > 1000) {
detachInterrupt(digitalPinToInterrupt(sensorPin));rp
Here is a theoretical framework of how this circuit is analyzed m = 30 /
in step by step process. (millis() - timeold) * 1000;
timeold = millis();
1.Open Tinker cad and create a new circuit. attachInterrupt(digitalPinToInterrupt(sensorPin),
2. Add an Arduino board to the circuit. rpm_fun, RISING);
3. Add the necessary components for your tachometer, such as Serial.print("RPM: ");
an IR sensor or hall effect sensor, Serial.println(rpm);
along with resistors and potentiometers if required. }
4. Connect the components according to your circuit diagram, }
ensuring that the
sensor is connected to the appropriate pins on the Arduino void rpm_fun() {
board. // This function is called whenever the sensor detects
5. Write the Arduino code to read and process the sensor data, a pulse
calculating the // Add appropriate code to count the pulses and
rotational speed. calculate RPM
6. Upload the code to the Arduino board in the Tinker cad }
circuit.
7. Run the simulation to see the tachometer in action.
Make sure to replace sensor Pin with the correct pin number
where you have connected your sensor. Additionally, you'll
need to write the appropriate code inside the rpm _fun()
function to count the pulses from your sensor and calculate the
RPM.

.
7. CONCLUSION be the use of English units as identifiers in trade, such
as “3.5-inch disk drive.”

Building a tachometer using Arduino sensors is a fun and ● Avoid combining SI and CGS units, such as current in
rewarding project. By using sensors like IR or Hall effect amperes and magnetic field in oersteds. This often
sensors, along with resistors and potentiometers, you can leads to confusion because equations do not balance
measure rotational speed and display it as RPM. You’ll need dimensionally. If you must use mixed units, clearly
to write code to read sensor data, calculate RPM, and display state the units for each quantity that you use in an
it on a display or serial monitor. Remember to adjust the code equation.
and connections based on your specific sensors and
requirements. ● Do not mix complete spellings and abbreviations of
units: “Wb/m2” or “webers per square meter,” not
“webers/m2.” Spell units when they appear in text:
“...a few henries,” not “...a few H.”
Identify applicable sponsor/s here. If no sponsors, delete this text box
EASE OF USE (sponsors).

A. Selecting a Template (Heading 2) ● Use a zero before decimal points: “0.25,” not “.25.”
First, confirm that you have the correct template for your Use “cm3,” not “cc.” (bullet list)
paper size. This template has been tailored for output on the E. Equations
A4 paper size. If you are using US letter-sized paper, please
close this file and download the file “MSW_USltr_format”. The equations are an exception to the prescribed
specifications of this template. You will need to determine
B. Maintaining the Integrity of the Specifications whether or not your equation should be typed using either the
The template is used to format your paper and style the Times New Roman or the Symbol font (please no other font).
text. All margins, column widths, line spaces, and text fonts To create multileveled equations, it may be necessary to treat
are prescribed; please do not alter them. You may note the equation as a graphic and insert it into the text after your
peculiarities. For example, the head margin in this template paper is styled.
measures proportionately more than is customary. This Number equations consecutively. Equation numbers,
measurement and others are deliberate, using specifications within parentheses, are to position flush right, as in (1), using
that anticipate your paper as one part of the entire proceedings, a right tab stop. To make your equations more compact, you
and not as an independent document. Please do not revise any may use the solidus ( / ), the exp function, or appropriate
of the current designations. exponents. Italicize Roman symbols for quantities and
I. PREPARE YOUR PAPER BEFORE STYLING variables, but not Greek symbols. Use a long dash rather than
a hyphen for a minus sign. Punctuate equations with commas
Before you begin to format your paper, first write and save or periods when they are part of a sentence, as in
the content as a separate text file. Keep your text and graphic
files separate until after the text has been formatted and styled.
Do not use hard tabs, and limit use of hard returns to only one ab 
return at the end of a paragraph. Do not add any kind of 
pagination anywhere in the paper. Do not number text heads-
the template will do that for you.  
Finally, complete content and organizational editing before
formatting. Please take note of the following items when Note that the equation is centered using a center tab stop.
proofreading spelling and grammar: Be sure that the symbols in your equation have been defined
before or immediately following the equation. Use “(1),” not
C. Abbreviations and Acronyms “Eq. (1)” or “equation (1),” except at the beginning of a
Define abbreviations and acronyms the first time they are sentence: “Equation (1) is ...”
used in the text, even after they have been defined in the
abstract. Abbreviations such as IEEE, SI, MKS, CGS, sc, dc, F. Some Common Mistakes
and rms do not have to be defined. Do not use abbreviations in
● The word “data” is plural, not singular.
the title or heads unless they are unavoidable.
D. Units ● The subscript for the permeability of vacuum μ0, and
other common scientific constants, is zero with
● Use either SI (MKS) or CGS as primary units. (SI
subscript formatting, not a lowercase letter “o.”
units are encouraged.) English units may be used as
secondary units (in parentheses). An exception would
● In American English, commas, semi-/colons, periods,
question and exclamation marks are located within
quotation marks only when a complete thought or 1) For author/s of only one affiliation (Heading 3): To
name is cited, such as a title or full quotation. When change the default, adjust the template as follows.
quotation marks are used, instead of a bold or italic a) Selection (Heading 4): Highlight all author and
typeface, to highlight a word or phrase, punctuation
affiliation lines.
should appear outside of the quotation marks. A
parenthetical phrase or statement at the end of a b) Change number of columns: Select the Columns
sentence is punctuated outside of the closing icon from the MS Word Standard toolbar and then select “1
parenthesis (like this). (A parenthetical sentence is Column” from the selection palette.
punctuated within the parentheses.) c) Deletion: Delete the author and affiliation lines for
the second affiliation.
● A graph within a graph is an “inset,” not an “insert.” 2) For author/s of more than two affiliations: To change
The word alternatively is preferred to the word the default, adjust the template as follows.
“alternately” (unless you really mean something that d) Selection: Highlight all author and affiliation lines.
alternates).
e) Change number of columns: Select the “Columns”
icon from the MS Word Standard toolbar and then select “1
● Do not use the word “essentially” to mean
Column” from the selection palette.
“approximately” or “effectively.”
f) Highlight author and affiliation lines of affiliation 1
and copy this selection.
● In your paper title, if the words “that uses” can
accurately replace the word using, capitalize the “u”; g) Formatting: Insert one hard return immediately
if not, keep using lower-cased. after the last character of the last affiliation line. Then paste
down the copy of affiliation 1. Repeat as necessary for each
● Be aware of the different meanings of the additional affiliation.
homophones “affect” and “effect,” “complement” and h) Reassign number of columns: Place your cursor to
“compliment,” “discreet” and “discrete,” “principal” the right of the last character of the last affiliation line of an
and “principle.” even numbered affiliation (e.g., if there are five affiliations,
place your cursor at end of fourth affiliation). Drag the cursor
● Do not confuse “imply” and “infer.” up to highlight all of the above author and affiliation lines. Go
to Column icon and select “2 Columns”. If you have an odd
number of affiliations, the final affiliation will be centered on
● The prefix “non” is not a word; it should be joined to
the page; all previous will be in two columns.
the word it modifies, usually without a hyphen.
H. Identify the Headings
● There is no period after the “et” in the Latin Headings, or heads, are organizational devices that guide
abbreviation “et al.” the reader through your paper. There are two types:
component heads and text heads.
● The abbreviation “i.e.” means “that is,” and the Component heads identify the different components of
abbreviation “e.g.” means “for example.” your paper and are not topically subordinate to each other.
An excellent style manual for science writers is [7]. Examples include ACKNOWLEDGMENTS and
REFERENCES, and for these, the correct style to use is
II. USING THE TEMPLATE “Heading 5.” Use “figure caption” for your Figure captions,
and “table head” for your table title. Run-in heads, such as
After the text edit has been completed, the paper is ready
“Abstract,” will require you to apply a style (in this case,
for the template. Duplicate the template file by using the Save
italic) in addition to the style provided by the drop down menu
As command, and use the naming convention prescribed by
to differentiate the head from the text.
your conference for the name of your paper. In this newly
created file, highlight all of the contents and import your Text heads organize the topics on a relational, hierarchical
prepared text file. You are now ready to style your paper; use basis. For example, the paper title is the primary text head
the scroll down window on the left of the MS Word because all subsequent material relates and elaborates on this
Formatting toolbar. one topic. If there are two or more sub-topics, the next level
head (uppercase Roman numerals) should be used and,
G. Authors and Affiliations conversely, if there are not at least two sub-topics, then no
The template is designed so that author affiliations are not subheads should be introduced. Styles named “Heading 1,”
repeated each time for multiple authors of the same affiliation. “Heading 2,” “Heading 3,” and “Heading 4” are prescribed.
Please keep your affiliations as succinct as possible (for
example, do not differentiate among departments of the same I. Figures and Tables
organization). This template was designed for two affiliations. 3) Positioning Figures and Tables: Place figures and
tables at the top and bottom of columns. Avoid placing them
in the middle of columns. Large figures and tables may span
across both columns. Figure captions should be below the The template will number citations consecutively within
figures; table heads should appear above the tables. Insert brackets [1]. The sentence punctuation follows the bracket [2].
figures and tables after they are cited in the text. Use the Refer simply to the reference number, as in [3]—do not use
abbreviation “Fig. 1,” even at the beginning of a sentence. “Ref. [3]” or “reference [3]” except at the beginning of a
sentence: “Reference [3] was the first ...”
TABLE I. TABLE STYLES Number footnotes separately in superscripts. Place the
Table Table Column Head actual footnote at the bottom of the column in which it was
Head Table column subhead Subhead Subhead cited. Do not put footnotes in the reference list. Use letters for
table footnotes.
copy More table copya
a.
Unless there are six authors or more give all authors’
Sample of a Table footnote. (Table footnote)
names; do not use “et al.”. Papers that have not been
b.
published, even if they have been submitted for publication,
Fig. 1. Example of a figure caption. (figure caption) should be cited as “unpublished” [4]. Papers that have been
accepted for publication should be cited as “in press” [5].
Figure Labels: Use 8 point Times New Roman for Figure Capitalize only the first word in a paper title, except for proper
labels. Use words rather than symbols or abbreviations when nouns and element symbols.
writing Figure axis labels to avoid confusing the reader. As an
example, write the quantity “Magnetization,” or For papers published in translation journals, please give
“Magnetization, M,” not just “M.” If including units in the the English citation first, followed by the original foreign-
label, present them within parentheses. Do not label axes only language citation [6].
with units. In the example, write “Magnetization (A/m)” or
“Magnetization (A ( m(1),” not just “A/m.” Do not label axes [1] G. Eason, B. Noble, and I.N. Sneddon, “On certain integrals of
Lipschitz-Hankel type involving products of Bessel functions,” Phil.
with a ratio of quantities and units. For example, write Trans. Roy. Soc. London, vol. A247, pp. 529-551, April 1955.
“Temperature (K),” not “Temperature/K.” (references)
[2] J. Clerk Maxwell, A Treatise on Electricity and Magnetism, 3rd ed., vol.
2. Oxford: Clarendon, 1892, pp.68-73.
ACKNOWLEDGMENT (Heading 5) [3] I.S. Jacobs and C.P. Bean, “Fine particles, thin films and exchange
anisotropy,” in Magnetism, vol. III, G.T. Rado and H. Suhl, Eds. New
The preferred spelling of the word “acknowledgment” in York: Academic, 1963, pp. 271-350.
America is without an “e” after the “g.” Avoid the stilted [4] K. Elissa, “Title of paper if known,” unpublished.
expression “one of us (R. B. G.) thanks ...”. Instead, try “R. [5] R. Nicole, “Title of paper with only first word capitalized,” J. Name
Stand. Abbrev., in press.
B. G. thanks...”. Put sponsor acknowledgments in the
[6] Y. Yorozu, M. Hirano, K. Oka, and Y. Tagawa, “Electron spectroscopy
unnumbered footnote on the first page. studies on magneto-optical media and plastic substrate interface,” IEEE
Transl. J. Magn. Japan, vol. 2, pp. 740-741, August 1987 [Digests 9th
Annual Conf. Magnetics Japan, p. 301, 1982].
[7] M. Young, The Technical Writer’s Handbook. Mill Valley, CA:
University Science, 1989.
REFERENCES

You might also like