from cli_beautifier import CliBeautifier
from dht22 import DHT22
from time import sleep
dht1 = DHT22(13, "DHT 1")
dht2 = DHT22(17, "DHT 2")
while True:
dht1.show_all_info()
sleep(1)
dht2.show_all_info()
sleep(1)from cli_beautifier import CliBeautifier
from dht22 import DHT22
from time import sleep
dht1 = DHT22(13, "DHT 1")
dht2 = DHT22(17, "DHT 2")
while True:
dht1.show_all_info()
sleep(1)
dht2.show_all_info()
sleep(1)