-
Notifications
You must be signed in to change notification settings - Fork 35
/
unitemp.c
309 lines (266 loc) · 11.6 KB
/
unitemp.c
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
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
/*
Unitemp - Universal temperature reader
Copyright (C) 2022-2023 Victor Nikitchuk (https://github.com/quen0n)
This program is free software: you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation, either version 3 of the License, or
(at your option) any later version.
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License
along with this program. If not, see <https://www.gnu.org/licenses/>.
*/
#include "unitemp.h"
#include "interfaces/SingleWireSensor.h"
#include "Sensors.h"
#include "./views/UnitempViews.h"
#include <furi_hal_power.h>
/* Переменные */
//Данные приложения
Unitemp* app;
void uintemp_celsiumToFarengate(Sensor* sensor) {
sensor->temp = sensor->temp * (9.0 / 5.0) + 32;
}
void unitemp_pascalToMmHg(Sensor* sensor) {
sensor->pressure = sensor->pressure * 0.007500638;
}
void unitemp_pascalToKPa(Sensor* sensor) {
sensor->pressure = sensor->pressure / 1000.0f;
}
void unitemp_pascalToInHg(Sensor* sensor) {
sensor->pressure = sensor->pressure * 0.0002953007;
}
bool unitemp_saveSettings(void) {
//Выделение памяти для потока
app->file_stream = file_stream_alloc(app->storage);
//Переменная пути к файлу
FuriString* filepath = furi_string_alloc();
//Составление пути к файлу
furi_string_printf(filepath, "%s/%s", APP_PATH_FOLDER, APP_FILENAME_SETTINGS);
//Создание папки плагина
storage_common_mkdir(app->storage, APP_PATH_FOLDER);
//Открытие потока
if(!file_stream_open(
app->file_stream, furi_string_get_cstr(filepath), FSAM_READ_WRITE, FSOM_CREATE_ALWAYS)) {
FURI_LOG_E(
APP_NAME,
"An error occurred while saving the settings file: %d",
file_stream_get_error(app->file_stream));
//Закрытие потока и освобождение памяти
file_stream_close(app->file_stream);
stream_free(app->file_stream);
return false;
}
//Сохранение настроек
stream_write_format(
app->file_stream, "INFINITY_BACKLIGHT %d\n", app->settings.infinityBacklight);
stream_write_format(app->file_stream, "TEMP_UNIT %d\n", app->settings.temp_unit);
stream_write_format(app->file_stream, "PRESSURE_UNIT %d\n", app->settings.pressure_unit);
//Закрытие потока и освобождение памяти
file_stream_close(app->file_stream);
stream_free(app->file_stream);
FURI_LOG_I(APP_NAME, "Settings have been successfully saved");
return true;
}
bool unitemp_loadSettings(void) {
UNITEMP_DEBUG("Loading settings...");
//Выделение памяти на поток
app->file_stream = file_stream_alloc(app->storage);
//Переменная пути к файлу
FuriString* filepath = furi_string_alloc();
//Составление пути к файлу
furi_string_printf(filepath, "%s/%s", APP_PATH_FOLDER, APP_FILENAME_SETTINGS);
//Открытие потока к файлу настроек
if(!file_stream_open(
app->file_stream, furi_string_get_cstr(filepath), FSAM_READ_WRITE, FSOM_OPEN_EXISTING)) {
//Сохранение настроек по умолчанию в случае отсутствия файла
if(file_stream_get_error(app->file_stream) == FSE_NOT_EXIST) {
FURI_LOG_W(APP_NAME, "Missing settings file. Setting defaults and saving...");
//Закрытие потока и освобождение памяти
file_stream_close(app->file_stream);
stream_free(app->file_stream);
//Сохранение стандартного конфига
unitemp_saveSettings();
return false;
} else {
FURI_LOG_E(
APP_NAME,
"An error occurred while loading the settings file: %d. Standard values have been applied",
file_stream_get_error(app->file_stream));
//Закрытие потока и освобождение памяти
file_stream_close(app->file_stream);
stream_free(app->file_stream);
return false;
}
}
//Вычисление размера файла
uint8_t file_size = stream_size(app->file_stream);
//Если файл пустой, то:
if(file_size == (uint8_t)0) {
FURI_LOG_W(APP_NAME, "Settings file is empty");
//Закрытие потока и освобождение памяти
file_stream_close(app->file_stream);
stream_free(app->file_stream);
//Сохранение стандартного конфига
unitemp_saveSettings();
return false;
}
//Выделение памяти под загрузку файла
uint8_t* file_buf = malloc(file_size);
//Опустошение буфера файла
memset(file_buf, 0, file_size);
//Загрузка файла
if(stream_read(app->file_stream, file_buf, file_size) != file_size) {
//Выход при ошибке чтения
FURI_LOG_E(APP_NAME, "Error reading settings file");
//Закрытие потока и освобождение памяти
file_stream_close(app->file_stream);
stream_free(app->file_stream);
free(file_buf);
return false;
}
//Построчное чтение файла
//Указатель на начало строки
FuriString* file = furi_string_alloc_set_str((char*)file_buf);
//Сколько байт до конца строки
size_t line_end = 0;
while(line_end != ((size_t)-1) && line_end != (size_t)(file_size - 1)) {
char buff[20] = {0};
sscanf(((char*)(file_buf + line_end)), "%s", buff);
if(!strcmp(buff, "INFINITY_BACKLIGHT")) {
//Чтение значения параметра
int p = 0;
sscanf(((char*)(file_buf + line_end)), "INFINITY_BACKLIGHT %d", &p);
app->settings.infinityBacklight = p;
} else if(!strcmp(buff, "TEMP_UNIT")) {
//Чтение значения параметра
int p = 0;
sscanf(((char*)(file_buf + line_end)), "\nTEMP_UNIT %d", &p);
app->settings.temp_unit = p;
} else if(!strcmp(buff, "PRESSURE_UNIT")) {
//Чтение значения параметра
int p = 0;
sscanf(((char*)(file_buf + line_end)), "\nPRESSURE_UNIT %d", &p);
app->settings.pressure_unit = p;
} else {
FURI_LOG_W(APP_NAME, "Unknown settings parameter: %s", buff);
}
//Вычисление конца строки
line_end = furi_string_search_char(file, '\n', line_end + 1);
}
free(file_buf);
file_stream_close(app->file_stream);
stream_free(app->file_stream);
FURI_LOG_I(APP_NAME, "Settings have been successfully loaded");
return true;
}
/**
* @brief Выделение места под переменные плагина
*
* @return true Если всё прошло успешно
* @return false Если в процессе загрузки произошла ошибка
*/
static bool unitemp_alloc(void) {
//Выделение памяти под данные приложения
app = malloc(sizeof(Unitemp));
//Разрешение работы приложения
app->processing = true;
//Открытие хранилища (?)
app->storage = furi_record_open(RECORD_STORAGE);
//Уведомления
app->notifications = furi_record_open(RECORD_NOTIFICATION);
//Установка значений по умолчанию
app->settings.infinityBacklight = true; //Подсветка горит всегда
app->settings.temp_unit = UT_TEMP_CELSIUS; //Единица измерения температуры - градусы Цельсия
app->settings.pressure_unit = UT_PRESSURE_MM_HG; //Единица измерения давления - мм рт. ст.
app->gui = furi_record_open(RECORD_GUI);
//Диспетчер окон
app->view_dispatcher = view_dispatcher_alloc();
app->sensors = NULL;
app->buff = malloc(BUFF_SIZE);
unitemp_General_alloc();
unitemp_MainMenu_alloc();
unitemp_Settings_alloc();
unitemp_SensorsList_alloc();
unitemp_SensorEdit_alloc();
unitemp_SensorNameEdit_alloc();
unitemp_SensorActions_alloc();
unitemp_widgets_alloc();
//Всплывающее окно
app->popup = popup_alloc();
view_dispatcher_add_view(app->view_dispatcher, UnitempViewPopup, popup_get_view(app->popup));
view_dispatcher_attach_to_gui(app->view_dispatcher, app->gui, ViewDispatcherTypeFullscreen);
return true;
}
/**
* @brief Освыбождение памяти после работы приложения
*/
static void unitemp_free(void) {
popup_free(app->popup);
//Удаление вида после обработки
view_dispatcher_remove_view(app->view_dispatcher, UnitempViewPopup);
unitemp_widgets_free();
unitemp_SensorActions_free();
unitemp_SensorNameEdit_free();
unitemp_SensorEdit_free();
unitemp_SensorsList_free();
unitemp_Settings_free();
unitemp_MainMenu_free();
unitemp_General_free();
free(app->buff);
view_dispatcher_free(app->view_dispatcher);
furi_record_close(RECORD_GUI);
//Очистка датчиков
//Высвыбождение данных датчиков
unitemp_sensors_free();
free(app->sensors);
//Закрытие уведомлений
furi_record_close(RECORD_NOTIFICATION);
//Закрытие хранилища
furi_record_close(RECORD_STORAGE);
//Удаление в самую последнюю очередь
free(app);
}
/**
* @brief Точка входа в приложение
*
* @return Код ошибки
*/
int32_t unitemp_app() {
//Выделение памяти под переменные
//Выход если произошла ошибка
if(unitemp_alloc() == false) {
//Освобождение памяти
unitemp_free();
//Выход
return 0;
}
//Загрузка настроек из SD-карты
unitemp_loadSettings();
//Применение настроек
if(app->settings.infinityBacklight == true) {
//Постоянное свечение подсветки
notification_message(app->notifications, &sequence_display_backlight_enforce_on);
}
app->settings.lastOTGState = furi_hal_power_is_otg_enabled();
//Загрузка датчиков из SD-карты
unitemp_sensors_load();
//Инициализация датчиков
unitemp_sensors_init();
unitemp_General_switch();
while(app->processing) {
if(app->sensors_ready) unitemp_sensors_updateValues();
furi_delay_ms(100);
}
//Деинициализация датчиков
unitemp_sensors_deInit();
//Автоматическое управление подсветкой
if(app->settings.infinityBacklight == true)
notification_message(app->notifications, &sequence_display_backlight_enforce_auto);
//Освобождение памяти
unitemp_free();
//Выход
return 0;
}