Arduino Frequency Counter: Technology Workshop Craft Home Food Play Outside Costumes
Arduino Frequency Counter: Technology Workshop Craft Home Food Play Outside Costumes
Arduino Frequency Counter: Technology Workshop Craft Home Food Play Outside Costumes
Table of Contents
Step 4: Program Code(if you use 3 pin interface Board for LCD) . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 3
Step 5: Program code (if you use LCD without 3Pin interface Board) . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 4
Step 6: Video . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 5
Related Instructables . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 5
Advertisements . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 5
Comments . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 5
http://www.instructables.com/id/Arduino-Frequency-Counter/
Author:Rajkumar2506
iam a person always having helpfull mind.I have interest to Know,Learn,and do something that would help others.
I have used 3 Pin LCD interface Board to Connect LCD easily with 3Pins. If you dont know to use 3pin LCD interface board. Click on the bellow link.
It is a 5volt IC
It's Output current is below 40mA
It converts any signal into square wave
The time period of output square wave is same as input signal,So the frequency of input signal to be measured does not change when converting it to square
wave.
Arduino Digital and Analog Pins only withstand 5Volt and 40mA current.Any thing out of this Range damage your Arduino. Since ic 74LS14 uses 5volt and gives
the output current less than 40mA.It is safe to use this IC74LS14.
http://www.instructables.com/id/Arduino-Frequency-Counter/
Step 3: Schematic diagram
You can use any Oscillator circuit to measure frequency.I have used CD4047 which is a oscillator used for demo in this Schematic.
Step 4: Program Code(if you use 3 pin interface Board for LCD)
#include <Wire.h>
#include <LiquidCrystal_SR.h>
int pulseHigh; // Integer variable to capture High time of the incoming pulse
int pulseLow; // Integer variable to capture Low time of the incoming pulse
float pulseTotal; // Float variable to capture Total time of the incoming pulse
void setup() {
pinMode(pulsePin, INPUT);
lcd.begin(16, 2);
http://www.instructables.com/id/Arduino-Frequency-Counter/
lcd.setCursor(0, 0);
lcd.print("Instructables");
lcd.setCursor(0, 1);
delay(5000);
void loop() {
lcd.setCursor(0, 0);
lcd.print("Frequency is ");
lcd.setCursor(0, 1);
lcd.print(" ");
lcd.setCursor(0, 1);
lcd.print(frequency);
lcd.print(" Hz");
delay(500);
Step 5: Program code (if you use LCD without 3Pin interface Board)
#include <LiquidCrystal.h>
int pulseHigh; // Integer variable to capture High time of the incoming pulse
int pulseLow; // Integer variable to capture Low time of the incoming pulse
float pulseTotal; // Float variable to capture Total time of the incoming pulse
void setup() {
pinMode(pulsePin, INPUT);
lcd.begin(16, 2);
lcd.setCursor(0, 0);
lcd.print("Instructables");
lcd.setCursor(0, 1);
delay(5000);
void loop() {
lcd.setCursor(0, 0);
lcd.print("Frequency is ");
lcd.setCursor(0, 1);
lcd.print(" ");
lcd.print(" Hz");
delay(500);
Step 6: Video
Related Instructables
How to use
Arduino Mega
2560 as Arduino Arduino UNO Arduino Basic How to program Arduino Basics Program
isp by tsillen talk with Tutorial by Arduino Pro by Akhil ch Arduino Pro
Arduino UNO by TahmidZubayer Mini using Mini Using
masteruan Arduino Uno Arduino Uno by
and ArduShield vigneshraja
- without the
cables by
AwesomePCB
Advertisements
Comments
http://www.instructables.com/id/Arduino-Frequency-Counter/