Terminal widget BME280 information from serial monitor 😭

Hello, i wasted 5 days and can’t understand how this works, i am not technical person :frowning:

I have Arduino Uno Rev3, BME280, HC-06 with next code:

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

#define SEALEVELPRESSURE_HPA (1013.25)

Adafruit_BME280 bme;

void setup() {
	Serial.begin(9600);

	if (!bme.begin(0x76)) {
		Serial.println("Could not find a valid BME280 sensor, check wiring!");
		while (1);
	}
}

void loop() {
	Serial.print("Temperature = ");
	Serial.print(bme.readTemperature());
	Serial.println("*C");

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

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

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

	Serial.println();
	delay(1000);
}

I need this information to go to the blynk app - terminal widget, but i cant understand how to connect that :frowning:

I’m really sorry if this question looks stupid, but i really can’t understand how to do that thing, i tried to use virtualpins but maybe it wasn’t correct and not work :frowning: :sob: :sob: :sob:

@Inkognito228 please edit your post, using the pencil icon at the bottom, and add triple backticks at the beginning and end of your code so that it displays correctly.
Triple backticks look like this:
```

Pete.

1 Like

Thank you, sorry for that :frowning: