ESP32-C3 wifi 微信配网+按键清除+LED状态

esp32-C3学习笔记(1)微信配网https://blog.csdn.net/Mr_VitaminC/article/details/124267373?spm=1001.2014.3001.5501esp32-C3学习笔记(2)保持配网信息+自动重连https://blog.csdn.net/Mr_VitaminC/article/details/124268325esp32-C3学习笔记(3)配网程序添加按键和指示灯https://blog.csdn.net/Mr_VitaminC/article/details/124268711

1.目录如下

2.CMakeList内容修改如下

idf_component_register(SRCS "smartconfig_button.c" "smartconfig_wifi.c" "smartconfig_led.c" "main.c"
                    INCLUDE_DIRS ".")

 3.main.c内容如下

#include <stdio.h>
#include <string.h>
#include <stdlib.h>
#include "freertos/FreeRTOS.h"
#include "freertos/task.h"
#include "freertos/event_groups.h"
#include "esp_log.h"
#include "nvs_flash.h"

#include "freertos/queue.h"
#include "driver/gpio.h"

#include "smartconfig_button.h"
#include "smartconfig_wifi.h"
#include "smartconfig_led.h"


void app_main(void)
{
    ESP_ERROR_CHECK( nvs_flash_init() );
     wifi_status_led_init();
     

    //initialise_wifi();
    check_wifi_config_in_nvs();
    smartconfig_button_init();
        while(1) {
        //必须加延时,任务不能没有延时,否则导致任务无法切换.
        vTaskDelay(1000 / portTICK_RATE_MS);
    }

}

  • 0
    点赞
  • 6
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值