From c7738dfaf253566f5f55c343b340303d73216e11 Mon Sep 17 00:00:00 2001 From: Steve Karg Date: Thu, 14 Jul 2022 21:03:46 -0500 Subject: [PATCH] Remove RGB API from lighting module. Already in sys. (#305) Co-authored-by: Steve Karg --- src/bacnet/lighting.h | 22 ---------------------- 1 file changed, 22 deletions(-) diff --git a/src/bacnet/lighting.h b/src/bacnet/lighting.h index 0670505f..2b9f83a8 100644 --- a/src/bacnet/lighting.h +++ b/src/bacnet/lighting.h @@ -164,28 +164,6 @@ extern "C" { BACNET_COLOR_COMMAND * dst, BACNET_COLOR_COMMAND * src); - BACNET_STACK_EXPORT - void color_rgb_to_xy( - uint8_t r, - uint8_t g, - uint8_t b, - float *x_coordinate, - float *y_coordinate, - float *brightness); - BACNET_STACK_EXPORT - void color_rgb_from_xy( - uint8_t *red, - uint8_t *green, - uint8_t *blue, - float x_coordinate, - float y_coordinate, - float brightness); - BACNET_STACK_EXPORT - const char * color_rgb_to_ascii(uint8_t red, uint8_t green, uint8_t blue); - BACNET_STACK_EXPORT - bool color_rgb_from_ascii(uint8_t *red, uint8_t *green, uint8_t *blue, - const char *name); - #ifdef __cplusplus } #endif /* __cplusplus */