big update - fully functional

This commit is contained in:
Daniel Ledda
2021-03-21 16:19:52 +01:00
parent 50362860ae
commit 5466b8d2bb
25 changed files with 824 additions and 461 deletions

View File

@@ -1,9 +1,10 @@
from datetime import datetime
import random
print(
'Time:', str(datetime.isoformat(datetime.now())),
'\nTemp:', 20,
'\nHumidity:', 60,
'\nCO2:', 500,
'Time:', str(datetime.isoformat(datetime.utcnow())) + "Z",
'\nTemp:', random.randint(0, 40),
'\nHumidity:', random.randint(50, 80),
'\nCO2:', random.randint(400, 1200),
sep='\t',
)