fix syntax errors
This commit is contained in:
@@ -1,3 +1,3 @@
|
|||||||
import camera
|
import camera
|
||||||
|
|
||||||
camera.capture_picture():
|
camera.capture_picture()
|
||||||
|
|||||||
@@ -1,4 +1,4 @@
|
|||||||
import camera
|
import drivers.camera
|
||||||
import requests
|
import requests
|
||||||
import config
|
import config
|
||||||
|
|
||||||
|
|||||||
@@ -1,5 +1,3 @@
|
|||||||
|
|
||||||
|
|
||||||
GPIO_PIN_DHT = 4 # BCM
|
GPIO_PIN_DHT = 4 # BCM
|
||||||
SENSORDATA_URL = 'http://agrar.zoblak.com/api/v1.0/sensorData'
|
SENSORDATA_URL = 'http://agrar.zoblak.com/api/v1.0/sensorData'
|
||||||
GPIO_PIN_TANKLEVEL0 = 5 # BCM
|
GPIO_PIN_TANKLEVEL0 = 5 # BCM
|
||||||
@@ -17,5 +15,5 @@ CONTROLLER_ID = '120' # every controller must have a different one
|
|||||||
STATE_FILE = '/mnt/zoblakdata/controller_state'
|
STATE_FILE = '/mnt/zoblakdata/controller_state'
|
||||||
PICTURE_TRANSFER_FILE='/mnt/zoblakdata/picture_transfer_ready.jpg'
|
PICTURE_TRANSFER_FILE='/mnt/zoblakdata/picture_transfer_ready.jpg'
|
||||||
PICTURE_INPUT_FILE='/mnt/zoblakdata/picture.jpg' # must match file in PICTURE_COMMAND
|
PICTURE_INPUT_FILE='/mnt/zoblakdata/picture.jpg' # must match file in PICTURE_COMMAND
|
||||||
PICTURE_COMMAND='avconv -i rtsp://192.168.1.10:554//user=admin_password=_channel=1_stream=0.sdp -f image2 -vframes 1 /mnt/zoblakdata/picture.jpg' # filename must match PICTURE_FILE path
|
PICTURE_COMMAND='avconv -i rtsp://192.168.1.10:554//user=admin_password=_channel=1_stream=0.sdp -i zoblakLogo.png -filter_complex "[0:v]drawtext=fontfile=/usr/share/fonts/truetype/dejavu/DejaVuSans-Bold.ttf:fontsize=30:box=1:boxcolor=black@0.75:text='%d\.%m\.%Y\. %H\:%M\:%S':fontcolor=white@0.8: x=10: y=10[text]; [text][1:v]overlay=main_w-overlay_w-5:5 [filtered]" -map "[filtered]" -f image2 -vframes 1 /mnt/zoblakdata/picture.jpg' # filename must match PICTURE_INPUT_FILE path
|
||||||
PICTURE_URL = 'http://agrar.zoblak.com/api/v1.0/picture/'
|
PICTURE_URL = 'http://agrar.zoblak.com/api/v1.0/picture/'
|
||||||
|
|||||||
0
controller/drivers/__init__.py
Normal file
0
controller/drivers/__init__.py
Normal file
@@ -4,7 +4,6 @@ import requests
|
|||||||
import Adafruit_DHT
|
import Adafruit_DHT
|
||||||
import config
|
import config
|
||||||
import RPi.GPIO as GPIO
|
import RPi.GPIO as GPIO
|
||||||
import camera
|
|
||||||
|
|
||||||
# Try to read the state of GPIO_PIN_TANKLEVELx and GPIO_PIN_TANKFULL
|
# Try to read the state of GPIO_PIN_TANKLEVELx and GPIO_PIN_TANKFULL
|
||||||
GPIO.setmode(GPIO.BCM)
|
GPIO.setmode(GPIO.BCM)
|
||||||
|
|||||||
Reference in New Issue
Block a user