Solution Klesius Posted January 20, 2021 Solution Posted January 20, 2021 hi everyone, I have this program that displays temperature and humidity on my orange pi, what string can I add to upload this data to the site? thanks from pyA20.gpio import gpio from pyA20.gpio import port #import RPi.GPIO as GPIO import dht11 import time import datetime # initialize GPIO #gpio.setwarnings(False) #gpio.setmode(GPIO.BCM) PIN2 = port.PA6 gpio.init() #gpio.cleanup() # read data using pin 14 instance = dht11.DHT11(pin=PIN2) while True: result = instance.read() if result.is_valid(): print("Last valid input: " + str(datetime.datetime.now()))
Recommended Posts