Skip to content

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
  • Loading branch information
mgrouch committed Dec 13, 2024
1 parent 153afd7 commit 73c39a6
Show file tree
Hide file tree
Showing 2 changed files with 24 additions and 0 deletions.
12 changes: 12 additions & 0 deletions i2c_bmp280.h
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
#ifndef i2c_bmp280_h
#define i2c_bmp280_h

#include <M5UnitENV.h>

#include "NmeaXDR.h"
#include "Nmea0183Msg.h"

BMP280 i2c_bmp280_sensor;
bool i2c_bmp280_found = false;

#endif
12 changes: 12 additions & 0 deletions i2c_dht12.h
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
#ifndef i2c_dht12_h
#define i2c_dht12_h

#include <M5UnitENV.h>

#include "NmeaXDR.h"
#include "Nmea0183Msg.h"

DHT12 i2c_dht12_sensor;
bool i2c_dht12_found = false;

#endif

0 comments on commit 73c39a6

Please sign in to comment.