Dashboard zeigt keine aktuellen Daten an

Ich habe mir eine Wetterstation gebaut, die die Daten über die IOT Cloud übermittelt.
Mein Programm kann ich ohne Probleme hochladen und über den Seriellen Monitor werden mir die Daten angezeigt, auch über das Dashboard werden die Daten zunächst angezeigt.

Nach ca. 3 Stunden (nie wirklich auf die genaue Zeit geachtet) werden keine neuen Daten mehr an die IOT Cloud übermittelt, auch wenn das Board dort als online angezeigt wird.
Meine aktuelle Lösung ist es das Programm immer wieder neu aufzuspielen. Das ist ja aber auch keine Lösung ... ich weiß auf jeden Fall nicht mehr weiter.

Kann mir jemand helfen dieses Problem zu lösen?

hier ist mein Code:

/*
  Sketch generated by the Arduino IoT Cloud Thing "Untitled"
  https://create.arduino.cc/cloud/things/15f4fa14-2298-4c75-aba6-40e17ee54ea2

  Arduino IoT Cloud Variables description

  The following variables are automatically generated and updated when changes are made to the Thing

  float luftdruck;
  CloudTemperatureSensor temperatur;
  CloudIlluminance helligkeit;
  int buttonPushCounter;
  int buttonState;
  int lastButtonState;
  int luftfeuchtigkeit;
  int regenSen;
  CloudVolume regenmenge;

  Variables which are marked as READ/WRITE in the Cloud Thing will also have functions
  which are called when their values are changed from the Dashboard.
  These functions are generated with the Thing and added at the end of this sketch.
*/

#include <ArduinoIoTCloud.h>

#include "thingProperties.h"

#include <BH1750.h>


#include <Wire.h>
#include <SPI.h>
#include <Adafruit_Sensor.h>
#include <Adafruit_BME280.h>



#define BME_SCK 13
#define BME_MISO 12
#define BME_MOSI 11
#define BME_CS 10

#define SEALEVELPRESSURE_HPA (1013.25)

Adafruit_BME280 bme; // I2C
//Adafruit_BME280 bme(BME_CS); // hardware SPI
//Adafruit_BME280 bme(BME_CS, BME_MOSI, BME_MISO, BME_SCK); // software SPI

unsigned long delayTime;


BH1750 lightMeter;

#include "RTClib.h"

RTC_DS3231 rtck;


char daysOfTheWeek[7][12] = {"Sunday", "Monday", "Tuesday", "Wednesday", "Thursday", "Friday", "Saturday"};




void setup() {


  // Initialize serial and wait for port to open:
  Serial.begin(9600);
  // This delay gives the chance to wait for a Serial Monitor without blocking if none is found
  delay(1500);

  // Defined in thingProperties.h
  initProperties();

  // Connect to Arduino IoT Cloud
  ArduinoCloud.begin(ArduinoIoTPreferredConnection);

  /*
     The following function allows you to obtain more information
     related to the state of network and IoT Cloud connection and errors
     the higher number the more granular information you’ll get.
     The default is 0 (only errors).
     Maximum is 4
  */
  setDebugMessageLevel(2);
  ArduinoCloud.printDebugInfo();

  Wire.begin();

  pinMode(2, INPUT);

  lightMeter.begin();
  Serial.println(F("BH1750 Test"));

  while (!Serial);   // time to get serial running
  Serial.println(F("BME280 test"));

  unsigned status;

  // default settings
  status = bme.begin(0x77);
  // You can also pass in a Wire library object like &Wire2
  // status = bme.begin(0x76, &Wire2)
  if (!status) {
    Serial.println("Could not find a valid BME280 sensor, check wiring, address, sensor ID!");
    Serial.print("SensorID was: 0x"); Serial.println(bme.sensorID(), 16);
    Serial.print("        ID of 0xFF probably means a bad address, a BMP 180 or BMP 085\n");
    Serial.print("   ID of 0x56-0x58 represents a BMP 280,\n");
    Serial.print("        ID of 0x60 represents a BME 280.\n");
    Serial.print("        ID of 0x61 represents a BME 680.\n");
    while (1) delay(10);
  }

  Serial.println("-- Default Test --");
  delayTime = 1000;

  Serial.println();

#ifndef ESP8266
  while (!Serial); // wait for serial port to connect. Needed for native USB
#endif

#ifndef ESP8266
  while (!Serial); // wait for serial port to connect. Needed for native USB
#endif

  if (! rtck.begin()) {
    Serial.println("Couldn't find RTC");
    Serial.flush();
    abort();
  }

  Serial.println("Setting the time...");
  // When time needs to be set on a new device, or after a power loss, the
  // following line sets the RTC to the date & time this sketch was compiled
  rtck.adjust(DateTime(F(__DATE__), F(__TIME__)));
  // This line sets the RTC with an explicit date & time, for example to set
  // January 21, 2014 at 3am you would call:
  // rtc.adjust(DateTime(2014, 1, 21, 3, 0, 0));

}

void loop() {
  ArduinoCloud.update();
  // Your code here

 
  // read the pushbutton input pin:
  buttonState = digitalRead(2);

  // compare the buttonState to its previous state
  if (buttonState != lastButtonState) {
    
    // if the state has changed, increment the counter
    if (buttonState == HIGH) {
      
      // if the current state is HIGH then the button went from off to on:
      buttonPushCounter++;
    }
  }
  
  // Delay a little bit to avoid bouncing
  delay(50);

  regenmenge = buttonPushCounter * 0.45;

  delay(50);
  
 DateTime now = rtck.now();


  if (now.hour() == 22) {
    if (now.minute() == 1) {
      if (now.second() == 1){
           buttonPushCounter = 0;
      }
    }
  }

  delay(50);

  luftdruck = bme.readPressure() / 100.0F;

  luftfeuchtigkeit = bme.readHumidity() ;

  temperatur = bme.readTemperature();

  helligkeit = lightMeter.readLightLevel();

  float lux = lightMeter.readLightLevel();



  Serial.print("Light: ");
  Serial.print(lux);
  Serial.println(" lx");
  delay(50);

  printValues();
  delay(50);

  Serial.println("--------------------");
  Serial.print(now.day(), DEC);
  Serial.print('/');
  Serial.print(now.month(), DEC);
  Serial.print('/');
  Serial.print(now.year(), DEC );
  Serial.print(" (");
  Serial.print(daysOfTheWeek[now.dayOfTheWeek()]);
  Serial.print(") ");
  Serial.print(now.hour(), DEC);
  Serial.print(':');
  Serial.print(now.minute(), DEC);
  Serial.print(':');
  Serial.println(now.second(), DEC);

  delay(50);
  
  Serial.print("heutige Regenmenge: ");
  Serial.print(regenmenge);
  Serial.println(" l");

}

void printValues() {

  Serial.print("Temperature = ");
  Serial.print(bme.readTemperature());
  Serial.println(" °C");

  delay(50);


  Serial.print("Pressure = ");
  Serial.print(bme.readPressure() / 100.0F);
  Serial.println(" hPa");

  delay(50);


  Serial.print("Approx. Altitude = ");
  Serial.print(bme.readAltitude(SEALEVELPRESSURE_HPA));
  Serial.println(" m");

  delay(50);

  Serial.print("Humidity = ");
  Serial.print(bme.readHumidity());
  Serial.println(" %");

  delay(50);

  Serial.println();
  Serial.println();



}




kurze Frage dazu: Auf welchem Board läuft das?

Arduino nano 33 iot

Danke - ok, dann bin ich aber erstmal hardwaremäßig raus.
Zwei Gedanken trotzdem dazu; So als eine Art Grundlage.
In den Einstellungen der IDE -> DATEI -> VOREINSTELLUNGEN
die ausführlichen Ausgaben aktivieren
grafik
(Screenshot aus der Version 1.8.19 - in den 2er Versionen siehts evtl. anders aus)
und auch wenn der Code durchläuft und auf den Controller geladen wird dann unten im Ausgabefenster durchscrollen, ob es irgendwo eine Warnung gibt. (Wird IMHO immer in rot angezeigt)

Und dann nicht den Code wieder neu aufspielen, sondern einfach mal nur reset auslösen.
Das sollte den selben Effekt haben.

Das kann man doch im Web Editor gar nicht auswählen, oder liege ich da falsch.

Ups.
Wie bekommst Du den Code denn auf den Controller? Der muss ja vorher auch kompiliert werden. - Ok, ich werd mich mal mit dem Ding beschäftigen müssen....

Entweder schließe ich das Board per Kabel an den PC oder ich überspiele ihn übers Netz.
Für Mein THING musste ich den Controller ja direkt einfügen und dann wurde der passend konfiguriert.

Ok, ich habs gefunden...
Ich kann Dir jetzt schon sagen, das es ein nettes Spielzeug ist, aber definitiv nicht meins - aber das ist vermutlich nur (m)eine Befindlichkeit.
Auf der linken Seite die Preferences und dort den Haken unter ADVANCED OPTIONS setzen

[EDIT!]
Vergiss es! Der WebEditor ist nicht zu gebrauchen.
Der Kurzsketch:

/*

*/

void setup() {
  
 Serial.begin(9600);
 
}
int b;
void loop() {
  
  for (int a=0; a<11; a++) {
  switch(a)
  {
    case 0:
    b=1;
    case 1:
    b=2;
    break;
  }
  Serial.print("A= ");
  Serial.println(a);
  delay(5000);
  Serial.println("Das ist ein langer Testtext!");
  Serial.println();
  
  }
  
  delay(10000);
  
}

läuft im Webeditor fehler und warnungsfrei durch:



/usr/local/bin/arduino-cli compile --fqbn arduino:avr:mega:cpu=atmega2560 --build-cache-path /tmp --output-dir /tmp/3769646199/build --build-path /tmp/arduino-build-EBB2B3A7B08C362BC266AACFAD5CDA75 -v /tmp/3769646199/sketch_dec22a

FQBN: arduino:avr:mega

Using board 'mega' from platform in folder: /home/builder/.arduino15/packages/arduino/hardware/avr/1.8.6

Using core 'arduino' from platform in folder: /home/builder/.arduino15/packages/arduino/hardware/avr/1.8.6

Detecting libraries used...

/home/builder/.arduino15/packages/arduino/tools/avr-gcc/7.3.0-atmel3.6.1-arduino7/bin/avr-g++ -c -g -Os -w -std=gnu++11 -fpermissive -fno-exceptions -ffunction-sections -fdata-sections -fno-threadsafe-statics -Wno-error=narrowing -flto -w -x c++ -E -CC -mmcu=atmega2560 -DF_CPU=16000000L -DARDUINO=10607 -DARDUINO_AVR_MEGA2560 -DARDUINO_ARCH_AVR -I/home/builder/.arduino15/packages/arduino/hardware/avr/1.8.6/cores/arduino -I/home/builder/.arduino15/packages/arduino/hardware/avr/1.8.6/variants/mega /tmp/arduino-build-EBB2B3A7B08C362BC266AACFAD5CDA75/sketch/sketch_dec22a.ino.cpp -o /dev/null

Generating function prototypes...

/home/builder/.arduino15/packages/arduino/tools/avr-gcc/7.3.0-atmel3.6.1-arduino7/bin/avr-g++ -c -g -Os -w -std=gnu++11 -fpermissive -fno-exceptions -ffunction-sections -fdata-sections -fno-threadsafe-statics -Wno-error=narrowing -flto -w -x c++ -E -CC -mmcu=atmega2560 -DF_CPU=16000000L -DARDUINO=10607 -DARDUINO_AVR_MEGA2560 -DARDUINO_ARCH_AVR -I/home/builder/.arduino15/packages/arduino/hardware/avr/1.8.6/cores/arduino -I/home/builder/.arduino15/packages/arduino/hardware/avr/1.8.6/variants/mega /tmp/arduino-build-EBB2B3A7B08C362BC266AACFAD5CDA75/sketch/sketch_dec22a.ino.cpp -o /tmp/arduino-build-EBB2B3A7B08C362BC266AACFAD5CDA75/preproc/sketch_merged.cpp

/home/builder/.arduino15/packages/builtin/tools/ctags/5.8-arduino11/ctags -u --language-force=c++ -f - --c++-kinds=svpf --fields=KSTtzns --line-directives /tmp/arduino-build-EBB2B3A7B08C362BC266AACFAD5CDA75/preproc/sketch_merged.cpp

Compiling sketch...

/home/builder/.arduino15/packages/arduino/tools/avr-gcc/7.3.0-atmel3.6.1-arduino7/bin/avr-g++ -c -g -Os -w -std=gnu++11 -fpermissive -fno-exceptions -ffunction-sections -fdata-sections -fno-threadsafe-statics -Wno-error=narrowing -MMD -flto -mmcu=atmega2560 -DF_CPU=16000000L -DARDUINO=10607 -DARDUINO_AVR_MEGA2560 -DARDUINO_ARCH_AVR -I/home/builder/.arduino15/packages/arduino/hardware/avr/1.8.6/cores/arduino -I/home/builder/.arduino15/packages/arduino/hardware/avr/1.8.6/variants/mega /tmp/arduino-build-EBB2B3A7B08C362BC266AACFAD5CDA75/sketch/sketch_dec22a.ino.cpp -o /tmp/arduino-build-EBB2B3A7B08C362BC266AACFAD5CDA75/sketch/sketch_dec22a.ino.cpp.o

Compiling libraries...

Compiling core...

Using precompiled core: /tmp/core/arduino_avr_mega_cpu_atmega2560_2d9ca7a8837208bf7e7d24956bac8285/core.a

Linking everything together...

/home/builder/.arduino15/packages/arduino/tools/avr-gcc/7.3.0-atmel3.6.1-arduino7/bin/avr-gcc -w -Os -g -flto -fuse-linker-plugin -Wl,--gc-sections -mmcu=atmega2560 -o /tmp/arduino-build-EBB2B3A7B08C362BC266AACFAD5CDA75/sketch_dec22a.ino.elf /tmp/arduino-build-EBB2B3A7B08C362BC266AACFAD5CDA75/sketch/sketch_dec22a.ino.cpp.o /tmp/arduino-build-EBB2B3A7B08C362BC266AACFAD5CDA75/../core/arduino_avr_mega_cpu_atmega2560_2d9ca7a8837208bf7e7d24956bac8285/core.a -L/tmp/arduino-build-EBB2B3A7B08C362BC266AACFAD5CDA75 -lm

/home/builder/.arduino15/packages/arduino/tools/avr-gcc/7.3.0-atmel3.6.1-arduino7/bin/avr-objcopy -O ihex -j .eeprom --set-section-flags=.eeprom=alloc,load --no-change-warnings --change-section-lma .eeprom=0 /tmp/arduino-build-EBB2B3A7B08C362BC266AACFAD5CDA75/sketch_dec22a.ino.elf /tmp/arduino-build-EBB2B3A7B08C362BC266AACFAD5CDA75/sketch_dec22a.ino.eep

/home/builder/.arduino15/packages/arduino/tools/avr-gcc/7.3.0-atmel3.6.1-arduino7/bin/avr-objcopy -O ihex -R .eeprom /tmp/arduino-build-EBB2B3A7B08C362BC266AACFAD5CDA75/sketch_dec22a.ino.elf /tmp/arduino-build-EBB2B3A7B08C362BC266AACFAD5CDA75/sketch_dec22a.ino.hex

/home/builder/.arduino15/packages/arduino/tools/avr-gcc/7.3.0-atmel3.6.1-arduino7/bin/avr-size -A /tmp/arduino-build-EBB2B3A7B08C362BC266AACFAD5CDA75/sketch_dec22a.ino.elf

Sketch uses 2278 bytes (0%) of program storage space. Maximum is 253952 bytes.

Global variables use 220 bytes (2%) of dynamic memory, leaving 7972 bytes for local variables. Maximum is 8192 bytes.

Used platform Version Path

arduino:avr 1.8.6 /home/builder/.arduino15/packages/arduino/hardware/avr/1.8.6

Der selbe Code in der IDE 1.8.19 brigt mir die erwarteteten Warnungen:











/home/user1/arduino-1.8.19/arduino-builder -dump-prefs -logger=machine -hardware /home/user1/arduino-1.8.19/hardware -hardware /home/user1/arduino-1.8.19/portable/packages -tools /home/user1/arduino-1.8.19/tools-builder -tools /home/user1/arduino-1.8.19/hardware/tools/avr -tools /home/user1/arduino-1.8.19/portable/packages -built-in-libraries /home/user1/arduino-1.8.19/libraries -libraries /home/user1/arduino-1.8.19/portable/sketchbook/libraries -fqbn=arduino:avr:mega:cpu=atmega2560 -ide-version=10819 -build-path /tmp/arduino_build_163934 -warnings=all -build-cache /tmp/arduino_cache_963073 -prefs=build.warn_data_percentage=75 -prefs=runtime.tools.avr-gcc.path=/home/user1/arduino-1.8.19/portable/packages/arduino/tools/avr-gcc/7.3.0-atmel3.6.1-arduino7 -prefs=runtime.tools.avr-gcc-7.3.0-atmel3.6.1-arduino7.path=/home/user1/arduino-1.8.19/portable/packages/arduino/tools/avr-gcc/7.3.0-atmel3.6.1-arduino7 -prefs=runtime.tools.arduinoOTA.path=/home/user1/arduino-1.8.19/hardware/tools/avr -prefs=runtime.tools.arduinoOTA-1.3.0.path=/home/user1/arduino-1.8.19/hardware/tools/avr -prefs=runtime.tools.avrdude.path=/home/user1/arduino-1.8.19/hardware/tools/avr -prefs=runtime.tools.avrdude-6.3.0-arduino17.path=/home/user1/arduino-1.8.19/hardware/tools/avr -verbose /tmp/arduino_modified_sketch_907195/sketch_aug02a.ino
/home/user1/arduino-1.8.19/arduino-builder -compile -logger=machine -hardware /home/user1/arduino-1.8.19/hardware -hardware /home/user1/arduino-1.8.19/portable/packages -tools /home/user1/arduino-1.8.19/tools-builder -tools /home/user1/arduino-1.8.19/hardware/tools/avr -tools /home/user1/arduino-1.8.19/portable/packages -built-in-libraries /home/user1/arduino-1.8.19/libraries -libraries /home/user1/arduino-1.8.19/portable/sketchbook/libraries -fqbn=arduino:avr:mega:cpu=atmega2560 -ide-version=10819 -build-path /tmp/arduino_build_163934 -warnings=all -build-cache /tmp/arduino_cache_963073 -prefs=build.warn_data_percentage=75 -prefs=runtime.tools.avr-gcc.path=/home/user1/arduino-1.8.19/portable/packages/arduino/tools/avr-gcc/7.3.0-atmel3.6.1-arduino7 -prefs=runtime.tools.avr-gcc-7.3.0-atmel3.6.1-arduino7.path=/home/user1/arduino-1.8.19/portable/packages/arduino/tools/avr-gcc/7.3.0-atmel3.6.1-arduino7 -prefs=runtime.tools.arduinoOTA.path=/home/user1/arduino-1.8.19/hardware/tools/avr -prefs=runtime.tools.arduinoOTA-1.3.0.path=/home/user1/arduino-1.8.19/hardware/tools/avr -prefs=runtime.tools.avrdude.path=/home/user1/arduino-1.8.19/hardware/tools/avr -prefs=runtime.tools.avrdude-6.3.0-arduino17.path=/home/user1/arduino-1.8.19/hardware/tools/avr -verbose /tmp/arduino_modified_sketch_907195/sketch_aug02a.ino
Using board 'mega' from platform in folder: /home/user1/arduino-1.8.19/hardware/arduino/avr
Using core 'arduino' from platform in folder: /home/user1/arduino-1.8.19/hardware/arduino/avr
Detecting libraries used...
/home/user1/arduino-1.8.19/portable/packages/arduino/tools/avr-gcc/7.3.0-atmel3.6.1-arduino7/bin/avr-g++ -c -g -Os -w -std=gnu++11 -fpermissive -fno-exceptions -ffunction-sections -fdata-sections -fno-threadsafe-statics -Wno-error=narrowing -flto -w -x c++ -E -CC -mmcu=atmega2560 -DF_CPU=16000000L -DARDUINO=10819 -DARDUINO_AVR_MEGA2560 -DARDUINO_ARCH_AVR -I/home/user1/arduino-1.8.19/hardware/arduino/avr/cores/arduino -I/home/user1/arduino-1.8.19/hardware/arduino/avr/variants/mega /tmp/arduino_build_163934/sketch/sketch_aug02a.ino.cpp -o /dev/null
Generating function prototypes...
/home/user1/arduino-1.8.19/portable/packages/arduino/tools/avr-gcc/7.3.0-atmel3.6.1-arduino7/bin/avr-g++ -c -g -Os -w -std=gnu++11 -fpermissive -fno-exceptions -ffunction-sections -fdata-sections -fno-threadsafe-statics -Wno-error=narrowing -flto -w -x c++ -E -CC -mmcu=atmega2560 -DF_CPU=16000000L -DARDUINO=10819 -DARDUINO_AVR_MEGA2560 -DARDUINO_ARCH_AVR -I/home/user1/arduino-1.8.19/hardware/arduino/avr/cores/arduino -I/home/user1/arduino-1.8.19/hardware/arduino/avr/variants/mega /tmp/arduino_build_163934/sketch/sketch_aug02a.ino.cpp -o /tmp/arduino_build_163934/preproc/ctags_target_for_gcc_minus_e.cpp
/home/user1/arduino-1.8.19/tools-builder/ctags/5.8-arduino11/ctags -u --language-force=c++ -f - --c++-kinds=svpf --fields=KSTtzns --line-directives /tmp/arduino_build_163934/preproc/ctags_target_for_gcc_minus_e.cpp
Sketch wird kompiliert...
/home/user1/arduino-1.8.19/portable/packages/arduino/tools/avr-gcc/7.3.0-atmel3.6.1-arduino7/bin/avr-g++ -c -g -Os -Wall -Wextra -std=gnu++11 -fpermissive -fno-exceptions -ffunction-sections -fdata-sections -fno-threadsafe-statics -Wno-error=narrowing -MMD -flto -mmcu=atmega2560 -DF_CPU=16000000L -DARDUINO=10819 -DARDUINO_AVR_MEGA2560 -DARDUINO_ARCH_AVR -I/home/user1/arduino-1.8.19/hardware/arduino/avr/cores/arduino -I/home/user1/arduino-1.8.19/hardware/arduino/avr/variants/mega /tmp/arduino_build_163934/sketch/sketch_aug02a.ino.cpp -o /tmp/arduino_build_163934/sketch/sketch_aug02a.ino.cpp.o
/tmp/arduino_modified_sketch_907195/sketch_aug02a.ino: In function 'void loop()':
/tmp/arduino_modified_sketch_907195/sketch_aug02a.ino:17:6: warning: this statement may fall through [-Wimplicit-fallthrough=]
     b=1;
     ~^~
/tmp/arduino_modified_sketch_907195/sketch_aug02a.ino:18:5: note: here
     case 1:
     ^~~~
Compiling libraries...
Compiling core...
/home/user1/arduino-1.8.19/portable/packages/arduino/tools/avr-gcc/7.3.0-atmel3.6.1-arduino7/bin/avr-gcc -c -g -x assembler-with-cpp -flto -MMD -mmcu=atmega2560 -DF_CPU=16000000L -DARDUINO=10819 -DARDUINO_AVR_MEGA2560 -DARDUINO_ARCH_AVR -I/home/user1/arduino-1.8.19/hardware/arduino/avr/cores/arduino -I/home/user1/arduino-1.8.19/hardware/arduino/avr/variants/mega /home/user1/arduino-1.8.19/hardware/arduino/avr/cores/arduino/wiring_pulse.S -o /tmp/arduino_build_163934/core/wiring_pulse.S.o
/home/user1/arduino-1.8.19/portable/packages/arduino/tools/avr-gcc/7.3.0-atmel3.6.1-arduino7/bin/avr-gcc -c -g -Os -Wall -Wextra -std=gnu11 -ffunction-sections -fdata-sections -MMD -flto -fno-fat-lto-objects -mmcu=atmega2560 -DF_CPU=16000000L -DARDUINO=10819 -DARDUINO_AVR_MEGA2560 -DARDUINO_ARCH_AVR -I/home/user1/arduino-1.8.19/hardware/arduino/avr/cores/arduino -I/home/user1/arduino-1.8.19/hardware/arduino/avr/variants/mega /home/user1/arduino-1.8.19/hardware/arduino/avr/cores/arduino/hooks.c -o /tmp/arduino_build_163934/core/hooks.c.o
/home/user1/arduino-1.8.19/portable/packages/arduino/tools/avr-gcc/7.3.0-atmel3.6.1-arduino7/bin/avr-gcc -c -g -Os -Wall -Wextra -std=gnu11 -ffunction-sections -fdata-sections -MMD -flto -fno-fat-lto-objects -mmcu=atmega2560 -DF_CPU=16000000L -DARDUINO=10819 -DARDUINO_AVR_MEGA2560 -DARDUINO_ARCH_AVR -I/home/user1/arduino-1.8.19/hardware/arduino/avr/cores/arduino -I/home/user1/arduino-1.8.19/hardware/arduino/avr/variants/mega /home/user1/arduino-1.8.19/hardware/arduino/avr/cores/arduino/WInterrupts.c -o /tmp/arduino_build_163934/core/WInterrupts.c.o
/home/user1/arduino-1.8.19/portable/packages/arduino/tools/avr-gcc/7.3.0-atmel3.6.1-arduino7/bin/avr-gcc -c -g -Os -Wall -Wextra -std=gnu11 -ffunction-sections -fdata-sections -MMD -flto -fno-fat-lto-objects -mmcu=atmega2560 -DF_CPU=16000000L -DARDUINO=10819 -DARDUINO_AVR_MEGA2560 -DARDUINO_ARCH_AVR -I/home/user1/arduino-1.8.19/hardware/arduino/avr/cores/arduino -I/home/user1/arduino-1.8.19/hardware/arduino/avr/variants/mega /home/user1/arduino-1.8.19/hardware/arduino/avr/cores/arduino/wiring_analog.c -o /tmp/arduino_build_163934/core/wiring_analog.c.o
/home/user1/arduino-1.8.19/portable/packages/arduino/tools/avr-gcc/7.3.0-atmel3.6.1-arduino7/bin/avr-gcc -c -g -Os -Wall -Wextra -std=gnu11 -ffunction-sections -fdata-sections -MMD -flto -fno-fat-lto-objects -mmcu=atmega2560 -DF_CPU=16000000L -DARDUINO=10819 -DARDUINO_AVR_MEGA2560 -DARDUINO_ARCH_AVR -I/home/user1/arduino-1.8.19/hardware/arduino/avr/cores/arduino -I/home/user1/arduino-1.8.19/hardware/arduino/avr/variants/mega /home/user1/arduino-1.8.19/hardware/arduino/avr/cores/arduino/wiring.c -o /tmp/arduino_build_163934/core/wiring.c.o
/home/user1/arduino-1.8.19/portable/packages/arduino/tools/avr-gcc/7.3.0-atmel3.6.1-arduino7/bin/avr-gcc -c -g -Os -Wall -Wextra -std=gnu11 -ffunction-sections -fdata-sections -MMD -flto -fno-fat-lto-objects -mmcu=atmega2560 -DF_CPU=16000000L -DARDUINO=10819 -DARDUINO_AVR_MEGA2560 -DARDUINO_ARCH_AVR -I/home/user1/arduino-1.8.19/hardware/arduino/avr/cores/arduino -I/home/user1/arduino-1.8.19/hardware/arduino/avr/variants/mega /home/user1/arduino-1.8.19/hardware/arduino/avr/cores/arduino/wiring_digital.c -o /tmp/arduino_build_163934/core/wiring_digital.c.o
/home/user1/arduino-1.8.19/portable/packages/arduino/tools/avr-gcc/7.3.0-atmel3.6.1-arduino7/bin/avr-gcc -c -g -Os -Wall -Wextra -std=gnu11 -ffunction-sections -fdata-sections -MMD -flto -fno-fat-lto-objects -mmcu=atmega2560 -DF_CPU=16000000L -DARDUINO=10819 -DARDUINO_AVR_MEGA2560 -DARDUINO_ARCH_AVR -I/home/user1/arduino-1.8.19/hardware/arduino/avr/cores/arduino -I/home/user1/arduino-1.8.19/hardware/arduino/avr/variants/mega /home/user1/arduino-1.8.19/hardware/arduino/avr/cores/arduino/wiring_pulse.c -o /tmp/arduino_build_163934/core/wiring_pulse.c.o
/home/user1/arduino-1.8.19/portable/packages/arduino/tools/avr-gcc/7.3.0-atmel3.6.1-arduino7/bin/avr-gcc -c -g -Os -Wall -Wextra -std=gnu11 -ffunction-sections -fdata-sections -MMD -flto -fno-fat-lto-objects -mmcu=atmega2560 -DF_CPU=16000000L -DARDUINO=10819 -DARDUINO_AVR_MEGA2560 -DARDUINO_ARCH_AVR -I/home/user1/arduino-1.8.19/hardware/arduino/avr/cores/arduino -I/home/user1/arduino-1.8.19/hardware/arduino/avr/variants/mega /home/user1/arduino-1.8.19/hardware/arduino/avr/cores/arduino/wiring_shift.c -o /tmp/arduino_build_163934/core/wiring_shift.c.o
/home/user1/arduino-1.8.19/portable/packages/arduino/tools/avr-gcc/7.3.0-atmel3.6.1-arduino7/bin/avr-g++ -c -g -Os -Wall -Wextra -std=gnu++11 -fpermissive -fno-exceptions -ffunction-sections -fdata-sections -fno-threadsafe-statics -Wno-error=narrowing -MMD -flto -mmcu=atmega2560 -DF_CPU=16000000L -DARDUINO=10819 -DARDUINO_AVR_MEGA2560 -DARDUINO_ARCH_AVR -I/home/user1/arduino-1.8.19/hardware/arduino/avr/cores/arduino -I/home/user1/arduino-1.8.19/hardware/arduino/avr/variants/mega /home/user1/arduino-1.8.19/hardware/arduino/avr/cores/arduino/CDC.cpp -o /tmp/arduino_build_163934/core/CDC.cpp.o
/home/user1/arduino-1.8.19/portable/packages/arduino/tools/avr-gcc/7.3.0-atmel3.6.1-arduino7/bin/avr-g++ -c -g -Os -Wall -Wextra -std=gnu++11 -fpermissive -fno-exceptions -ffunction-sections -fdata-sections -fno-threadsafe-statics -Wno-error=narrowing -MMD -flto -mmcu=atmega2560 -DF_CPU=16000000L -DARDUINO=10819 -DARDUINO_AVR_MEGA2560 -DARDUINO_ARCH_AVR -I/home/user1/arduino-1.8.19/hardware/arduino/avr/cores/arduino -I/home/user1/arduino-1.8.19/hardware/arduino/avr/variants/mega /home/user1/arduino-1.8.19/hardware/arduino/avr/cores/arduino/HardwareSerial.cpp -o /tmp/arduino_build_163934/core/HardwareSerial.cpp.o
/home/user1/arduino-1.8.19/portable/packages/arduino/tools/avr-gcc/7.3.0-atmel3.6.1-arduino7/bin/avr-g++ -c -g -Os -Wall -Wextra -std=gnu++11 -fpermissive -fno-exceptions -ffunction-sections -fdata-sections -fno-threadsafe-statics -Wno-error=narrowing -MMD -flto -mmcu=atmega2560 -DF_CPU=16000000L -DARDUINO=10819 -DARDUINO_AVR_MEGA2560 -DARDUINO_ARCH_AVR -I/home/user1/arduino-1.8.19/hardware/arduino/avr/cores/arduino -I/home/user1/arduino-1.8.19/hardware/arduino/avr/variants/mega /home/user1/arduino-1.8.19/hardware/arduino/avr/cores/arduino/HardwareSerial0.cpp -o /tmp/arduino_build_163934/core/HardwareSerial0.cpp.o
/home/user1/arduino-1.8.19/portable/packages/arduino/tools/avr-gcc/7.3.0-atmel3.6.1-arduino7/bin/avr-g++ -c -g -Os -Wall -Wextra -std=gnu++11 -fpermissive -fno-exceptions -ffunction-sections -fdata-sections -fno-threadsafe-statics -Wno-error=narrowing -MMD -flto -mmcu=atmega2560 -DF_CPU=16000000L -DARDUINO=10819 -DARDUINO_AVR_MEGA2560 -DARDUINO_ARCH_AVR -I/home/user1/arduino-1.8.19/hardware/arduino/avr/cores/arduino -I/home/user1/arduino-1.8.19/hardware/arduino/avr/variants/mega /home/user1/arduino-1.8.19/hardware/arduino/avr/cores/arduino/HardwareSerial1.cpp -o /tmp/arduino_build_163934/core/HardwareSerial1.cpp.o
/home/user1/arduino-1.8.19/portable/packages/arduino/tools/avr-gcc/7.3.0-atmel3.6.1-arduino7/bin/avr-g++ -c -g -Os -Wall -Wextra -std=gnu++11 -fpermissive -fno-exceptions -ffunction-sections -fdata-sections -fno-threadsafe-statics -Wno-error=narrowing -MMD -flto -mmcu=atmega2560 -DF_CPU=16000000L -DARDUINO=10819 -DARDUINO_AVR_MEGA2560 -DARDUINO_ARCH_AVR -I/home/user1/arduino-1.8.19/hardware/arduino/avr/cores/arduino -I/home/user1/arduino-1.8.19/hardware/arduino/avr/variants/mega /home/user1/arduino-1.8.19/hardware/arduino/avr/cores/arduino/HardwareSerial2.cpp -o /tmp/arduino_build_163934/core/HardwareSerial2.cpp.o
/home/user1/arduino-1.8.19/portable/packages/arduino/tools/avr-gcc/7.3.0-atmel3.6.1-arduino7/bin/avr-g++ -c -g -Os -Wall -Wextra -std=gnu++11 -fpermissive -fno-exceptions -ffunction-sections -fdata-sections -fno-threadsafe-statics -Wno-error=narrowing -MMD -flto -mmcu=atmega2560 -DF_CPU=16000000L -DARDUINO=10819 -DARDUINO_AVR_MEGA2560 -DARDUINO_ARCH_AVR -I/home/user1/arduino-1.8.19/hardware/arduino/avr/cores/arduino -I/home/user1/arduino-1.8.19/hardware/arduino/avr/variants/mega /home/user1/arduino-1.8.19/hardware/arduino/avr/cores/arduino/HardwareSerial3.cpp -o /tmp/arduino_build_163934/core/HardwareSerial3.cpp.o
/home/user1/arduino-1.8.19/portable/packages/arduino/tools/avr-gcc/7.3.0-atmel3.6.1-arduino7/bin/avr-g++ -c -g -Os -Wall -Wextra -std=gnu++11 -fpermissive -fno-exceptions -ffunction-sections -fdata-sections -fno-threadsafe-statics -Wno-error=narrowing -MMD -flto -mmcu=atmega2560 -DF_CPU=16000000L -DARDUINO=10819 -DARDUINO_AVR_MEGA2560 -DARDUINO_ARCH_AVR -I/home/user1/arduino-1.8.19/hardware/arduino/avr/cores/arduino -I/home/user1/arduino-1.8.19/hardware/arduino/avr/variants/mega /home/user1/arduino-1.8.19/hardware/arduino/avr/cores/arduino/IPAddress.cpp -o /tmp/arduino_build_163934/core/IPAddress.cpp.o
/home/user1/arduino-1.8.19/portable/packages/arduino/tools/avr-gcc/7.3.0-atmel3.6.1-arduino7/bin/avr-g++ -c -g -Os -Wall -Wextra -std=gnu++11 -fpermissive -fno-exceptions -ffunction-sections -fdata-sections -fno-threadsafe-statics -Wno-error=narrowing -MMD -flto -mmcu=atmega2560 -DF_CPU=16000000L -DARDUINO=10819 -DARDUINO_AVR_MEGA2560 -DARDUINO_ARCH_AVR -I/home/user1/arduino-1.8.19/hardware/arduino/avr/cores/arduino -I/home/user1/arduino-1.8.19/hardware/arduino/avr/variants/mega /home/user1/arduino-1.8.19/hardware/arduino/avr/cores/arduino/PluggableUSB.cpp -o /tmp/arduino_build_163934/core/PluggableUSB.cpp.o
/home/user1/arduino-1.8.19/portable/packages/arduino/tools/avr-gcc/7.3.0-atmel3.6.1-arduino7/bin/avr-g++ -c -g -Os -Wall -Wextra -std=gnu++11 -fpermissive -fno-exceptions -ffunction-sections -fdata-sections -fno-threadsafe-statics -Wno-error=narrowing -MMD -flto -mmcu=atmega2560 -DF_CPU=16000000L -DARDUINO=10819 -DARDUINO_AVR_MEGA2560 -DARDUINO_ARCH_AVR -I/home/user1/arduino-1.8.19/hardware/arduino/avr/cores/arduino -I/home/user1/arduino-1.8.19/hardware/arduino/avr/variants/mega /home/user1/arduino-1.8.19/hardware/arduino/avr/cores/arduino/Print.cpp -o /tmp/arduino_build_163934/core/Print.cpp.o
/home/user1/arduino-1.8.19/portable/packages/arduino/tools/avr-gcc/7.3.0-atmel3.6.1-arduino7/bin/avr-g++ -c -g -Os -Wall -Wextra -std=gnu++11 -fpermissive -fno-exceptions -ffunction-sections -fdata-sections -fno-threadsafe-statics -Wno-error=narrowing -MMD -flto -mmcu=atmega2560 -DF_CPU=16000000L -DARDUINO=10819 -DARDUINO_AVR_MEGA2560 -DARDUINO_ARCH_AVR -I/home/user1/arduino-1.8.19/hardware/arduino/avr/cores/arduino -I/home/user1/arduino-1.8.19/hardware/arduino/avr/variants/mega /home/user1/arduino-1.8.19/hardware/arduino/avr/cores/arduino/Stream.cpp -o /tmp/arduino_build_163934/core/Stream.cpp.o
/home/user1/arduino-1.8.19/portable/packages/arduino/tools/avr-gcc/7.3.0-atmel3.6.1-arduino7/bin/avr-g++ -c -g -Os -Wall -Wextra -std=gnu++11 -fpermissive -fno-exceptions -ffunction-sections -fdata-sections -fno-threadsafe-statics -Wno-error=narrowing -MMD -flto -mmcu=atmega2560 -DF_CPU=16000000L -DARDUINO=10819 -DARDUINO_AVR_MEGA2560 -DARDUINO_ARCH_AVR -I/home/user1/arduino-1.8.19/hardware/arduino/avr/cores/arduino -I/home/user1/arduino-1.8.19/hardware/arduino/avr/variants/mega /home/user1/arduino-1.8.19/hardware/arduino/avr/cores/arduino/Tone.cpp -o /tmp/arduino_build_163934/core/Tone.cpp.o
/home/user1/arduino-1.8.19/portable/packages/arduino/tools/avr-gcc/7.3.0-atmel3.6.1-arduino7/bin/avr-g++ -c -g -Os -Wall -Wextra -std=gnu++11 -fpermissive -fno-exceptions -ffunction-sections -fdata-sections -fno-threadsafe-statics -Wno-error=narrowing -MMD -flto -mmcu=atmega2560 -DF_CPU=16000000L -DARDUINO=10819 -DARDUINO_AVR_MEGA2560 -DARDUINO_ARCH_AVR -I/home/user1/arduino-1.8.19/hardware/arduino/avr/cores/arduino -I/home/user1/arduino-1.8.19/hardware/arduino/avr/variants/mega /home/user1/arduino-1.8.19/hardware/arduino/avr/cores/arduino/USBCore.cpp -o /tmp/arduino_build_163934/core/USBCore.cpp.o
/home/user1/arduino-1.8.19/portable/packages/arduino/tools/avr-gcc/7.3.0-atmel3.6.1-arduino7/bin/avr-g++ -c -g -Os -Wall -Wextra -std=gnu++11 -fpermissive -fno-exceptions -ffunction-sections -fdata-sections -fno-threadsafe-statics -Wno-error=narrowing -MMD -flto -mmcu=atmega2560 -DF_CPU=16000000L -DARDUINO=10819 -DARDUINO_AVR_MEGA2560 -DARDUINO_ARCH_AVR -I/home/user1/arduino-1.8.19/hardware/arduino/avr/cores/arduino -I/home/user1/arduino-1.8.19/hardware/arduino/avr/variants/mega /home/user1/arduino-1.8.19/hardware/arduino/avr/cores/arduino/WMath.cpp -o /tmp/arduino_build_163934/core/WMath.cpp.o
/home/user1/arduino-1.8.19/portable/packages/arduino/tools/avr-gcc/7.3.0-atmel3.6.1-arduino7/bin/avr-g++ -c -g -Os -Wall -Wextra -std=gnu++11 -fpermissive -fno-exceptions -ffunction-sections -fdata-sections -fno-threadsafe-statics -Wno-error=narrowing -MMD -flto -mmcu=atmega2560 -DF_CPU=16000000L -DARDUINO=10819 -DARDUINO_AVR_MEGA2560 -DARDUINO_ARCH_AVR -I/home/user1/arduino-1.8.19/hardware/arduino/avr/cores/arduino -I/home/user1/arduino-1.8.19/hardware/arduino/avr/variants/mega /home/user1/arduino-1.8.19/hardware/arduino/avr/cores/arduino/WString.cpp -o /tmp/arduino_build_163934/core/WString.cpp.o
/home/user1/arduino-1.8.19/portable/packages/arduino/tools/avr-gcc/7.3.0-atmel3.6.1-arduino7/bin/avr-g++ -c -g -Os -Wall -Wextra -std=gnu++11 -fpermissive -fno-exceptions -ffunction-sections -fdata-sections -fno-threadsafe-statics -Wno-error=narrowing -MMD -flto -mmcu=atmega2560 -DF_CPU=16000000L -DARDUINO=10819 -DARDUINO_AVR_MEGA2560 -DARDUINO_ARCH_AVR -I/home/user1/arduino-1.8.19/hardware/arduino/avr/cores/arduino -I/home/user1/arduino-1.8.19/hardware/arduino/avr/variants/mega /home/user1/arduino-1.8.19/hardware/arduino/avr/cores/arduino/abi.cpp -o /tmp/arduino_build_163934/core/abi.cpp.o
/home/user1/arduino-1.8.19/portable/packages/arduino/tools/avr-gcc/7.3.0-atmel3.6.1-arduino7/bin/avr-g++ -c -g -Os -Wall -Wextra -std=gnu++11 -fpermissive -fno-exceptions -ffunction-sections -fdata-sections -fno-threadsafe-statics -Wno-error=narrowing -MMD -flto -mmcu=atmega2560 -DF_CPU=16000000L -DARDUINO=10819 -DARDUINO_AVR_MEGA2560 -DARDUINO_ARCH_AVR -I/home/user1/arduino-1.8.19/hardware/arduino/avr/cores/arduino -I/home/user1/arduino-1.8.19/hardware/arduino/avr/variants/mega /home/user1/arduino-1.8.19/hardware/arduino/avr/cores/arduino/main.cpp -o /tmp/arduino_build_163934/core/main.cpp.o
/home/user1/arduino-1.8.19/portable/packages/arduino/tools/avr-gcc/7.3.0-atmel3.6.1-arduino7/bin/avr-g++ -c -g -Os -Wall -Wextra -std=gnu++11 -fpermissive -fno-exceptions -ffunction-sections -fdata-sections -fno-threadsafe-statics -Wno-error=narrowing -MMD -flto -mmcu=atmega2560 -DF_CPU=16000000L -DARDUINO=10819 -DARDUINO_AVR_MEGA2560 -DARDUINO_ARCH_AVR -I/home/user1/arduino-1.8.19/hardware/arduino/avr/cores/arduino -I/home/user1/arduino-1.8.19/hardware/arduino/avr/variants/mega /home/user1/arduino-1.8.19/hardware/arduino/avr/cores/arduino/new.cpp -o /tmp/arduino_build_163934/core/new.cpp.o
/home/user1/arduino-1.8.19/portable/packages/arduino/tools/avr-gcc/7.3.0-atmel3.6.1-arduino7/bin/avr-gcc-ar rcs /tmp/arduino_build_163934/core/core.a /tmp/arduino_build_163934/core/wiring_pulse.S.o
/home/user1/arduino-1.8.19/portable/packages/arduino/tools/avr-gcc/7.3.0-atmel3.6.1-arduino7/bin/avr-gcc-ar rcs /tmp/arduino_build_163934/core/core.a /tmp/arduino_build_163934/core/WInterrupts.c.o
/home/user1/arduino-1.8.19/portable/packages/arduino/tools/avr-gcc/7.3.0-atmel3.6.1-arduino7/bin/avr-gcc-ar rcs /tmp/arduino_build_163934/core/core.a /tmp/arduino_build_163934/core/hooks.c.o
/home/user1/arduino-1.8.19/portable/packages/arduino/tools/avr-gcc/7.3.0-atmel3.6.1-arduino7/bin/avr-gcc-ar rcs /tmp/arduino_build_163934/core/core.a /tmp/arduino_build_163934/core/wiring.c.o
/home/user1/arduino-1.8.19/portable/packages/arduino/tools/avr-gcc/7.3.0-atmel3.6.1-arduino7/bin/avr-gcc-ar rcs /tmp/arduino_build_163934/core/core.a /tmp/arduino_build_163934/core/wiring_analog.c.o
/home/user1/arduino-1.8.19/portable/packages/arduino/tools/avr-gcc/7.3.0-atmel3.6.1-arduino7/bin/avr-gcc-ar rcs /tmp/arduino_build_163934/core/core.a /tmp/arduino_build_163934/core/wiring_digital.c.o
/home/user1/arduino-1.8.19/portable/packages/arduino/tools/avr-gcc/7.3.0-atmel3.6.1-arduino7/bin/avr-gcc-ar rcs /tmp/arduino_build_163934/core/core.a /tmp/arduino_build_163934/core/wiring_pulse.c.o
/home/user1/arduino-1.8.19/portable/packages/arduino/tools/avr-gcc/7.3.0-atmel3.6.1-arduino7/bin/avr-gcc-ar rcs /tmp/arduino_build_163934/core/core.a /tmp/arduino_build_163934/core/wiring_shift.c.o
/home/user1/arduino-1.8.19/portable/packages/arduino/tools/avr-gcc/7.3.0-atmel3.6.1-arduino7/bin/avr-gcc-ar rcs /tmp/arduino_build_163934/core/core.a /tmp/arduino_build_163934/core/CDC.cpp.o
/home/user1/arduino-1.8.19/portable/packages/arduino/tools/avr-gcc/7.3.0-atmel3.6.1-arduino7/bin/avr-gcc-ar rcs /tmp/arduino_build_163934/core/core.a /tmp/arduino_build_163934/core/HardwareSerial.cpp.o
/home/user1/arduino-1.8.19/portable/packages/arduino/tools/avr-gcc/7.3.0-atmel3.6.1-arduino7/bin/avr-gcc-ar rcs /tmp/arduino_build_163934/core/core.a /tmp/arduino_build_163934/core/HardwareSerial0.cpp.o
/home/user1/arduino-1.8.19/portable/packages/arduino/tools/avr-gcc/7.3.0-atmel3.6.1-arduino7/bin/avr-gcc-ar rcs /tmp/arduino_build_163934/core/core.a /tmp/arduino_build_163934/core/HardwareSerial1.cpp.o
/home/user1/arduino-1.8.19/portable/packages/arduino/tools/avr-gcc/7.3.0-atmel3.6.1-arduino7/bin/avr-gcc-ar rcs /tmp/arduino_build_163934/core/core.a /tmp/arduino_build_163934/core/HardwareSerial2.cpp.o
/home/user1/arduino-1.8.19/portable/packages/arduino/tools/avr-gcc/7.3.0-atmel3.6.1-arduino7/bin/avr-gcc-ar rcs /tmp/arduino_build_163934/core/core.a /tmp/arduino_build_163934/core/HardwareSerial3.cpp.o
/home/user1/arduino-1.8.19/portable/packages/arduino/tools/avr-gcc/7.3.0-atmel3.6.1-arduino7/bin/avr-gcc-ar rcs /tmp/arduino_build_163934/core/core.a /tmp/arduino_build_163934/core/IPAddress.cpp.o
/home/user1/arduino-1.8.19/portable/packages/arduino/tools/avr-gcc/7.3.0-atmel3.6.1-arduino7/bin/avr-gcc-ar rcs /tmp/arduino_build_163934/core/core.a /tmp/arduino_build_163934/core/PluggableUSB.cpp.o
/home/user1/arduino-1.8.19/portable/packages/arduino/tools/avr-gcc/7.3.0-atmel3.6.1-arduino7/bin/avr-gcc-ar rcs /tmp/arduino_build_163934/core/core.a /tmp/arduino_build_163934/core/Print.cpp.o
/home/user1/arduino-1.8.19/portable/packages/arduino/tools/avr-gcc/7.3.0-atmel3.6.1-arduino7/bin/avr-gcc-ar rcs /tmp/arduino_build_163934/core/core.a /tmp/arduino_build_163934/core/Stream.cpp.o
/home/user1/arduino-1.8.19/portable/packages/arduino/tools/avr-gcc/7.3.0-atmel3.6.1-arduino7/bin/avr-gcc-ar rcs /tmp/arduino_build_163934/core/core.a /tmp/arduino_build_163934/core/Tone.cpp.o
/home/user1/arduino-1.8.19/portable/packages/arduino/tools/avr-gcc/7.3.0-atmel3.6.1-arduino7/bin/avr-gcc-ar rcs /tmp/arduino_build_163934/core/core.a /tmp/arduino_build_163934/core/USBCore.cpp.o
/home/user1/arduino-1.8.19/portable/packages/arduino/tools/avr-gcc/7.3.0-atmel3.6.1-arduino7/bin/avr-gcc-ar rcs /tmp/arduino_build_163934/core/core.a /tmp/arduino_build_163934/core/WMath.cpp.o
/home/user1/arduino-1.8.19/portable/packages/arduino/tools/avr-gcc/7.3.0-atmel3.6.1-arduino7/bin/avr-gcc-ar rcs /tmp/arduino_build_163934/core/core.a /tmp/arduino_build_163934/core/WString.cpp.o
/home/user1/arduino-1.8.19/portable/packages/arduino/tools/avr-gcc/7.3.0-atmel3.6.1-arduino7/bin/avr-gcc-ar rcs /tmp/arduino_build_163934/core/core.a /tmp/arduino_build_163934/core/abi.cpp.o
/home/user1/arduino-1.8.19/portable/packages/arduino/tools/avr-gcc/7.3.0-atmel3.6.1-arduino7/bin/avr-gcc-ar rcs /tmp/arduino_build_163934/core/core.a /tmp/arduino_build_163934/core/main.cpp.o
/home/user1/arduino-1.8.19/portable/packages/arduino/tools/avr-gcc/7.3.0-atmel3.6.1-arduino7/bin/avr-gcc-ar rcs /tmp/arduino_build_163934/core/core.a /tmp/arduino_build_163934/core/new.cpp.o
Gebauter Kern wird archiviert (zwischengespeichert) in: /tmp/arduino_cache_963073/core/core_arduino_avr_mega_cpu_atmega2560_e8dac8b695d32e969a1c89f41aaca525.a
Linking everything together...
/home/user1/arduino-1.8.19/portable/packages/arduino/tools/avr-gcc/7.3.0-atmel3.6.1-arduino7/bin/avr-gcc -Wall -Wextra -Os -g -flto -fuse-linker-plugin -Wl,--gc-sections -mmcu=atmega2560 -o /tmp/arduino_build_163934/sketch_aug02a.ino.elf /tmp/arduino_build_163934/sketch/sketch_aug02a.ino.cpp.o /tmp/arduino_build_163934/core/core.a -L/tmp/arduino_build_163934 -lm
/home/user1/arduino-1.8.19/portable/packages/arduino/tools/avr-gcc/7.3.0-atmel3.6.1-arduino7/bin/avr-objcopy -O ihex -j .eeprom --set-section-flags=.eeprom=alloc,load --no-change-warnings --change-section-lma .eeprom=0 /tmp/arduino_build_163934/sketch_aug02a.ino.elf /tmp/arduino_build_163934/sketch_aug02a.ino.eep
/home/user1/arduino-1.8.19/portable/packages/arduino/tools/avr-gcc/7.3.0-atmel3.6.1-arduino7/bin/avr-objcopy -O ihex -R .eeprom /tmp/arduino_build_163934/sketch_aug02a.ino.elf /tmp/arduino_build_163934/sketch_aug02a.ino.hex
/home/user1/arduino-1.8.19/portable/packages/arduino/tools/avr-gcc/7.3.0-atmel3.6.1-arduino7/bin/avr-size -A /tmp/arduino_build_163934/sketch_aug02a.ino.elf
Der Sketch verwendet 2278 Bytes (0%) des Programmspeicherplatzes. Das Maximum sind 253952 Bytes.
Globale Variablen verwenden 220 Bytes (2%) des dynamischen Speichers, 7972 Bytes für lokale Variablen verbleiben. Das Maximum sind 8192 Bytes.

Also besorg Dir die IDE 1.8.19 und mach das lokal.

Ich habe die IDE ja, jedoch ist mir nicht bekannt, das es mit der Cloud dann funktioniert.

Und warum funktioniert das bei mir für 3 Stunden und dann nicht mehr?

Dann einmal den Code aus dem Webeditor kopieren und lokal kompilieren - nur um sicher zu gehen, das der Fehlerfrei ist.
(Du wirst die Boardkonfig und die libs noch holen müssen)

Das kann ich aus dem Stehgreif nicht sagen.
Und es macht erst Sinn nach etwas zu suchen, wenn der Code fehlerfrei ist.

Hiermit
#include "thingProperties.h"
kann die IDE ja gar nichts anfangen

Wenns die nirgendwo gibt, dann ist an der Stelle mein Einsatz zu Ende.
Vielleicht ist die Teil einer größeren Bibliothek, die nur mit den richtigen Boarddaten geladen wird...
Aber da lehne ich mich schon sehr weit raus.

Trotzdem danke für den Versuch mir irgendwie zu helfen.

Kein Ding - ich hab den Cde hier, ich scroll den nebenbei mal durch. Aber eben nur nebenbei.

Also mein Google gibt mir diesen Link, Deines nicht?

Gruß Tommy

Meins auch.
Aber ich bin jetzt erst drüber gestolpert, nachdem ich durch die lib durch bin.
Was mich wundert, warum man das in den examples als extra tab einbindet und nicht in der lib unterbringt....

@seb02
Wenn man die aus einem example ins src-Dir kopiert, geht der durch.
Nur eben nicht mit meinem Board...

In file included from /tmp/arduino_modified_sketch_763285/sketch_aug02b.ino:26:0:
/home/user1/arduino-1.8.19/portable/sketchbook/libraries/ArduinoIoTCloud-master/src/thingProperties.h:7:4: error: #error "Please check Arduino IoT Cloud supported boards list: https://github.com/arduino-libraries/ArduinoIoTCloud/#what"
   #error "Please check Arduino IoT Cloud supported boards list: https://github.com/arduino-libraries/ArduinoIoTCloud/#what"
    ^~~~~
Bibliothek ArduinoIoTCloud-master in Version 1.12.0 im Ordner: /home/user1/arduino-1.8.19/portable/sketchbook/libraries/ArduinoIoTCloud-master  wird verwendet
Bibliothek Arduino_ConnectionHandler-master in Version 0.7.6 im Ordner: /home/user1/arduino-1.8.19/portable/sketchbook/libraries/Arduino_ConnectionHandler-master  wird verwendet
Bibliothek Arduino_DebugUtils-master in Version 1.4.0 im Ordner: /home/user1/arduino-1.8.19/portable/sketchbook/libraries/Arduino_DebugUtils-master  wird verwendet
Bibliothek Arduino_AVRSTL-main in Version 1.2.5 im Ordner: /home/user1/arduino-1.8.19/portable/sketchbook/libraries/Arduino_AVRSTL-main  wird verwendet
Bibliothek BH1750-master in Version 1.3.0 im Ordner: /home/user1/arduino-1.8.19/portable/sketchbook/libraries/BH1750-master  wird verwendet
Bibliothek Wire in Version 1.0 im Ordner: /home/user1/arduino-1.8.19/hardware/arduino/avr/libraries/Wire  wird verwendet
Bibliothek SPI in Version 1.0 im Ordner: /home/user1/arduino-1.8.19/hardware/arduino/avr/libraries/SPI  wird verwendet
Bibliothek Adafruit_Sensor-master in Version 1.1.6 im Ordner: /home/user1/arduino-1.8.19/portable/sketchbook/libraries/Adafruit_Sensor-master  wird verwendet
Bibliothek Adafruit_BME280_Library-master in Version 2.2.2 im Ordner: /home/user1/arduino-1.8.19/portable/sketchbook/libraries/Adafruit_BME280_Library-master  wird verwendet
Bibliothek Adafruit_BusIO-master in Version 1.14.1 im Ordner: /home/user1/arduino-1.8.19/portable/sketchbook/libraries/Adafruit_BusIO-master  wird verwendet
Bibliothek RTClib-master in Version 2.1.1 im Ordner: /home/user1/arduino-1.8.19/portable/sketchbook/libraries/RTClib-master  wird verwendet
exit status 1
Fehler beim Kompilieren für das Board Arduino Mega or Mega 2560.

Und Deine ganzen delays müssen da raus.

Wo zu das wenn du I2C nutzt ?
Weiter

Wo zu wen du Arduino nano 33 iot nutzt? Dazu noch doppelt, scheint irgend wie zusammen geklebt sein

@my_xy_projekt bei mir kompiliert nicht :thinking:

Du brauchst ne Handvoll libs. Hab jetzt keine Lust die links zusammenzusuchen - geht so schneller.

lbs.zip (1,5 MB)

Habe das alles aber egal bei mir hat es mit der "thingProperties.h" wahrscheinlich fehlt die .cpp, ist als Tab eingebunden versucht habe mit esp8266 kompilieren. Aber wie gesagt ist nicht mein Problem :wink: