该系统智能终端的部分Python程序如下:
#导入相关模块,代码略
IP = "192.168.10.1" ; PORT = "5000" # Web 服务器的 IP 地址和端口
#设置 IoT 模块连接的 Web 服务器的 IP 地址和端口,代码略
while True:
temp, hum = dht11.read(pin0) #获取温度数据 temp,湿度数据 hum
light = pin1.read_analog() #获取光线强度数据 light
errno, resp = Obloq.get(" . " + str(temp) + "&hum=" + str(hum) +
"&light=" + str(light) ,60000)
# 其他代码略
若智能终端上传数据给Web服务器的URL为 http://192.168.10.1:5000 /trans?
temp=30&hum=300&light=40,则程序划线处的代码应为。