1
0
mirror of https://github.com/thooge/esp32-nmea2000-obp60.git synced 2025-12-16 15:33:05 +01:00

Add BMP280 Sensor and deprecated PGN 130311 for Raymarine

This commit is contained in:
free-x
2024-06-02 14:31:16 +02:00
parent 0bb6898d6e
commit dd13dd0418
9 changed files with 447 additions and 6 deletions

View File

@@ -21,6 +21,7 @@ static std::vector<IICGrove> iicGroveList;
#include "GwIicSensors.h"
#include "GwHardware.h"
#include "GwBME280.h"
#include "GwBMP280.h"
#include "GwQMP6988.h"
#include "GwSHT3X.h"
#include <map>
@@ -92,6 +93,7 @@ void initIicTask(GwApi *api){
creators.push_back(registerSHT3X(api,sensors));
creators.push_back(registerQMP6988(api,sensors));
creators.push_back(registerBME280(api,sensors));
creators.push_back(registerBMP280(api,sensors));
#ifdef _GWI_IIC1
addGroveItems(creators,api,sensors,"1",_GWI_IIC1);
#endif