本文整理汇总了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: