scheduler
New structure with new database design
This commit is contained in:
parent
3df0308700
commit
3a01222dfb
60
scheduler.py
60
scheduler.py
@ -11,12 +11,14 @@ import datetime
|
|||||||
databaseUsername="XXXX"
|
databaseUsername="XXXX"
|
||||||
databasePassword="XXXX"
|
databasePassword="XXXX"
|
||||||
databaseName="XXXX" #do not change unless you named the Wordpress database with some other name
|
databaseName="XXXX" #do not change unless you named the Wordpress database with some other name
|
||||||
|
databaseHost="XXXXX.domain.de"
|
||||||
|
|
||||||
def saveToDatabase(temperature,humidity):
|
|
||||||
|
|
||||||
con=mdb.connect("localhost", databaseUsername, databasePassword, databaseName)
|
idef saveToDatabase(temp1, temp2, temp3, temp4, humidity, pressure, sea_pressure, altitude):
|
||||||
|
|
||||||
|
con=mdb.connect("blog.joachimhummel.de", databaseUsername, databasePassword, databaseName)
|
||||||
currentDate=datetime.datetime.now().date()
|
currentDate=datetime.datetime.now().date()
|
||||||
|
print currentDate
|
||||||
now=datetime.datetime.now()
|
now=datetime.datetime.now()
|
||||||
midnight=datetime.datetime.combine(now.date(),datetime.time())
|
midnight=datetime.datetime.combine(now.date(),datetime.time())
|
||||||
minutes=((now-midnight).seconds)/60 #minutes after midnight, use datead$
|
minutes=((now-midnight).seconds)/60 #minutes after midnight, use datead$
|
||||||
@ -24,8 +26,9 @@ def saveToDatabase(temperature,humidity):
|
|||||||
|
|
||||||
with con:
|
with con:
|
||||||
cur=con.cursor()
|
cur=con.cursor()
|
||||||
|
query = ("INSERT INTO `temperatures2`(`temperature-1`, `temperature-2`, `temperature-3`, `temperature-4`, `humidity`, `dateMeasured`, `hourMeasured`, `pressure`, `pressure-sea`, `altitude`)"
|
||||||
cur.execute("INSERT INTO temperatures (temperature,humidity, dateMeasured, hourMeasured) VALUES (%s,%s,%s,%s)",(temperature,humidity,currentDate, minutes))
|
"VALUES (%s,%s,%s,%s,%s,'%s',%s,%s,%s,%s)"% (temp1, temp2, temp3, temp4, humidity, currentDate, minutes, pressure, sea_pressure, altitude))
|
||||||
|
cur.execute(query)
|
||||||
|
|
||||||
print "Saved temperature"
|
print "Saved temperature"
|
||||||
return "true"
|
return "true"
|
||||||
@ -37,32 +40,41 @@ def readInfo():
|
|||||||
while(temperatureSaved=="false"):
|
while(temperatureSaved=="false"):
|
||||||
# Run the DHT program to get the humidity and temperature readings!
|
# Run the DHT program to get the humidity and temperature readings!
|
||||||
|
|
||||||
output = subprocess.check_output(["/home/pi/myweather/wetter.py"]);
|
source = "/home/pi/dev/krishwebs/myweather/weather.py"
|
||||||
print output
|
|
||||||
matches = re.search("Temp =\s+([-]?[0-9.]+)", output)
|
# search for tempretures , continue to search untill it do not found
|
||||||
|
temp1 = search_attr('Temp1', source)
|
||||||
|
temp2 = search_attr('Temp2', source)
|
||||||
|
temp3 = search_attr('Temp3', source)
|
||||||
|
temp4 = search_attr('Temp4', source)
|
||||||
|
|
||||||
|
"scheduler.py" 108 lines, 3613 characters
|
||||||
|
|
||||||
|
print "Temperature-1: %.1f C" % temp1
|
||||||
|
print "Temperature-2: %.1f C" % temp2
|
||||||
|
print "Temperature-3: %.1f C" % temp3
|
||||||
|
print "Temperature-4: %.1f C" % temp4
|
||||||
|
print "Humidity: %s %%" % humidity
|
||||||
|
print "Pressure: %s %%" % pressure
|
||||||
|
print "Pressure-Sea: %s %%" % sea_pressure
|
||||||
|
print "Altitude: %s ft" % altitude
|
||||||
|
return saveToDatabase(temp1, temp2, temp3, temp4, humidity, pressure, sea_pressure, altitude)
|
||||||
|
|
||||||
|
|
||||||
|
def search_attr(val, source):
|
||||||
|
output = subprocess.check_output([source]);
|
||||||
|
matches = re.search(("%s =\s+([-]?[0-9.]+)" % val), output)
|
||||||
if (not matches):
|
if (not matches):
|
||||||
|
print "searching for %s"% (val)
|
||||||
time.sleep(3)
|
time.sleep(3)
|
||||||
continue
|
search_attr(val, source)
|
||||||
temp = float(matches.group(1))
|
return float(matches.group(1))
|
||||||
|
|
||||||
# search for humidity printout
|
|
||||||
matches = re.search("Press =\s+([0-9.]+)", output)
|
|
||||||
if (not matches):
|
|
||||||
time.sleep(3)
|
|
||||||
continue
|
|
||||||
humidity = float(matches.group(1))
|
|
||||||
#humidity=str(humidity)+"%"
|
|
||||||
|
|
||||||
print "Temperature: %.1f C" % temp
|
|
||||||
print "Pressure: %s %%" % humidity
|
|
||||||
|
|
||||||
return saveToDatabase(temp,humidity)
|
|
||||||
|
|
||||||
#check if table is created or if we need to create one
|
#check if table is created or if we need to create one
|
||||||
try:
|
try:
|
||||||
queryFile=file("createTable.sql","r")
|
queryFile=file("createTable.sql","r")
|
||||||
|
|
||||||
con=mdb.connect("localhost", databaseUsername,databasePassword,databaseName)
|
con=mdb.connect("blog.joachimhummel.de", databaseUsername,databasePassword,databaseName)
|
||||||
currentDate=datetime.datetime.now().date()
|
currentDate=datetime.datetime.now().date()
|
||||||
|
|
||||||
with con:
|
with con:
|
||||||
|
Loading…
Reference in New Issue
Block a user