From 7d9c8d890ae1f8b0b241c49ecfe5d496a6400423 Mon Sep 17 00:00:00 2001 From: Alexandre B Date: Sun, 7 Jul 2024 13:00:59 -0400 Subject: [PATCH] Update main.cpp --- ESP32-BME280/src/main.cpp | 11 ++++------- 1 file changed, 4 insertions(+), 7 deletions(-) diff --git a/ESP32-BME280/src/main.cpp b/ESP32-BME280/src/main.cpp index 92d38e76f..64d8bd1aa 100644 --- a/ESP32-BME280/src/main.cpp +++ b/ESP32-BME280/src/main.cpp @@ -7,15 +7,12 @@ int myFunction(int, int); void setup() { - // put your setup code here, to run once: - int result = myFunction(2, 3); + + Serial.begin(115200); + Serial.println(); + Serial.println("Running setup ..."); } void loop() { // put your main code here, to run repeatedly: -} - -// put function definitions here: -int myFunction(int x, int y) { - return x + y; } \ No newline at end of file