我是靠谱客的博主 细心裙子,最近开发中收集的这篇文章主要介绍树莓派上传数据到onenet云平台,觉得挺不错的,现在分享给大家,希望可以做个参考。

概述

背景:通过树莓派上传数据到onenet云平台

操作:看代码

# -*- coding:utf-8 -*-
# File: cputemp.py
#向平台已经创建的数据流发送数据点
import urllib2
import json
import time
import datetime

APIKEY = 'McYMwUV1DOmAC3Medopje1S0='  #改成你的APIKEY

def get_temp():
        # 打开文件 
        file = open("/sys/class/thermal/thermal_zone0/temp") 
        # 读取结果,并转换为浮点数 
        temp = float(file.read()) / 1000 
        # 关闭文件 
        file.close() 
        # 向控制台打印结果 
        print("CPU tempurature: %.3f" %temp )
        # 返回温度值
        return temp
        
        
def http_put():
    temperature = get_temp() #获取CPU温度并上传
    CurTime = datetime.datetime.now()
    # 这url只需把数字部分换成你在onenet中创建的设备号就行
    url='http://api.heclouds.com/devices/30948032/datapoints'

    values={'datastreams':[{"id":"danger_index","datapoints":[{"time":CurTime.isoformat(),"value":temperature}]}]}

    print ("Cur_time:%s" %CurTime.isoformat())
    print ("tempure:%.3f" %temperature)

    jdata = json.dumps(values)                  # 对数据进行JSON格式化编码
    #打印json内容
    print jdata
    request = urllib2.Request(url, jdata)
    request.add_header('api-key', APIKEY)
    request.get_method = lambda:'POST'          # 设置HTTP的访问方式
    request = urllib2.urlopen(request)
    return request.read()

while True:
        time.sleep(5)
        resp = http_put()
        print ("OneNET_result: %s" %resp)
        #time.sleep(5)

查看:设备id号和apikey 

 

 根据第二个博客又进行了触发器设置,很简单

效果图:

参考:

【1】https://open.iot.10086.cn/bbs/forum.php?mod=viewthread&tid=35112&highlight=%E6%A0%91%E8%8E%93%E6%B4%BE

【2】https://www.jianshu.com/p/5de7e3fd2fef

 

 

最后

以上就是细心裙子为你收集整理的树莓派上传数据到onenet云平台的全部内容,希望文章能够帮你解决树莓派上传数据到onenet云平台所遇到的程序开发问题。

如果觉得靠谱客网站的内容还不错,欢迎将靠谱客网站推荐给程序员好友。

本图文内容来源于网友提供,作为学习参考使用,或来自网络收集整理,版权属于原作者所有。
点赞(37)

评论列表共有 0 条评论

立即
投稿
返回
顶部