Esempio n. 1
0
 //****************************************//
 //          Pneumatic Control             //
 //****************************************//
 public void PneumaticOn()
 {
     if (currWell == 1)
     {
         m_Agilent.SetBit("201", "0", "1");  //WellA Pneumatic ON
         m_Agilent.SetBit("201", "7", "1");  //GPIO selection chip(TS5V330) point to WELLA //1
     }
     else
     {
         m_Agilent.SetBit("201", "6", "1");  //WellB Pneumatic ON
         m_Agilent.SetBit("201", "7", "0");  //GPIO selection chip(TS5V330) point to WELLB //0
     }
 }