private void InitializeModules()
        {
            // Initialize GTM.Modules and event handlers here.
            thermocouple = new GTM.GHIElectronics.Thermocouple(1);

            display_HD44780 = new GTM.GHIElectronics.Display_HD44780(3);
        }
Exemple #2
0
        private void InitializeModules()
        {
            // Initialize GTM.Modules and event handlers here.
            thermocouple = new GTM.GHIElectronics.Thermocouple(1);

            display_HD44780 = new GTM.GHIElectronics.Display_HD44780(3);
        }
Exemple #3
0
 private void InitializeModules()
 {
     this.usbClientEDP     = new GTM.GHIElectronics.USBClientEDP(1);
     this.rfidReader       = new GTM.GHIElectronics.RFIDReader(11);
     this.ethernetJ11D     = new GTM.GHIElectronics.EthernetJ11D(7);
     this.joystick         = new GTM.GHIElectronics.Joystick(9);
     this.displayT35       = new GTM.GHIElectronics.DisplayT35(14, 13, 12, 10);
     this.thermocouple     = new GTM.GHIElectronics.Thermocouple(8);
     this.buttonDoorStatus = new GTM.GHIElectronics.Button(6);
 }
        private void InitializeModules()
        {
            // Initialize GTM.Modules and event handlers here.
            usbClientDP = new GTM.GHIElectronics.UsbClientDP(1);

            relays = new GTM.Seeed.Relays(8);

            potentiometer = new GTM.GHIElectronics.Potentiometer(9);

            display_TE35 = new GTM.GHIElectronics.Display_TE35(14, 13, 12, 10);

            thermocouple = new GTM.GHIElectronics.Thermocouple(11);
        }
Exemple #5
0
        // This method is run when the mainboard is powered up or reset.
        void ProgramStarted()
        {
            // modules
            this.LED1          = new GTM.GHIElectronics.LEDMatrix(7);
            this.LED2          = new GTM.GHIElectronics.LEDMatrix(this.LED1.DaisyLinkSocketNumber);
            this.Thermocouple  = new GTM.GHIElectronics.Thermocouple(6);
            this.Relay         = new GTM.GHIElectronics.RelayISOx16(4);
            this.Potentiometer = new GTM.GHIElectronics.Potentiometer(3);
            this.Relay.DisableAllRelays();

            // Temp Timer
            TempTimer.Tick += TempTimer_Tick;
            TempTimer.Start();

            // Timer
            RelayStartTimer.Tick += RelayStartTimer_Tick;
            RelayStopTimer.Tick  += RelayStopTimer_Tick;
        }