Server: change start_animation command name to start

This commit is contained in:
Arthur
2019-06-04 18:15:00 +03:00
parent 3c1785477c
commit b80a19cb96

View File

@@ -207,7 +207,7 @@ class Server:
def send_starttime(self, copter, dt=0):
timenow = self.time_now()
print('Now:', time.ctime(timenow), "+ dt =", dt)
copter.send_message("start_animation", {"time": str(timenow + dt)})
copter.send_message("start", {"time": str(timenow + dt)})
def requires_connect(f):