fix
This commit is contained in:
parent
d8e42372b1
commit
bd7b05307a
13
main/main.c
13
main/main.c
@ -39,18 +39,15 @@ static adc_oneshot_unit_handle_t adc_handle;
|
||||
static adc_cali_handle_t cali_handle;
|
||||
static bool is_calibrated = false;
|
||||
|
||||
static int g_threshold_low = 0;
|
||||
static int g_threshold_up = 0;
|
||||
static atomic_int g_threshold_low = 0;
|
||||
static atomic_int g_threshold_up = 0;
|
||||
|
||||
static int g_current_pressure = 0;
|
||||
static atomic_int g_current_pressure = 0;
|
||||
|
||||
|
||||
// ==================== ГЛОБАЛЬНЫЕ ПЕРЕМЕННЫЕ ====================
|
||||
static const char *TAG = "ESP32_AP_SERVER";
|
||||
|
||||
atomic_int low_treshhold = 0;
|
||||
atomic_int up_treshhold = 0;
|
||||
|
||||
esp_err_t adc_init(void)
|
||||
{
|
||||
// Инициализация ADC
|
||||
@ -365,10 +362,10 @@ static esp_err_t save_thresholds_handler(httpd_req_t *req) {
|
||||
return 1;
|
||||
}
|
||||
|
||||
err = nvs_set_i32(my_handle, "treshhold_low", low_value);
|
||||
err = nvs_set_i32(my_handle, "threshold_low", low_value);
|
||||
ESP_ERROR_CHECK(err);
|
||||
|
||||
err = nvs_set_i32(my_handle, "treshhold_up", up_value);
|
||||
err = nvs_set_i32(my_handle, "threshold_up", up_value);
|
||||
ESP_ERROR_CHECK(err);
|
||||
|
||||
// 4. Сохраняем изменения во flash
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user