Merge branch 'master' into AddRAK12035VB_4.19.25

This commit is contained in:
Ben Meadors 2025-05-30 09:46:59 -05:00 committed by GitHub
commit 7d4e39d5cf
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with 4 additions and 4 deletions

View File

@ -9,7 +9,7 @@ plugins:
lint: lint:
enabled: enabled:
- checkov@3.2.435 - checkov@3.2.435
- renovate@40.33.8 - renovate@40.34.4
- prettier@3.5.3 - prettier@3.5.3
- trufflehog@3.88.34 - trufflehog@3.88.34
- yamllint@1.37.1 - yamllint@1.37.1

View File

@ -23,8 +23,8 @@ int32_t TSL2591Sensor::runOnce()
void TSL2591Sensor::setup() void TSL2591Sensor::setup()
{ {
tsl.setGain(TSL2591_GAIN_MED); // 25x gain tsl.setGain(TSL2591_GAIN_LOW); // 1x gain
tsl.setTiming(TSL2591_INTEGRATIONTIME_300MS); tsl.setTiming(TSL2591_INTEGRATIONTIME_100MS);
} }
bool TSL2591Sensor::getMetrics(meshtastic_Telemetry *measurement) bool TSL2591Sensor::getMetrics(meshtastic_Telemetry *measurement)
@ -41,4 +41,4 @@ bool TSL2591Sensor::getMetrics(meshtastic_Telemetry *measurement)
return true; return true;
} }
#endif #endif