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

CDV 700 Geiger Counter

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);
}

CDV 700 Geiger Counter

 

Leave a Comment

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