Нема описа
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.

bme280_interface.h 264B

123456789101112131415
  1. #ifndef BME280_H
  2. #define BME280_H
  3. #include <stdint.h>
  4. //#include "bme280.h"
  5. /* AVR I/O pin definionts */
  6. #define BME_CSN_DDR DDRB
  7. #define BME_CSN_PORT PORTB
  8. #define BME_CSN_PIN PB6
  9. int8_t Initialize_BME280(void);
  10. void BME280_Get_Measurement(void);
  11. #endif