Simulation Core
Nie możesz wybrać więcej, niż 25 tematów Tematy muszą się zaczynać od litery lub cyfry, mogą zawierać myślniki ('-') i mogą mieć do 35 znaków.
 
 
 
 
 
 

11 wiersze
233 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