添加通过Modbus读取温湿度的设置

可通过用户界面调整地址
This commit is contained in:
CortexCore
2023-07-10 15:50:11 +08:00
parent 6301e2d3ad
commit d8d34766c0
6 changed files with 197 additions and 51 deletions

View File

@@ -0,0 +1,18 @@
using Godot;
using System;
namespace BITKit;
public partial class UXAnimateButton : Button
{
[ExportCategory(nameof(ProgressBar))]
[Export] private ProgressBar progressBar;
[Export] private float progressDuration = 1f;
public override void _Ready()
{
}
private void OnPressed()
{
}
}