little clean up

This commit is contained in:
2026-01-06 13:32:25 +01:00
parent 528dc76ec0
commit ed89ceaac5
339 changed files with 279 additions and 415273 deletions

View File

@@ -3,8 +3,7 @@
#include <stdint.h>
class RdsPiBuffer
{
class RdsPiBuffer {
public:
enum State : uint8_t {
STATE_CORRECT = 0,

13
include/utils.h Normal file
View File

@@ -0,0 +1,13 @@
#pragma once
#include <Arduino.h>
#include <math.h>
#include <stdint.h>
struct HSV {
float h;
float s;
float v;
};
HSV RGB565toHSV(uint16_t color);
uint16_t HSVtoRGB565(float h, float s, float v);