コード例 #1
0
 public DatapointEvent(Datapoint c, Datapoint p)
 {
     Current  = c;
     Previous = p;
 }
コード例 #2
0
 public TypedDatapoint(Datapoint dp)
 {
     UnderlyingDatapoint = dp;
 }
コード例 #3
0
ファイル: DeviceGroup.cs プロジェクト: grusin/csharphomematic
 public void SetRoomValue(Datapoint dp, object newValue)
 {
     dp.SetRoomValue(newValue, typeof(T));
 }