moved code here. still needs to update gh

This commit is contained in:
klein panic
2025-02-24 15:18:44 -05:00
parent 9ca9f577a4
commit 2726432fe1
106 changed files with 4816 additions and 0 deletions

View File

@@ -0,0 +1,6 @@
#ifndef BRIGHTNESS_H
#define BRIGHTNESS_H
void adjust_brightness();
#endif // BRIGHTNESS_H

View File

@@ -0,0 +1,6 @@
#ifndef COLOR_TEMPERATURE_H
#define COLOR_TEMPERATURE_H
void adjust_color_temperature();
#endif // COLOR_TEMPERATURE_H

View File

@@ -0,0 +1,7 @@
#ifndef DISPLAY_H
#define DISPLAY_H
void display_main_screen();
void handle_option(int option);
#endif // DISPLAY_H

View File

@@ -0,0 +1,6 @@
#ifndef REFRESH_RATE_H
#define REFRESH_RATE_H
void adjust_refresh_rate();
#endif // REFRESH_RATE_H

View File

@@ -0,0 +1,6 @@
#ifndef RESOLUTION_H
#define RESOLUTION_H
void adjust_resolution();
#endif // RESOLUTION_H