api-hal-light.h 236 B

1234567891011121314151617
  1. #pragma once
  2. #include <stdbool.h>
  3. #include <stdint.h>
  4. #include <api-hal-resources.h>
  5. #ifdef __cplusplus
  6. extern "C" {
  7. #endif
  8. void api_hal_light_init();
  9. void api_hal_light_set(Light light, uint8_t value);
  10. #ifdef __cplusplus
  11. }
  12. #endif