forked from Dniel97/segatools
Dniel97
8ebdf67d6e
Credits: somewhatlurker, skogaby https://dev.s-ul.net/skogaby/segatools/-/blob/ongeki-15093/
20 lines
327 B
C
20 lines
327 B
C
/*
|
|
LED output functions
|
|
|
|
Credits:
|
|
somewhatlurker, skogaby
|
|
*/
|
|
|
|
#pragma once
|
|
|
|
#include <windows.h>
|
|
|
|
#include <stdbool.h>
|
|
#include <stdint.h>
|
|
|
|
#include "chuniio/config.h"
|
|
|
|
extern HANDLE led_init_mutex;
|
|
int led_output_init(struct chuni_io_config* const cfg);
|
|
void led_output_update(uint8_t board, const byte* rgb);
|