diff --git a/tasmota/xdrv_52_3_berry_light.ino b/tasmota/xdrv_52_3_berry_light.ino index 2f3832234..aadeea032 100644 --- a/tasmota/xdrv_52_3_berry_light.ino +++ b/tasmota/xdrv_52_3_berry_light.ino @@ -24,8 +24,8 @@ #include /*********************************************************************************************\ - * - * + * + * \*********************************************************************************************/ extern "C" { @@ -43,7 +43,7 @@ extern "C" { if (Light.device > 0) { // we have a light - + uint8_t channels[LST_MAX]; char s_rgb[8] = {0}; // RGB raw levels light_controller.calcLevels(channels); @@ -207,7 +207,7 @@ extern "C" { // channels if (map_find(vm, "channels")) { if (be_isinstance(vm, -1)) { - be_getbuiltin(vm, "list"); // add "list" class + be_getbuiltin(vm, "list"); // add "list" class if (be_isderived(vm, -2)) { be_pop(vm, 1); // remove "list" class from top int32_t list_size = get_list_size(vm); @@ -303,9 +303,9 @@ extern "C" { } int32_t l_getlight(struct bvm *vm) __attribute__ ((weak, alias ("b_light_missing"))); int32_t l_setlight(struct bvm *vm) __attribute__ ((weak, alias ("b_light_missing"))); - int32_t gamma8(struct bvm *vm) __attribute__ ((weak, alias ("b_light_missing"))); - int32_t gamma10(struct bvm *vm) __attribute__ ((weak, alias ("b_light_missing"))); - int32_t reverse_gamma10(struct bvm *vm) __attribute__ ((weak, alias ("b_light_missing"))); + int32_t l_gamma8(struct bvm *vm) __attribute__ ((weak, alias ("b_light_missing"))); + int32_t l_gamma10(struct bvm *vm) __attribute__ ((weak, alias ("b_light_missing"))); + int32_t l_rev_gamma10(struct bvm *vm) __attribute__ ((weak, alias ("b_light_missing"))); #endif // #ifdef USE_LIGHT }