-
Notifications
You must be signed in to change notification settings - Fork 0
/
os_helper.cpp
executable file
·145 lines (99 loc) · 2.34 KB
/
os_helper.cpp
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
#include "os_helper.h"
#include <fcntl.h>
#include <unistd.h>
#include <string.h>
os_helper::os_helper(QObject *parent)
: QObject{parent}
{
cpu_temp_file = open("/sys/class/thermal/thermal_zone0/hwmon0/temp1_input", O_RDONLY);
lcd_bright_file = open("/sys/class/backlight/rpi_backlight/brightness", O_RDWR);
lcd_backlight_file = open("/sys/class/backlight/rpi_backlight/bl_power", O_RDWR);
}
int os_helper::get_cpu_temp()
{
int cputemp = 0;
char temp[10];
memset(temp, 0, 10);
size_t bytes_read = 0;
bytes_read = read(cpu_temp_file, temp, 10);
lseek(cpu_temp_file, 0, SEEK_SET);
if(bytes_read <= 0)
{
return 0;
}
sscanf(temp, "%d", &cputemp);
return cputemp / 1000;
}
int os_helper::get_lcd_brightness()
{
int brightness = 0;
char temp[10];
memset(temp, 0, 10);
size_t bytes_read = 0;
bytes_read = read(lcd_bright_file, temp, 10);
lseek(lcd_bright_file, 0, SEEK_SET);
if(bytes_read <= 0)
{
return -1;
}
sscanf(temp, "%d", &brightness);
return brightness;
}
int os_helper::set_lcd_brightness(int brightness)
{
if(brightness < 0 || brightness > 255)
{
fprintf(stderr, "Invalid brightness level %d\n", brightness);
return -1;
}
char temp[10];
sprintf(temp, "%d", brightness);
size_t bytes_read = 0;
bytes_read = write(lcd_bright_file, temp, strlen(temp));
lseek(lcd_bright_file, 0, SEEK_SET);
if(bytes_read <= 0)
{
return -1;
}
return 0;
}
int os_helper::get_lcd_backlight()
{
int backlight = 0;
char temp[10];
memset(temp, 0, 10);
size_t bytes_read = 0;
bytes_read = read(lcd_backlight_file, temp, 10);
lseek(lcd_backlight_file, 0, SEEK_SET);
if(bytes_read <= 0)
{
return -1;
}
sscanf(temp, "%d", &backlight);
return backlight;
}
int os_helper::set_lcd_backlight(bool on)
{
char temp[10];
if(on)
{
sprintf(temp, "%d", 0);
}
else{
sprintf(temp, "%d", 1);
}
size_t bytes_read = 0;
bytes_read = write(lcd_bright_file, temp, strlen(temp));
lseek(lcd_bright_file, 0, SEEK_SET);
if(bytes_read <= 0)
{
return -1;
}
return 0;
}
os_helper::~os_helper()
{
close(cpu_temp_file);
close(lcd_bright_file);
close(lcd_backlight_file);
}