Example #1
0
 public Action(string name, string command, ActionTypes type, TelloUdpClient client = null) :
     base(client)
 {
     _actionCommand = command;
     _actionName    = name;
     _actionType    = type;
 }
Example #2
0
 public BaseActions(TelloUdpClient client)
     : base(client)
 {
     CreateActionCache();
 }
Example #3
0
 public SpeedAction(TelloUdpClient client)
     : base(client)
 {
 }
Example #4
0
 public FlyActions(TelloUdpClient client = null)
     : base(client)
 {
 }
Example #5
0
 public BaseAction(TelloUdpClient client = null)
 {
     _client = client;
 }
Example #6
0
 public RotationActions(TelloUdpClient client = null)
     : base(client)
 {
 }