feat: Added Ultrabeam/Steppir to Station Control with function to retract elements.

This commit is contained in:
2026-07-16 22:10:36 +02:00
parent f853dd479e
commit 09848adddc
6 changed files with 132 additions and 14 deletions
+4
View File
@@ -2580,11 +2580,13 @@ export namespace main {
}
export class UltrabeamStatusInfo {
enabled: boolean;
type: string;
connected: boolean;
direction: number;
frequency: number;
band: number;
moving: boolean;
elements: number[];
static createFrom(source: any = {}) {
return new UltrabeamStatusInfo(source);
@@ -2593,11 +2595,13 @@ export namespace main {
constructor(source: any = {}) {
if ('string' === typeof source) source = JSON.parse(source);
this.enabled = source["enabled"];
this.type = source["type"];
this.connected = source["connected"];
this.direction = source["direction"];
this.frequency = source["frequency"];
this.band = source["band"];
this.moving = source["moving"];
this.elements = source["elements"];
}
}
export class UpdateInfo {