uint16_t packetIdPub1 = mqttClient.publish(MQTT_BME280, 1, true);
Serial.printf("Publishing on topic %s at QoS 1, packetId: %i ", MQTT_BME280, packetIdPub1);
Serial.printf("Tempature: %.2f ", temp,"Humidity: %.2f ", hum,"Pressure: %.3f \n", pres);
blargins this is what i tryed and it's only publising the tempature. i tryed modifying the publish line to add more and the program wouldn't compile. i'm still not seeing anything past the tempature.