当前位置: 首页>>代码示例>>Python>>正文


Python Arduino.readline方法代码示例

本文整理汇总了Python中arduino.Arduino.readline方法的典型用法代码示例。如果您正苦于以下问题:Python Arduino.readline方法的具体用法?Python Arduino.readline怎么用?Python Arduino.readline使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在arduino.Arduino的用法示例。


在下文中一共展示了Arduino.readline方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Python代码示例。

示例1: sendStates

# 需要导入模块: from arduino import Arduino [as 别名]
# 或者: from arduino.Arduino import readline [as 别名]
	#if this is the first loop send defaults to the arduino
	if loopcount == 1:
		sendStates()
		arduino.ser.flush()

	#ever 15 minutes update the sensor records table
	if sensor_record_count >= 60*1/sleeptime:
		printToFile(logFile,'Saving Temperature and Humidity Values to Database')
		sensor_record_count = -1
		for sensor in sensors:
			sr = SensorRecord(cur,sensor.id,sensor.type,sensor.value)
			sr.saveNew(['sensor_id','type','value','created_at','updated_at'])

	#check arduino messages
	while arduino.inWaiting() and loopcount > 0:
		msg = arduino.readline().replace('\r','').replace('\n','').split('|');
		if(msg[0] == '!0'):
			printToFile(logFile,'Regular MSG')
		elif(msg[0] == '!1'):#Temperature MSG
			printToFile(logFile,str(msg))
			pin = msg[1]
			temperature = msg[2]
			for sensor in sensors:
				if sensor.pin == int(pin) and sensor.type == "temperature":
					sensor.value = float(temperature)
					sensor.save();
		elif(msg[0] == '!2'):#Humidity MSG
			printToFile(logFile,str(msg))
			pin = msg[1]
			humidity = msg[2]
			for sensor in sensors:
开发者ID:tylercd100,项目名称:Garden-Python,代码行数:33,代码来源:garden.py


注:本文中的arduino.Arduino.readline方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。