Jump to content

Klesius

Validating
  • Posts

    1
  • Joined

  • Last visited

Community Answers

  1. Klesius's post in upload data from orangepi to thingspeak was marked as the answer   
    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()))
     
×
×
  • Create New...

Important Information

Terms of Use - Privacy Policy - Guidelines