This repository has been archived on 2026-07-02. You can view files and clone it. You cannot open issues or pull requests or push a commit.
Files
BrightnessControl/Brightness.h
T

20 lines
306 B
C++

#ifndef BRIGHTNESS_H
#define BRIGHTNESS_H
class Brightness
{
public:
Brightness();
void grabBrightness();
void grabMaxBrightness();
static unsigned getCurrentBrightness();
static unsigned getMaxBrightness();
private:
static unsigned currentBrightness;
static unsigned maxBrightness;
};
#endif