The website (SparkFun Geiger Counter - SEN-11345 - SparkFun Electronics) gives some directions on what to do: "Simply plug the unit into USB (make sure you have FTDI drivers installed), open a terminal program to the correct COM port at 9600bps, and you will see random bits being generated from the random background radiation. Each bit generated (an ASCII byte 0 or 1) represents an actual event in the tube in real-time, so the output can be used to deduce CPM or what ever units you need."
I have the geiger counter connected to an SD card shield connected to the arduino, and the arduino is plugged into my laptop but I'm not sure how to get the CPM (counts per minute) data. Additionally, I'm unsure what the FTDI drivers are, I downloaded off of the link on their website but don't know what to with them. I'd appreciate any help at all. Thank you!
This is my current code:
//definitions
int Geiger;
float GeigerVolt;
float RadiationCount;
void setup() {
// put your setup code here, to run once:
Serial.begin(9600);
}
void loop() {
// put your main code here, to run repeatedly:
Geiger=analogRead(A2);
GeigerVolt=Geiger*(5.0/1023);
Yes, but I'm sending the geiger counter up in a balloonSat, and since I already have an arduino going up as well, I'd rather not have multiple devices to store data. So, I want to record the data on the Arduino.
Both of you, use code tags. Read the how to use the forum sticky post.
You only want to send something when you have a count not wen you do not or you spam the other side of your connection.
Use an if statement to only send a count when you have one.