NodeMCU Projects: Difference between revisions

Line 124:
while True:
d.measure()
lcd.putstr("Temp isTemperature: " + str(d.temperature()) + "'C \nHum is: " + str(d.humidity()) + "%")
lcd.putstr("Humidity: " + str(d.humidity()) + "%")
time.sleep(10)
lcd.clear()
 
</syntaxhighlight>