[vz-users] Frage zur Darstellung mit Steps

Andreas Goetz cpuidle at gmail.com
Fri Oct 7 20:42:18 CEST 2016


In der execute Zeile fehlt ein ).

Ganz einfach zu finden wenn man mal auskommentiert bis man den Fehler eingegrenzt hat…

> On 7 Oct 2016, at 20:35, Torsten <t.wisgalla at gmx.de> wrote:
> 
> #!/usr/bin/python
> 
> mysqlHost = '127.0.0.1'
> mysqlPort = '3306'
> mysqlLogin = 'root'
> mysqlPass = 'raspberry'
> mysqlDatabase = "volkszaehler"
> 
> import RPi.GPIO as GPIO
> import sys
> import time
> import os
> import re
> import MySQLdb
> 
> GPIO.setmode(GPIO.BOARD)
> GPIO.setup(29, GPIO.IN)
> 
> while True:
>       input = GPIO.input(29)
>       print("PUMP-STATUS:  " + str(input))
> 
>       db = MySQLdb.connect(host=mysqlHost, port=int(mysqlPort), user=mysqlLogin, passwd=mysqlPass)
>       cursor = db.cursor()
>       cursor.execute("INSERT INTO data(channel_id(34)) (timestamp, value) VALUES (%s,%s);", (Timestamp, str(input))
>       time.sleep(30.0)

-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://demo.volkszaehler.org/pipermail/volkszaehler-users/attachments/20161007/54e94bce/attachment.html>


More information about the volkszaehler-users mailing list