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.

13 lines
262 B

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