You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: Firmware/OpenLog_Artemis/OpenLog_Artemis.ino
+4-2Lines changed: 4 additions & 2 deletions
Original file line number
Diff line number
Diff line change
@@ -65,10 +65,10 @@
65
65
(done) Correct the measurement count misbehaviour (Issue #31)
66
66
(done) Use the corrected IMU temperature calculation (Issue #28)
67
67
(done) Add individual power-on delays for each sensor type. Add an extended delay for the SCD30. (Issue #5)
68
-
69
68
(done) v1.7: Fix readVin after sleep bug: https://github.com/sparkfun/OpenLog_Artemis/issues/39
70
-
71
69
(done) Change detectQwiicDevices so that the MCP9600 (Qwiic Thermocouple) is detected correctly
70
+
(done) Add support for the MPRLS0025PA micro pressure sensor
71
+
(done) Add support for the SN-GCJA5 particle sensor
72
72
*/
73
73
74
74
constint FIRMWARE_VERSION_MAJOR = 1;
@@ -199,6 +199,8 @@ ICM_20948_SPI myICM;
199
199
#include"SparkFun_Qwiic_Humidity_AHT20.h"//Click here to get the library: http://librarymanager/All#Qwiic_Humidity_AHT20 by SparkFun
200
200
#include"SparkFun_SHTC3.h"// Click here to get the library: http://librarymanager/All#SparkFun_SHTC3
201
201
#include"SparkFun_ADS122C04_ADC_Arduino_Library.h"// Click here to get the library: http://librarymanager/All#SparkFun_ADS122C04
202
+
#include"SparkFun_MicroPressure.h"// Click here to get the library: http://librarymanager/All#SparkFun_MicroPressure
203
+
#include"SparkFun_Particle_Sensor_SN-GCJA5_Arduino_Library.h"// Click here to get the library: http://librarymanager/All#SparkFun_Particle_Sensor_SN-GCJA5
Serial.printf("addDevice Device type not found: %d\r\n", deviceType);
230
242
break;
@@ -428,6 +440,25 @@ bool beginQwiicDevices()
428
440
temp->online = true;
429
441
}
430
442
break;
443
+
case DEVICE_PRESSURE_MPR0025PA1:
444
+
{
445
+
// TO DO: Figure out how to pass minimumPSI and maximumPSI when instantiating the sensor. Maybe add an update-_minPsi-and-_maxPsi function to the library?
0 commit comments