This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// | |
// ESP32 in DeepSleep reading a BME280 every few seconds | |
// | |
#include <Arduino.h> | |
#include <Wire.h> | |
#include <HardwareSerial.h> | |
#include <Adafruit_BME280.h> | |
#define SERIAL_BAUD 9600 |