The creator of the BetterGeiger S-1 has released a guide and an Arduino Uno sketch to use his device for basic spectrometry.
https://www.bettergeiger.com/s/Better-G ... de-V10.pdf
With minor changes to his sketch, it can be used directly with NuclearPhoenix' Gamma MCA https://spectrum.nuclearphoenix.xyz/ in serial histogram mode.
BetterGeiger S-1 radiation detector
-
RobertD
- Posts: 49
- Joined: 09 Jan 2023, 22:41
Re: BetterGeiger S-1 radiation detector
You do not have the required permissions to view the files attached to this post.
-
NuclearPhoenix
- Posts: 74
- Joined: 15 Aug 2022, 19:24
Re: BetterGeiger S-1 radiation detector
Hi Robert,
great to see that there is now an official way to read data from the device pretty easily.
And even with Arduino instructions, nice!
great to see that there is now an official way to read data from the device pretty easily.
And even with Arduino instructions, nice!
-
RobertD
- Posts: 49
- Joined: 09 Jan 2023, 22:41
Re: BetterGeiger S-1 radiation detector
Hi Matthias,
What I changed in the sketch:
- comment out all serial print commands except for the actual bin data and the line feed
- insert a separator after each bin value:
What I changed in the sketch:
- comment out all serial print commands except for the actual bin data and the line feed
- insert a separator after each bin value:
Code: Select all
for (int i = 0; i < 128; i++){Serial.print(spec[i], DEC); Serial.print(";");}
Serial.println(""); // move to next line