-
Notifications
You must be signed in to change notification settings - Fork 1k
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
- Loading branch information
Showing
11 changed files
with
145 additions
and
12 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
[submodule "protobufs"] | ||
path = protobufs | ||
url = https://github.com/meshtastic/protobufs.git | ||
url = https://github.com/jake-b/meshtastic-protobufs.git | ||
[submodule "meshtestic"] | ||
path = meshtestic | ||
url = https://github.com/meshtastic/meshTestic |
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
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,65 @@ | ||
#include "configuration.h" | ||
|
||
#if !MESHTASTIC_EXCLUDE_ENVIRONMENTAL_SENSOR | ||
|
||
#include "../mesh/generated/meshtastic/telemetry.pb.h" | ||
#include "CGRadSensSensor.h" | ||
#include "TelemetrySensor.h" | ||
#include <typeinfo> | ||
#include <Wire.h> | ||
|
||
CGRadSensSensor::CGRadSensSensor() : TelemetrySensor(meshtastic_TelemetrySensorType_RADSENS, "RadSens") {} | ||
|
||
int32_t CGRadSensSensor::runOnce() | ||
{ | ||
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) | ||
{ | ||
_wire = wire; | ||
_addr = addr; | ||
_wire->begin(); | ||
} | ||
|
||
float CGRadSensSensor::getStaticRadiation() | ||
{ | ||
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(); | ||
|
||
float microRadPerHr = float(data) / 10.0; | ||
return microRadPerHr; | ||
} | ||
} | ||
return -1.0; | ||
} | ||
|
||
bool CGRadSensSensor::getMetrics(meshtastic_Telemetry *measurement) | ||
{ | ||
LOG_INFO("getMetrics: ClimateGuard RadSense Geiger-Muller Sensor"); | ||
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,26 @@ | ||
#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 |