forked from Dniel97/segatools
16 lines
279 B
C
16 lines
279 B
C
|
/*
|
||
|
Serial LED implementation for chuniio
|
||
|
|
||
|
Credits:
|
||
|
somewhatlurker, skogaby
|
||
|
*/
|
||
|
|
||
|
#pragma once
|
||
|
|
||
|
#include <windows.h>
|
||
|
|
||
|
#include "chuniio/leddata.h"
|
||
|
|
||
|
HRESULT led_serial_init(wchar_t led_com[12], DWORD baud);
|
||
|
void led_serial_update(struct _chuni_led_data_buf_t* data);
|