User Manual
Table Of Contents
- Cover
- Section 1 Introduction
- Section 2 Installing the AXIS 240
- Section 3 Assigning an IP Address
- Section 4 Configuring the AXIS 240
- Section 5 Using the AXIS 240
- Appendix A Troubleshooting
- Appendix B The Parameter List
- Appendix C Updating the Software
- Appendix D Technical Specifications
- Appendix E The Auxiliary IO Port
- Appendix F The RS232 Serial Ports
- Appendix G Camera Applications
- Appendix H CRON Script Command Reference
AXIS 240 Users Manual Appendix H: CRON Script Command Reference
123
Example
sleep
This command adds a pause to the CRON script execution. The
command is typically used if you want to assure that the previous
command is finished before continuing the script.
Syntax
sleep <seconds>;
Options
<seconds>
Specifies the number of seconds to wait before proceeding with
the next command in the event entry.
Example
snapshot
This command updates the
lastshot.jpg image. The command can
also be used for controlling the relay switch.
Syntax
snapshot [-l LOOPTIME] [-t TOTALTIME]
[-cam CAMERANUMBER] [FILE];
Options
-l Specifies the time between two consecutive image updates.
-t Specifies the duration of the command. Format:
h<hours>m<minutes>s<seconds>.
# This command will reset the AXIS 240 hardware
# once a day.
0 0 * * * :
reset -hard;
%
# This command will result in a 30 seconds pause
# in the CRON script execution.
* * * * * :
sleep 30;
%










