2023-08-17 Alarm Watchdog Mission Scheduling proposal

 

Key points:

  1. In missions menu user can schedule missions to execute on their own at designated days and times during the week.

  2. Scheduling executes automatically even if phone is locked and is not on the same network.

Limitations:

  1. Cannot schedule for specific date (if necessary let us know to plan this function)

  2. Cannot schedule bi-weekly etc. repeat schedule (if necessary let us know to plan this function)

  3. Cannot schedule multiple schedules for single mission, each mission has only single scheduling plan (if necessary let us know to plan this function)

 

UI proposal

image-20230817102141934

 

Architecture proposal

As background tasks cannot be executed with reliable consistency on iOS and Android as these operating systems have rules to save battery.

iOS limitations:

Android limitations:

Both also have limitation that they must be on same WiFi to control drone in background.

To avoid these problems reliable solution is either to control drone from ROS itself on drone node or using secondary node/server on the same network which also might serve as map processing node.

 

Option A - with local server

Local server would then execute scheduling, wake up drone at designated time. Additional computing capacity for other tasks. Asya could implement REST API and control node using ros on local server.

REST API
ros
rosbridge
Phone app
Local server
Drone

During execution of mission when phone is locked or not available

ros
Local server
Drone

 

 

Option B - without local server

In this option we need modifications in Drone itself, it must be capable of waking up using interrupts from sleep itself and execute whole mission without any interaction from phone. It also must store schedule and provide ROS interface to change it.

rosbridge
Phone app
Drone

During execution of mission when phone is locked or not available

Drone

We recommend Option A.