chengdu_zhonghe.h 562 B

123456789101112131415161718192021222324252627282930313233
  1. /**
  2. * space_server 对外接口成都众合。
  3. *
  4. * © 2020 成都河狸智能科技有限责任公司。保留所有权利。
  5. *
  6. * 作者: zhq1229
  7. */
  8. #ifndef __ROBOT_CHENGDU_ZHONGHE_H__
  9. #define __ROBOT_CHENGDU_ZHONGHE_H__
  10. #include <space_lib/space_lib.h>
  11. namespace robot {
  12. namespace chengdu_zhonghe {
  13. enum LiftState {
  14. LIFT_INIT = 0,
  15. LIFT_IDLE,
  16. LIFT_WORKING,
  17. LIFT_ERROR,
  18. };
  19. LiftState liftState();
  20. int init(Json::Value &conf);
  21. int shutdown();
  22. } // namespace chengdu_zhonghe
  23. } // namespace robot
  24. #endif // __ROBOT_CHENGDU_ZHONGHE_H__