Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

  1. Sign in to the WOS2 IoT Server device management console using admin as the username and admin as the password.

  2. Enroll an Android or iOS device.

    Info
    • For more information on how to enroll an Android device, see Android.
    • For more information on how to enroll an iOS device, see iOS.
  3. Change the time on the TimedTriggers execution plan to match your current time. If you want the camera to be disabled at 12.50 PM, define 0 50 12 * * ? for the cronLockTriggerStream property.
    Example:

    Code Block
    define trigger cronLockTriggerStream at '0 50 12 * * ?' ; /* Disable the camera on the device at 12:50 '0 50 12 * * ?' */

    Now, you see that the camera can't be accessed at 12.50 PM.
    Image Removed Image Added

  4. Similarly, change the time on the TimedTriggers execution plan to match your current time. If you want to enable the camera on the device at 1 PM, define 0 0 13 * * ? for the cronUnlockTriggerStream property.
    Example:

    Code Block
    define trigger cronUnlockTriggerStream at '0 0 13 * * ?' ; /* Enable the camera on the device at 13:00 '0 0 13 * * ?' */

    Now, you see that you can access the camera after 1 PM.

...