Release candidate for merging to master.
This commit is contained in:
Maurice ONeal 2022-09-25 09:15:23 -04:00
parent 737df9a0b6
commit d5a9d1f046
2 changed files with 3 additions and 2 deletions

View File

@ -14,6 +14,7 @@ Usage: mow <argument>
-h : display usage information about this application. -h : display usage information about this application.
-c : path to the config file. -c : path to the config file.
-v : display the current version.
``` ```
### Config File ### ### Config File ###
@ -76,7 +77,7 @@ duration = 60
post_cmd = move_the_ptz_camera.py post_cmd = move_the_ptz_camera.py
# this an optional command to run after the internal timer duration has # this an optional command to run after the internal timer duration has
# elapsed. one great use for this is to move a ptz camera to the next # elapsed. one great use for this is to move a ptz camera to the next
# position of it's patrol pattern. note: the call to this command can be # position of it's patrol pattern. note: the call to this command will be
# delayed if motion was detected. # delayed if motion was detected.
# #
max_days = 15 max_days = 15

View File

@ -34,7 +34,7 @@ using namespace std;
using namespace std::filesystem; using namespace std::filesystem;
#define BUF_SZ 10 #define BUF_SZ 10
#define APP_VER "1.3.t3" #define APP_VER "1.4"
struct shared_t struct shared_t
{ {