feat: GUI 配置支持添加和减少 LED。

This commit is contained in:
2023-01-02 16:53:20 +08:00
parent 4ad78ae5cc
commit 366b137258
21 changed files with 732 additions and 106 deletions

View File

@@ -1,5 +1,7 @@
export class LedStripConfig {
index!: number;
global_start_position!: number;
global_end_position!: number;
constructor(
public index: number,
public global_start_position: number,
public global_end_position: number,
) {}
}