Configure header and connection address.

조회 수: 2 (최근 30일)
Yash Mehta
Yash Mehta 2020년 8월 19일
댓글: Yash Mehta 2020년 8월 20일
I need help with weatherstation code. I am new to ThingsSpeak. i have set up this code for bme280 to monitor room temprature. I have no idea what configure haeader and connection address is. i have highlited it in the code below please help me .
import time
from w1thermsensor import W1ThermSensor
import board
import busio
import adafruit_bme280
i2c = busio.I2C(board.SCL, board.SDA)
bme = adafruit_bme280.Adafruit_BME280_I2C(i2c)
#import adafruit_ads1x15.ads1015 as ADS
#from adafruit_ads1x15.analog_in import AnalogIn
import RPi.GPIO as GPIO
import urllib
import http.client
key = "*MY KEY"
interval = 5 #How long we want to wait between loops (seconds)
while True:
time.sleep(interval)
#Pull Temperature from DS18B20
# temperature = ds18b20.get_temperature()
#Pull temperature from BME280
temperature = bme.temperature
#Pull pressure from BME280 Sensor & convert to kPa
pressure_pa = bme.pressure
pressure = pressure_pa / 10
#Pull humidity from BME280
humidity = bme.humidity
#Print the results
# print( 'Temperature: ' , temperature)
# print( 'Humidity: ' , humidity, '%')
# print( 'Pressure: ' , pressure, 'kPa')
# print( ' ')
params = urllib.parse.urlencode({'field1' : temperature, 'field2' : humidity, 'field3' : pressure})
####Configure header / connection address###
headers = {"Content-typZZe": "application/x-www-form-urlencoded","Accept": "text/plain"}
conn = http.client.HTTPConnection("api.thingspeak.com/update:80")
#Try to connect to ThingSpeak and send Data
try:
conn.request("POST", "/update", params, headers)
response = conn.getresponse()
print( response.status, response.reason)
data = response.read()
conn.close()
#Catch the exception if the connection fails
except:
print( "connection failed")

답변 (1개)

Christopher Stapels
Christopher Stapels 2020년 8월 20일
The headers and connection address seem correct. I might take the ZZ out of "content-type".
You can see more information at the Write Data doc page.
Are you getting a success code for the response?
  댓글 수: 3
Christopher Stapels
Christopher Stapels 2020년 8월 20일
I don't think its a ThingSpeak issue. You have several print statments before the ThingSpeak post that aren't hapeining. I'd take everything out of the code and add stuff back in one at a time to see if you can see what is breaking it.
Yash Mehta
Yash Mehta 2020년 8월 20일
Alrigtht will try that. Thanks for your response. Appreciate it.

댓글을 달려면 로그인하십시오.

커뮤니티

더 많은 답변 보기:  ThingSpeak 커뮤니티

카테고리

Help CenterFile Exchange에서 Weather and Atmospheric Science에 대해 자세히 알아보기

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by