#include #include #include #define BME280_I2cAdd 0x76 //I2C-Adresse MyBME280 BME(BME280_I2cAdd); float t, d, f; void setup() { oled.begin(); oled.clear(); oled.on(); TinyWireM.begin(); BME.init(); } void loop() { t = BME.readTemp(); d = BME.readPress(); f = BME.readHumidity(); oled.setFont(FONT6X8); oled.setCursor(0, 0); oled.print("Temp.: "); oled.print(t); oled.println(" 'C"); oled.print("Druck: "); oled.print(d); oled.println(" mBar"); oled.print("Fcht.: "); oled.print(f); oled.println(" %"); oled.println(" . . . . . . . . . . "); oled.println(". . . . . . . . . . ."); }