How To Interface a CDV 700 Geiger Counter to a PC Using an Arduino Video instrucitons

How To Interface a CDV 700 Geiger Counter to a PC Using an Arduino (Part 1)

The second part of our video series of our project to interface to a CDV-700 radiation meter using an Arduino Uno!

How To Interface a CDV 700 Geiger Counter to a PC Using an Arduino (Part 2)

Code:

A video on our project to interface to a CDV-700 radiation meter using an Arduino Uno!

Here is the code mentioned in the video:

int count = 0;

void setup() {
Serial.begin(9600);
pinMode(2, INPUT);
digitalWrite(2, HIGH);
attachInterrupt(0, count_isr, FALLING);
}

How To Interface a CDV 700 Geiger Counter to a PC Using an Arduino (Part 1)

void loop(){
int i;
delay(1000);
i = count;
count= 0;
Serial.println(i);

}

void count_isr(){
count++;
}


About The Author

Ibrar Ayyub

I am an experienced technical writer holding a Master's degree in computer science from BZU Multan, Pakistan University. With a background spanning various industries, particularly in home automation and engineering, I have honed my skills in crafting clear and concise content. Proficient in leveraging infographics and diagrams, I strive to simplify complex concepts for readers. My strength lies in thorough research and presenting information in a structured and logical format.

Follow Us:
LinkedinTwitter

Leave a Comment

Your email address will not be published. Required fields are marked *

Scroll to Top