Files
2017-09-17 01:59:51 +02:00

25 lines
381 B
C

//
// Created by MightyPork on 2017/06/08.
//
#ifndef FIRMWARE_LEDS_H
#define FIRMWARE_LEDS_H
#include <stdint.h>
extern volatile uint8_t led_brightness_mul;
/**
* Set led colors
*
* @param new_leds - array of 4 ints for the 4 leds
*/
void leds_set(const uint32_t *new_leds);
/**
* Send the set colors to the neopixels
*/
void leds_show(void);
#endif //FIRMWARE_LEDS_H