Z1A tube
Detects Beta and Gamma radiation.
Below copy&paste of the Z1A tube technical data (according to the distributor www.pollin.de; as of March 2022, the price was 15€):
> starting voltage 280…320 V
> working voltage 390 +/-10 V
> differential resistance 1.25 %/V
> max. discharge voltage >500 V
> max. radiation 15 R/h
> lifespan at 5 R/h > 150 h
> dimensions (length*diameter): ca. 65*7.5 mm
(note: I have no clear idea what exact physical unit is "R/h"; I presume it is sort of weighted radiant power)
SBM-20 tube
More sensitive. Can also detect only Beta and Gamma radiation. Technical data:
SBM-20_GER1.pdf (mikrocontroller.net)
I paid around 30€ including shipment from a seller in Bulgaria (tubes from Ukraine or Russia are not easy to get at the moment, you guess why).
Emitters
To test the assembly I use Uranium glass that is freely available (for obvious reasons, this matter doesn't radiate intensely).
MicroPython
The code can be quite short if it's just for the HV-generation:
from machine import Pin, PWM
import utime
pwm = PWM(Pin(13)) # pick your GPIO
pwm.freq(1250) # PWM-frequency (empirical)
pwm.duty_u16(55000) # duty cycle (empirical), 16bit (0-65535)
For now, a radiation source is either displayed visually (LED) or via clicks (speaker). But as we have a µC connected, there exist more clever ways to process the measurement data.
Schematic
VBUS = 5V (Pico Pin 40). Diode prevents immediate discharge of the capacitor and tube voltage is building up fast.
The LED is okay for a first test. Put in a 10 kOhm resistor if you don't use a LED.

EMC
The air wirings behave like an antenna and should be avoided for future prototypes. A ground plane for a PCB design is mandatory.
Simulation
Gave some insights about the principle of the voltage generation (self-induction) and will be used for ensuing designs.


Ideas and improvements
- Counting logic
- MQTT
- Speaker instead of LED (done)
- Opto-coupler
- PCB for better EMC behaviour
- ...
Nice! I've been looking to revive the project you've based this on, so if you find improvements over that previous schematic please add that to the logs!