LM75 an Nano IoT --> Arduino Cloud

Hallo zusammen,

möchte einen Temperatursensor LM75 über I2C auslesen und in die Arduino Cloud übertragen.

Wenn ich ohne die Cloud Anbindung bzw. den DemoSketch der LM75 Bibliothek teste wird der Temperaturwert sauber ausgegeben.

Die selbe Logik / Bibliothek im Sketch mit Cloud Anbindung funktioniert nicht mehr und der Wert erscheint nur noch mit "-0.5"

Kennt sich jemand damit aus bzw. was hab ich Falsch gemacht?

// I2C Temperature Sensors derived from the LM75 - Version: Latest 
#include <Temperature_LM75_Derived.h>

/* 

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

  CloudTemperature temp1;
  CloudTemperature temp_LM75;
  bool licht;

*/

#include "thingProperties.h"

Generic_LM75 temperature1(0x48);
Generic_LM75 temperature2(0x49);


//float temp_LM75;
int maxLM75 = 0;
int minLM75 = 99;

const int buttonPin = 2;     // the number of the pushbutton pin
const int ledPin =  13;      // the number of the LED pin
const int LichtPin =  4;      // the number of the LED pin

int LichtState = 0; 


void setup() {
  while(!Serial) {}
 
  Serial.begin(9600);

  Wire.begin();

  
  temp_LM75 = (temperature1.readTemperatureC());
    

  // 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();
  
  pinMode(ledPin, OUTPUT);
  pinMode(LichtPin, OUTPUT);
  
}

void loop() {
  ArduinoCloud.update();
  // Your code here 
  
  
  Serial.println();
  Serial.print("************************************************");
  Serial.print("Temperature 1 = ");
  Serial.print(temperature1.readTemperatureC());
  Serial.println(" C");
  Serial.print("************************************************");
  Serial.println();
  
  Serial.println();
  Serial.print("************************************************");
  Serial.print("Status Licht =  ");
  Serial.println(licht);
  Serial.print("************************************************");
  Serial.println();
  

  
  temp_LM75 = (temperature1.readTemperatureC());
  
  
  temp1 = 25;

  
  delay(250); 
  
}

Danke für die Unterstützung
Grüße
Jan