Compare commits

..

No commits in common. "d1486b61df47b1534dd3f87d9db8f6949e993104" and "15023b0e247e360a08b8e9464fba06cbd257fa9a" have entirely different histories.

4 changed files with 6 additions and 28 deletions

View File

@ -5,17 +5,7 @@ import paramiko
import time
paramiko.util.log_to_file('paramiko.log')
def fake_download(dest):
import requests, random
rnd = str(random.randint(1, 10000))
r = requests.get('https://picsum.photos/400/300?random=' + rnd)
with open(dest / (rnd + '.jpg'), 'wb') as f:
f.write(r.content)
def download(ip, dest):
if settings.DEBUG:
fake_download(dest)
print('Downloading from', ip)
port = 22

View File

@ -26,7 +26,7 @@ def clients_post():
phone = str(content['phone'])
for i in range(1, 100):
suffix = str(i).zfill(2)
suffix = str(i).zfill(3)
folder = phone + '_' + suffix
path = output_folder / folder
if not path.exists():
@ -99,18 +99,11 @@ def session_post(cid):
# go through the photo taking process
status = 'Warming up'
try:
# warmup
power.lights_on()
time.sleep(4)
power.lights_off()
time.sleep(0.5)
except BaseException as e:
print('Problem with lights: {} - {}'.format(e.__class__.__name__, str(e)))
print()
print('Are you sure the system is connected?')
print()
abort(500)
# warmup
power.lights_on()
time.sleep(4)
power.lights_off()
time.sleep(0.5)
status = 'Capturing'

View File

@ -3,8 +3,6 @@ import settings
import time
def np_02B_api(ip, username, password, is_on):
if settings.DEBUG: return
if is_on:
endpoint = '/cmd.cgi?grp=0'
else:

View File

@ -1,6 +1,3 @@
import os
DEBUG = os.environ.get('FLASK_ENV', None) == 'development'
LIGHT_IP = '192.168.99.25'
LIGHT_USER = 'admin'
LIGHT_PASS = 'admin'