first commit

This commit is contained in:
TemanSv1n
2025-12-02 18:52:45 +03:00
commit bdda481bff
202 changed files with 73723 additions and 0 deletions

19
DeautherX/led.h Normal file
View File

@@ -0,0 +1,19 @@
/* This software is licensed under the MIT License: https://github.com/BlackTechX011/DeautherX */
#pragma once
#include <cstdint>
enum LED_MODE {
OFF,
SCAN,
ATTACK,
IDLE
};
namespace led {
void setup();
void update();
void setMode(LED_MODE new_mode, bool force = false);
void setColor(uint8_t r, uint8_t g, uint8_t b);
}