#ifndef BME280_H #define BME280_H #include //#include "bme280.h" /* AVR I/O pin definionts */ #define BME_CSN_DDR DDRB #define BME_CSN_PORT PORTB #define BME_CSN_PIN PB6 int8_t Initialize_BME280(void); void BME280_Get_Measurement(void); #endif