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
- NuclearPhoenix
- Posts: 74
- Joined: 15 Aug 2022, 19:24
- Location: Austria
- Contact:
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!
Matthias | https://nuclearphoenix.xyz
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 lineRobert
Who is online
Users browsing this forum: Google [Bot] and 34 guests