panc60.c 1.6 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364
  1. /* Copyright 2018 MechMerlin
  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. #include "panc60.h"
  17. #ifdef BACKLIGHT_ENABLE
  18. #include "backlight.h"
  19. #endif
  20. #ifdef RGBLIGHT_ENABLE
  21. #include "rgblight.h"
  22. #endif
  23. #include <avr/pgmspace.h>
  24. #include "action_layer.h"
  25. #include "i2c.h"
  26. #include "quantum.h"
  27. __attribute__ ((weak))
  28. void matrix_scan_user(void) {
  29. }
  30. #ifdef RGBLIGHT_ENABLE
  31. extern rgblight_config_t rgblight_config;
  32. void rgblight_set(void) {
  33. if (!rgblight_config.enable) {
  34. for (uint8_t i = 0; i < RGBLED_NUM; i++) {
  35. led[i].r = 0;
  36. led[i].g = 0;
  37. led[i].b = 0;
  38. }
  39. }
  40. i2c_init();
  41. i2c_send(0xb0, (uint8_t*)led, 3 * RGBLED_NUM);
  42. }
  43. #endif
  44. void backlight_init_ports(void) {
  45. DDRD |= (1<<0 | 1<<1 | 1<<4 | 1<<6);
  46. PORTD &= ~(1<<0 | 1<<1 | 1<<4 | 1<<6);
  47. }
  48. void backlight_set(uint8_t level) {
  49. if (level == 0) {
  50. // Turn out the lights
  51. PORTD &= ~(1<<0 | 1<<1 | 1<<4 | 1<<6);
  52. } else {
  53. // Turn on the lights
  54. PORTD |= (1<<0 | 1<<1 | 1<<4 | 1<<6);
  55. }
  56. }