Simulation Core
Nelze vybrat více než 25 témat Téma musí začínat písmenem nebo číslem, může obsahovat pomlčky („-“) a může být dlouhé až 35 znaků.
 
 
 
 
 
 

11 řádky
223 B

  1. module CEquipmentsConstants
  2. implicit none
  3. public
  4. ! LED State Types
  5. integer :: LedOff = 0
  6. integer :: LedOn = 1
  7. integer :: LedBlinking = 2
  8. contains
  9. end module CEquipmentsConstants