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