mirror of
https://github.com/whowechina/popn_pico_firmware.git
synced 2026-09-22 22:58:13 +03:00
16 lines
225 B
C
16 lines
225 B
C
/*
|
|
* Pico Popn Controller Buttons
|
|
* WHowe <github.com/whowechina>
|
|
*/
|
|
|
|
#ifndef RGB_H
|
|
#define RGB_H
|
|
|
|
#include <stdint.h>
|
|
|
|
void rgb_init();
|
|
void rgb_update_logo(uint8_t r, uint8_t g, uint8_t b);
|
|
void rgb_stimulate();
|
|
|
|
#endif
|