Simulation Core
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

CEquipmentsConstants.f90 223 B

преди 1 година
1234567891011
  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