-
Notifications
You must be signed in to change notification settings - Fork 1
/
to_sql.py
81 lines (61 loc) · 1.73 KB
/
to_sql.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
#Bibliotheken einbinden
import RPi.GPIO as GPIO
import time
import mysql.connector
from twilio.rest import Client
# Define db
mydb = mysql.connector.connect(
host="***",
user="***",
password="***",
database="***")
mycursor = mydb.cursor()
#Overflow-Val
overflow = float('5')
#GPIO Modus (BOARD / BCM)
GPIO.setmode(GPIO.BCM)
#GPIO Pins zuweisen
GPIO_TRIGGER = 18
GPIO_ECHO = 24
#Richtung der GPIO-Pins festlegen (IN / OUT)
GPIO.setup(GPIO_TRIGGER, GPIO.OUT)
GPIO.setup(GPIO_ECHO, GPIO.IN)
def distanz():
# setze Trigger auf HIGH
GPIO.output(GPIO_TRIGGER, True)
# setze Trigger nach 0.01ms aus LOW
time.sleep(0.00001)
GPIO.output(GPIO_TRIGGER, False)
StartZeit = time.time()
StopZeit = time.time()
# speichere Startzeit
while GPIO.input(GPIO_ECHO) == 0:
StartZeit = time.time()
# speichere Ankunftszeit
while GPIO.input(GPIO_ECHO) == 1:
StopZeit = time.time()
# Zeit Differenz zwischen Start und Ankunft
TimeElapsed = StopZeit - StartZeit
# mit der Schallgeschwindigkeit (34300 cm/s) multiplizieren
# und durch 2 teilen, da hin und zurueck
distanz = (TimeElapsed * 34300) / 2
return distanz
def sql():
sql = "INSERT INTO wasser (time, distanz, up) VALUES (now(), %s,%s)"
val = (abstand, stand)
mycursor.execute(sql, val)
mydb.commit()
#print("iz working")
if __name__ == '__main__':
while True:
try:
abstand = float(distanz() - (float("6")))
stand = (float('220'))-(abstand)
sql()
time.sleep(3)
# Reset by pressing CTRL + C
except:
print("error")
GPIO.cleanup()
time.sleep(300)
pass