You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

15 lines
333 B

  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