2
0

rgb.h 1.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051
  1. /* Copyright 2017 Jack Humbert
  2. *
  3. * This program is free software: you can redistribute it and/or modify
  4. * it under the terms of the GNU General Public License as published by
  5. * the Free Software Foundation, either version 2 of the License, or
  6. * (at your option) any later version.
  7. *
  8. * This program is distributed in the hope that it will be useful,
  9. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  10. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  11. * GNU General Public License for more details.
  12. *
  13. * You should have received a copy of the GNU General Public License
  14. * along with this program. If not, see <http://www.gnu.org/licenses/>.
  15. */
  16. #pragma once
  17. __attribute__((weak))
  18. void rgblight_toggle(void) {};
  19. __attribute__((weak))
  20. void rgblight_step(void) {};
  21. __attribute__((weak))
  22. void rgblight_step_reverse(void) {};
  23. __attribute__((weak))
  24. void rgblight_increase_hue(void) {};
  25. __attribute__((weak))
  26. void rgblight_decrease_hue(void) {};
  27. __attribute__((weak))
  28. void rgblight_increase_sat(void) {};
  29. __attribute__((weak))
  30. void rgblight_decrease_sat(void) {};
  31. __attribute__((weak))
  32. void rgblight_increase_val(void) {};
  33. __attribute__((weak))
  34. void rgblight_decrease_val(void) {};
  35. __attribute__((weak))
  36. void rgblight_increase_speed(void) {};
  37. __attribute__((weak))
  38. void rgblight_decrease_speed(void) {};