Exemplo n.º 1
0
 //---------------------------------------------------------------------------
 public void SetTo(EN_PIN_TYPE Stat)
 {
     SetTo((int)Stat);
 }
Exemplo n.º 2
0
 public void SetTo(EN_PIN_TYPE Type, EN_PIN_STAT Stat, int Kind)
 {
     m_iType = (int)Type;
     m_iStat = (int)Stat;
     m_iKind = Kind;
 }
Exemplo n.º 3
0
 public void SetType(EN_PIN_TYPE Type)
 {
     m_iType = (int)Type;
 }
Exemplo n.º 4
0
 public void SetTo(EN_PIN_TYPE Type, EN_PIN_STAT Stat)
 {
     m_iType = (int)Type;
     m_iStat = (int)Stat;
 }
Exemplo n.º 5
0
 public bool IsType(EN_PIN_TYPE type)
 {
     return(m_iType == (int)type);
 }