budget96.c 1.9 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980
  1. /* Copyright 2019 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 "budget96.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_master.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_transmit(0xb0, (uint8_t*)led, 3 * RGBLED_NUM, 100);
  42. }
  43. #endif
  44. void backlight_init_ports(void) {
  45. // initialize pins D0, D1, D4 and D6 as output
  46. setPinOutput(D0);
  47. setPinOutput(D1);
  48. setPinOutput(D4);
  49. setPinOutput(D6);
  50. // turn RGB LEDs on
  51. writePinHigh(D0);
  52. writePinHigh(D1);
  53. writePinHigh(D4);
  54. writePinHigh(D6);
  55. }
  56. void backlight_set(uint8_t level) {
  57. if (level == 0) {
  58. // turn RGB LEDs off
  59. writePinLow(D0);
  60. writePinLow(D1);
  61. writePinLow(D4);
  62. writePinLow(D6);
  63. } else {
  64. // turn RGB LEDs on
  65. writePinHigh(D0);
  66. writePinHigh(D1);
  67. writePinHigh(D4);
  68. writePinHigh(D6);
  69. }
  70. }