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.

16 lines
320 B

1 year ago
  1. #pragma once
  2. #include <stdint.h>
  3. #include "project_dep.h"
  4. #ifdef __cplusplus
  5. extern "C" {
  6. #endif
  7. void LightCtrlService_init();
  8. void LightCtrlService_RedLight_setState(bool state);
  9. void LightCtrlService_BlueLight_setState(bool state);
  10. void LightCtrlService_GreenLight_setState(bool state);
  11. #ifdef __cplusplus
  12. }
  13. #endif