5a96a696b1
- 펌웨어(program), C# 대시보드(TestProgram), 시뮬레이터(Simulator), 프로토콜/문서(Protocol, doc) 전체를 단일 저장소로 통합 - program 폴더의 별도 git 저장소를 제거하고 통합 저장소에 흡수 - 빌드 산출물(program/build, bin/obj, *.o/.elf/.bin/.hex 등) .gitignore 처리 - 사내 Synology NAS Git 원격 연결 예정 Co-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com>
24 lines
970 B
C#
24 lines
970 B
C#
using System.ComponentModel;
|
|
using System.Runtime.CompilerServices;
|
|
|
|
namespace ErvDashboard.Model
|
|
{
|
|
// 풍량 VSP 한 엔트리 (환기1~4 / 바이패스 / 공청1~4) — SA/EA 편집 가능
|
|
public class VspRow : INotifyPropertyChanged
|
|
{
|
|
public string Name { get; }
|
|
public int Group { get; } // 0환기 1바이패스 2공청 (CTRL_VSP)
|
|
public int Index { get; } // 환기/공청 1~4, 바이패스 1
|
|
|
|
public VspRow(string name, int group, int index) { Name = name; Group = group; Index = index; }
|
|
|
|
int _sa, _ea;
|
|
public int Sa { get => _sa; set { if (_sa != value) { _sa = value; OnChanged(); } } }
|
|
public int Ea { get => _ea; set { if (_ea != value) { _ea = value; OnChanged(); } } }
|
|
|
|
public event PropertyChangedEventHandler? PropertyChanged;
|
|
void OnChanged([CallerMemberName] string? n = null) =>
|
|
PropertyChanged?.Invoke(this, new PropertyChangedEventArgs(n));
|
|
}
|
|
}
|