1234567891011121314151617181920212223242526272829303132 |
- #ifndef __Elevator_H__
- #define __Elevator_H__
- #include <stdint.h>
- typedef enum
- {
- OFF = 0,
- ON
- } SwitchStatus;
- void BoardInit(void);
- uint8_t ElevatorReadData(void);
- void FanStatusSet(SwitchStatus status);
- #endif
|