def senseTempAndDisplay():
    sense = SenseHat()
    while True:
        temp = int(round(float(sense.get_temperature())))

        temperature = Temperature(temp, coldMax, hotMin, comfortableMax,
                                  comfortableMin, sense)
        temperature.checkAndDisplay()

        sleep(10)