Select one of the symbols to view example projects that use it.
 
Outline
is_provisioned();
start_provisioning(EventGroupHandle_t *, int, int);
Files
loading...
SourceVuESP-IDF Framework and Examplessta2eth samplemain/provisioning.h
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
/* * SPDX-FileCopyrightText: 2023 Espressif Systems (Shanghai) CO LTD * * SPDX-License-Identifier: Unlicense OR CC0-1.0 *//* ... */ #pragma once /** * @brief Checks if the device has been provisioned * @return true if WiFi is provisioned *//* ... */ bool is_provisioned(void); /** * @brief Initiate provisioning * @param flags Event flags to indicate status of provisioning * @param success_bit bits set in the event flags on success * @param fail_bit bits set in the event flags on failure * @return ESP_OK if provisioning started *//* ... */ esp_err_t start_provisioning(EventGroupHandle_t *flags, int success_bit, int fail_bit);
Details
Show:
from
Types: Columns: