UART added

This commit is contained in:
StefansE
2026-03-26 15:32:14 +01:00
parent 53269db9a6
commit 6b3f588fb0
12 changed files with 7486 additions and 24 deletions

View File

@@ -12,6 +12,7 @@
void ws_Effect_RoudTheClock(void){
#define RAND_MAX 25
uint8_t r = rand();
uint8_t g = rand();
uint8_t b = rand();
@@ -30,10 +31,12 @@ void ws_Effect_RoudTheClock(void){
void ws_Effect_RandRound(void){
#define RAND_MAX 25
uint8_t r = rand();
uint8_t g = rand();
uint8_t b = rand();
for (uint8_t led = 0; led < 24; led++) {
@@ -46,7 +49,7 @@ void ws_Effect_RandRound(void){
void ws_Effect_RandRand(void){
#define RAND_MAX 255
#define RAND_MAX 25
uint8_t r = rand();
uint8_t g = rand();
uint8_t b = rand();