You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
| 123456789101112131415 |
- #ifndef BME280_H
- #define BME280_H
-
- #include <stdint.h>
- //#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
|