Short description
I started from scratch, designing a complete dosimeter unit around the Atmel Atmega8 microcontroller and a Russian Geiger Muller tube. Here you'll see the CTC-1 tube, for high gamma doses, but the dosimeter can be used with any other tubes such as SBM-20, LND-712 or more sensitive ones such as the SBM-19 or the pancake tube SI-14B. Changing the tube requires changing the software, to adjust the dose conversion calculation. This circuit can be used with almost any geiger tube, as even the inverter's output voltage driving the tube is adjustable in the software.
Similar to my uRADMonitor, the microcontroller takes care of everything:
1. Generates a variable duty PWM signal using Timer1, to drive the 400V inverter needed to operate the Geiger tube; The invertor doesn't need a multiplier, as the ferrite's transformer secondary puts out exactly the amount required. The transformer is made on a A22 ferrite core, with 16 turns in the primary and 600 in the secondary.
2. Uses one ADC port to measure the inverter's voltage and adjust the PWM duty cycle for constant output (exactly 400V for stable operation)
3. Counts the time, using Timer0 so we can compute the dose
4. Uses interrupt INT0 to count the pulses produced by the Geiger tube
5. Drives a 2x16 LCD to output the results.
Some other circuits on the Internet come with improper 400V inverters (some people seem not to be able to design a proper inverter), they are redundant (using 555's and additional components, when the microcontroller can take care of EVERYTHING), use the wrong signal detection/counter circuit, or other small defects that result in wrong measurements. Not to mention the complicated aspect of computing dose in sieverts out of counts per minute.
Given all these wrong designs, my detector tries to fill in some of the gaps. So here is exactly what you need: a stable design, with several improvements made over time, all packed in this nice construction that you can easily replicate.
Some pictures

Circuit diagram:

Eagle SCH and PCB files:

I plan to add an UART Bluetooth module to enable remote operation (readings can be received on a phone running Android OS - I'll write a simple app for that), and a demo video - just didn't have the time to make it yet.
The software:
Here is the hex file needed to program the atmega8 : http://www.pocketmagic.net/wp-content/u ... 12/GMD.zip . More versions will follow as the project evolves.


