-
Notifications
You must be signed in to change notification settings - Fork 0
/
config.py
23 lines (22 loc) · 955 Bytes
/
config.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
#===============================================================================
""" Optional features config. """
#===============================================================================
# Enter mail below to receive real-time email alerts
# e.g., '[email protected]'
MAIL = '[email protected]'
# Enter the ip camera url (e.g., url = 'http://191.138.0.100:8040/video')
url = ''
# ON/OFF for mail feature. Enter True to turn on the email alert feature.
ALERT = True
# Set max. people inside limit. Optimise number below: 10, 50, 100, etc.
Threshold = 0
# Threading ON/OFF
Thread = False
# Simple log to log the counting data
Log = False
# Auto run/Schedule the software to run at your desired time
Scheduler = False
# Auto stop the software after certain a time/hours
Timer = False
#===============================================================================
#===============================================================================