add remote fancy screen through backend

This commit is contained in:
2023-11-25 10:52:35 +01:00
parent 97bfd865cc
commit 8f8e63d8b7
11 changed files with 926 additions and 3 deletions

View File

@@ -13,6 +13,7 @@ createApp( {
colourPalette: [],
progressBar: 0,
timeTracker: null,
isReconnecting: false,
};
},
computed: {
@@ -125,7 +126,10 @@ createApp( {
}
setTimeout( () => {
self.connect();
if ( !self.isReconnecting ) {
self.isReconnecting = true;
self.connect();
}
}, 1000 );
}, false );
},