This commit is contained in:
2024-07-07 16:14:29 -04:00
parent cce4cba967
commit 6ca4cc8583
2 changed files with 5 additions and 5 deletions

View File

@@ -1,10 +1,10 @@
#include <Arduino.h> #include <Arduino.h>
#include <Wire.h> //#include <Wire.h>
#include <WiFiClientSecure.h> #include <WiFiClientSecure.h>
//#define BMP280 #define BMP280
#define BME280 //#define BME280
#ifdef BME280 #ifdef BME280
#include <Adafruit_BME280.h> #include <Adafruit_BME280.h>
@@ -57,7 +57,7 @@ void setup() {
#ifdef BMP280 #ifdef BMP280
//Adafruit_BMP280 bmp; //Adafruit_BMP280 bmp;
Adafruit_BME280 bmp; Adafruit_BME280 bmp;
unsigned status = bmp.begin(0x58); unsigned status = bmp.begin(0x76);
if (!status) { if (!status) {
Serial.println("Could not find a valid BME/BMP280 sensor, check wiring!"); Serial.println("Could not find a valid BME/BMP280 sensor, check wiring!");
Serial.print("SensorID was: 0x"); Serial.println(bmp.sensorID(), 16); Serial.print("SensorID was: 0x"); Serial.println(bmp.sensorID(), 16);

View File

@@ -17,7 +17,7 @@ Eco-system of ESP32s Nodes and ATtiny85 peripherals with different functionaliti
- programmable via [UART](https://github.com/alexandrebobkov/ESP-Nodes/tree/main?tab=readme-ov-file#uart) -> no need for serial drivers - programmable via [UART](https://github.com/alexandrebobkov/ESP-Nodes/tree/main?tab=readme-ov-file#uart) -> no need for serial drivers
### ESP32-WROOM-32D Module Adapter Pinouts ### ESP32-WROOM-32D Module Adapter Pinouts
<p>The adapter allows interchangability of ESP32 modules between different nodes. The adapter contains minimal components on its PCB, just enough to ensure module's operation.</p> <p>The adapter allows interchangability of ESP32 modules between different nodes. The adapter contains minimal components on its PCB, just enough to ensure module's operation. (ESP32 8-N-1)</p>
<img alt="ESP32-Node Pinout" src="https://github.com/alexandrebobkov/ESP-Nodes/blob/main/assets/ESP32-Node-pinout.png" width="350px"/> <img alt="ESP32-Node Pinout" src="https://github.com/alexandrebobkov/ESP-Nodes/blob/main/assets/ESP32-Node-pinout.png" width="350px"/>