TMP006 tempreture -> Virtual PIN problem CC3200 LaunchPad Energia

Hello, community

This is my very first experience with blink, and may be question is too simple, but didn’t find solution :frowning:

Board: CC3200 Launchpad
When I’m trying send temperature to V8 V7 or Serial, I’m getting strange result: 303.76C or something like this.
In Serial strange results comming after trying to push button in app.

 #include <Wire.h>
#include <Adafruit_TMP006.h>
#include <SimpleTimer.h>
#define BLYNK_PRINT Serial    // Comment this out to disable prints and save space
#include <SPI.h>
#include <WiFi.h>
#include <BlynkSimpleTI_CC3200_LaunchXL.h>

Adafruit_TMP006 tmp006(0x41);

char auth[] = "052a0bdc2ef74655b402aa3eb7c1320d";
char ssid[] = "Orlov iPhone";
char pass[] = "d8n6jubt";        // Set to "" for open networks

SimpleTimer timer; // Create a Timer object called "timer"! 

void setup()
{
pinMode(9,OUTPUT);
pinMode(10,OUTPUT);
pinMode(29,OUTPUT);
digitalWrite(9,LOW);
digitalWrite(10,LOW);
digitalWrite(29,LOW);
 Serial.begin(115200);
 Serial.println("Start!!!");
 Serial.println("Blynk.begin...");
 Blynk.begin(auth, ssid, pass);
 
  if (! tmp006.begin()) {
    Serial.println("No sensor found");
    while (1);  
 }
timer.setInterval(1000L, sendUptime); //  sending UpTime every second
timer.setInterval(5000L, sendTMP006);
}


void sendTMP006()
{
Blynk.virtualWrite(V8, tmp006.readObjTempC());
Blynk.virtualWrite(V7, tmp006.readObjTempC());

Serial.print("Object Temperature: "); Serial.print(tmp006.readObjTempC()); Serial.println("*C");
Serial.print("Die Temperature: "); Serial.print(tmp006.readObjTempC()); Serial.println("*C");
}

void loop()
{
 Blynk.run();
 timer.run(); // SimpleTimer is working
}

void sendUptime()
{  

   Blynk.virtualWrite(V6, millis() / 1000);
 }

Please edit your code and use “preformatted text” button for pasting code.