From d6b85b1660c302e2e7568aca07e250d9dd38e19f Mon Sep 17 00:00:00 2001 From: Sven Czarnian Date: Fri, 12 Nov 2021 20:14:05 +0100 Subject: [PATCH] send the sequence to euroscope --- aman/sys/Worker.py | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/aman/sys/Worker.py b/aman/sys/Worker.py index 649dc87..5ba7387 100644 --- a/aman/sys/Worker.py +++ b/aman/sys/Worker.py @@ -141,9 +141,9 @@ class Worker(Thread): else: print('No relevant inbounds found for the optimization in ' + self.Icao) - # send the sequence to the GUI - self.WebUi.sendSequence(self.Icao, self.RecedingHorizonControl.sequence()) - - # TODO send the sequence to EuroScope + # send the sequence to the GUI and Euroscope + sequence = self.RecedingHorizonControl.sequence() + self.WebUi.sendSequence(self.Icao, sequence) + self.Euroscope.sendSequence(self.Icao, sequence) self.releaseLock()