Object value = mDataSnapshot.child("Suhu").getValue();
String suhu;
if (value != null) {
suhu = value.toString();
// Use the 'suhu' variable
} else {
suhu = ""; // Or handle null case appropriately
// Handle the case where the value is null
}