RadiationMapping/RadiationMapper.ino

45 lines
1.1 KiB
Arduino
Raw Normal View History

#include <list>
#define INPUT_PIN D6 //VIN PIN FOR GEIGER COUNTER
#define MEASUREMENT_TIME_MS 60000 //MINUTE
std::list<unsigned long> counts; //COUNTS IN LAST MINUTE (OR MEASUREMENT_TIME_MS IF MODIFIED)
//CALLBACK WHEN RADIATION PARTICLE IS DETECTED
void IRAM_ATTR increment_counts()
{
counts.push_back(millis()); //APPEND CURRENT TIME TO LIST counts
}
void setup()
{
//SERIAL COMMUNICATION INIT
Serial.begin(9600);
//INIT PINS
pinMode(INPUT_PIN, INPUT);
2024-11-14 17:58:16 +01:00
attachInterrupt(digitalPinToInterrupt(INPUT_PIN), increment_counts, FALLING);
}
int last_counts = -1;
void loop()
{
unsigned long current_millis = millis(); //CURRENT TIME
int current_counts = 0;
//REMOVE COUNTS OLDER THAN MEASUREMENT_TIME_MS
counts.remove_if([current_millis](unsigned long particle) //haha, *lambda* (cries in pure-C)
{
return (current_millis - particle >= MEASUREMENT_TIME_MS);
});
//COUNT RECENT
current_counts = counts.size();
if (last_counts != current_counts) //PRINT CPM IF CHANGED
{
last_counts = current_counts;
Serial.println(String(current_counts) + " CPM");
}
}