Bez popisu
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 288B

123456789101112131415
  1. #ifndef BME280_H
  2. #define BME280_H
  3. #include <stdint.h>
  4. #include "bme280_defs.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(struct bme280_data * data);
  11. #endif