Simulation Core
選択できるのは25トピックまでです。 トピックは、先頭が英数字で、英数字とダッシュ('-')を使用した35文字以内のものにしてください。
 
 
 
 
 
 

11 行
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