backlight_custom.h 333 B

123456789101112131415
  1. /**
  2. * Backlighting code for PS2AVRGB boards (ATMEGA32A)
  3. * Kenneth A. (github.com/krusli | krusli.me)
  4. */
  5. #ifndef BACKLIGHT_CUSTOM_H
  6. #define BACKLIGHT_CUSTOM_H
  7. #include <avr/pgmspace.h>
  8. void b_led_init_ports(void);
  9. void b_led_set(uint8_t level);
  10. void b_led_task(void);
  11. void setPWM(uint16_t xValue);
  12. #endif // BACKLIGHT_CUSTOM_H