-
Notifications
You must be signed in to change notification settings - Fork 964
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Support for the ClimateGuard RadSens Geiger-Muller tube (#5425)
- Loading branch information
Showing
9 changed files
with
154 additions
and
10 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,75 @@ | ||
/* | ||
* Support for the ClimateGuard RadSens Dosimeter | ||
* A fun and educational sensor for Meshtastic; not for safety critical applications. | ||
*/ | ||
#include "configuration.h" | ||
|
||
#if !MESHTASTIC_EXCLUDE_ENVIRONMENTAL_SENSOR | ||
|
||
#include "../mesh/generated/meshtastic/telemetry.pb.h" | ||
#include "CGRadSensSensor.h" | ||
#include "TelemetrySensor.h" | ||
#include <Wire.h> | ||
#include <typeinfo> | ||
|
||
CGRadSensSensor::CGRadSensSensor() : TelemetrySensor(meshtastic_TelemetrySensorType_RADSENS, "RadSens") {} | ||
|
||
int32_t CGRadSensSensor::runOnce() | ||
{ | ||
// Initialize the sensor following the same pattern as RCWL9620Sensor | ||
LOG_INFO("Init sensor: %s", sensorName); | ||
if (!hasSensor()) { | ||
return DEFAULT_SENSOR_MINIMUM_WAIT_TIME_BETWEEN_READS; | ||
} | ||
|
||
status = true; | ||
begin(nodeTelemetrySensorsMap[sensorType].second, nodeTelemetrySensorsMap[sensorType].first); | ||
|
||
return initI2CSensor(); | ||
} | ||
|
||
void CGRadSensSensor::setup() {} | ||
|
||
void CGRadSensSensor::begin(TwoWire *wire, uint8_t addr) | ||
{ | ||
// Store the Wire and address to the sensor following the same pattern as RCWL9620Sensor | ||
_wire = wire; | ||
_addr = addr; | ||
_wire->begin(); | ||
} | ||
|
||
float CGRadSensSensor::getStaticRadiation() | ||
{ | ||
// Read a register, following the same pattern as the RCWL9620Sensor | ||
uint32_t data; | ||
_wire->beginTransmission(_addr); // Transfer data to addr. | ||
_wire->write(0x06); // Radiation intensity (static period T = 500 sec) | ||
if (_wire->endTransmission() == 0) { | ||
if (_wire->requestFrom(_addr, (uint8_t)3)) { | ||
; // Request 3 bytes | ||
data = _wire->read(); | ||
data <<= 8; | ||
data |= _wire->read(); | ||
data <<= 8; | ||
data |= _wire->read(); | ||
|
||
// As per the data sheet for the RadSens | ||
// Register 0x06 contains the reading in 0.1 * μR / h | ||
float microRadPerHr = float(data) / 10.0; | ||
return microRadPerHr; | ||
} | ||
} | ||
return -1.0; | ||
} | ||
|
||
bool CGRadSensSensor::getMetrics(meshtastic_Telemetry *measurement) | ||
{ | ||
// Store the meansurement in the the appropriate fields of the protobuf | ||
measurement->variant.environment_metrics.has_radiation = true; | ||
|
||
LOG_DEBUG("CGRADSENS getMetrics"); | ||
measurement->variant.environment_metrics.radiation = getStaticRadiation(); | ||
|
||
return true; | ||
} | ||
#endif |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,30 @@ | ||
/* | ||
* Support for the ClimateGuard RadSens Dosimeter | ||
* A fun and educational sensor for Meshtastic; not for safety critical applications. | ||
*/ | ||
#include "configuration.h" | ||
|
||
#if !MESHTASTIC_EXCLUDE_ENVIRONMENTAL_SENSOR | ||
|
||
#include "../mesh/generated/meshtastic/telemetry.pb.h" | ||
#include "TelemetrySensor.h" | ||
#include <Wire.h> | ||
|
||
class CGRadSensSensor : public TelemetrySensor | ||
{ | ||
private: | ||
uint8_t _addr = 0x66; | ||
TwoWire *_wire = &Wire; | ||
|
||
protected: | ||
virtual void setup() override; | ||
void begin(TwoWire *wire = &Wire, uint8_t addr = 0x66); | ||
float getStaticRadiation(); | ||
|
||
public: | ||
CGRadSensSensor(); | ||
virtual int32_t runOnce() override; | ||
virtual bool getMetrics(meshtastic_Telemetry *measurement) override; | ||
}; | ||
|
||
#endif |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters