_PortStates_struct.h 670 B

1234567891011121314151617
  1. typedef byte Exp_state_T ;
  2. const Exp_state_T Exp_state_OFF = B00000001 ;
  3. const Exp_state_T Exp_state_ON = B00000010 ;
  4. const Exp_state_T Exp_state_ON_USE_LEVEL = B00000100 ; // use Exp_state_level 0-255
  5. const Exp_state_T Exp_state_BLINK = B00001000 ;
  6. const Exp_state_T Exp_state_SET_REQ_SEND = B00100000 ; //when was initialized and set output
  7. const Exp_state_T Exp_state_SET = B01000000 ; //when was initialized and set output
  8. const Exp_state_T Exp_state_ERROR = B10000000 ;
  9. //const Exp_state_T Exp_state_TOGGLE = B10000000 ;
  10. //const Exp_state_OFF 0x01
  11. //#define Exp_state_ON 0x02