12 lines
139 B
C
12 lines
139 B
C
#include "header.h"
|
|
|
|
|
|
// led RGB D5 must turns on in a loop of colors using PWM
|
|
int main() {
|
|
init_rgb();
|
|
uart_init();
|
|
|
|
while (1);
|
|
}
|
|
|