ESP32使用按键配网并通过LED指示网络状态

2024-06-24 03:18

本文主要是介绍ESP32使用按键配网并通过LED指示网络状态,希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!

前言

上面我们已经可以通过 ESPTOUCH 和 Airkiss 给模块配网,并且存储在 nvs 中,重启后仍然可以联网,只是这样仍然不能满足我们实际的应用,这次我们增加按键作为输入,LED作为输出,实现长按按键配网,并可以通过LED指示网络状态。

添加自己的组件

为了让程序结构更加清晰,所以我们在smart_config例程的基础上做了修改,在main文件夹里新建了main.c 、smartconfig_button.c , smartconfig_led.c ,将原来的smartconfig_main.c改为smartconfig_wifi.c,及其对应的.h文件

增加自己的组件
增加文件后,然后将 CMakeList.txt 文件修改为:

idf_component_register(SRCS “iot_button.c” “smartconfig_wifi.c” “smartconfig_button.c” “smartconfig_led.c” “main.c”
INCLUDE_DIRS “.”)

增加按键清除配网信息的功能

这里我们使用了乐鑫官方有个仓库叫做esp-iot-solution,里面有很多常用外设的驱动和物联网场景的实现代码。其中就有一个button模块来实现按键的长按、短按检测,我们将 botton 模块里的 iot_button.c 和 iot_button.h 文件添加到main文件夹中。
然后实现通过 smartconfig_button.c 文件实现长按清除网络信息的功能,具体如下:

//--------------- smartconfig_button.c ---------------//
#include <stdio.h>
#include <string.h>
#include <stdlib.h>
#include "freertos/FreeRTOS.h"
#include "esp_log.h"
#include "nvs_flash.h"
#include "driver/gpio.h"
#include "iot_button.h"
#include "smartconfig_button.h"
#include "smartconfig_wifi.h"#define BUTTON_IO_NUM           0   //GPIO0
#define BUTTON_ACTIVE_LEVEL     0   //信号有效电平:低电平static const char* TAG_BTN = "SMARTCONFIG_BUTTON";void button_tap_cb(void* arg)
{char* pstr = (char*) arg;pstr = pstr;ESP_LOGI(TAG_BTN, "key tap \n");
}void button_press_3s_cb(void* arg)
{char* pstr = (char*) arg;pstr = pstr;ESP_LOGI(TAG_BTN,"key 3s long press\n");                    //按键长按,清除配网信息并重启                  nvs_handle_t wificonfig_set_handle;ESP_ERROR_CHECK( nvs_open("wificonfig",NVS_READWRITE,&wificonfig_set_handle) );ESP_ERROR_CHECK( nvs_set_u8(wificonfig_set_handle,"WifiConfigFlag", wifi_unconfiged) );ESP_ERROR_CHECK( nvs_commit(wificonfig_set_handle) );nvs_close(wificonfig_set_handle);ESP_LOGI(TAG_BTN,"Set Restart now.\n");esp_restart();
}void smartconfig_button_init(void)
{//配置配网按键button_handle_t btn_handle = iot_button_create(BUTTON_IO_NUM, BUTTON_ACTIVE_LEVEL);//注册单击事件iot_button_set_evt_cb(btn_handle, BUTTON_CB_TAP, button_tap_cb, "TAP");//注册 3s 长按事件iot_button_add_custom_cb(btn_handle, 3, button_press_3s_cb, NULL);}

加入配网指示灯

灯的不同状态代表不同的配网状态,设定:慢闪代表未联网,快闪代表正在联网,长亮代表网络已连接。这里会用到ESP32的系统定时器,使用方法也比较简单,创建定时器,开启或者关闭定时器,源码如下:

//--------------- smartconfig_led.c ---------------//
#include <stdio.h>
#include <string.h>
#include <stdlib.h>
#include "driver/gpio.h"
#include "esp_timer.h"
#include "esp_log.h"
#include "smartconfig_led.h"#define WIFI_STATUS_LED_GPIO  15static const char* TAG = "WIFI_STATUS_LED";
static esp_timer_handle_t  smartconfig_led_soft_timer;//定时器回调里实现灯的闪烁
static void periodled_timer_callback(void* arg)
{static uint8_t s_LEDToggle  = 0;s_LEDToggle = ~s_LEDToggle;if(s_LEDToggle){gpio_set_level(WIFI_STATUS_LED_GPIO, 1);}       else{gpio_set_level(WIFI_STATUS_LED_GPIO, 0);}   
}static void handle_smartconfig_led_status(Wifi_Status_t WifiState)
{static uint8_t s_WifiDisconnectNotice;switch(WifiState){case WIFI_DISCONNECT:if(s_WifiDisconnectNotice == 0){ESP_ERROR_CHECK(esp_timer_start_periodic(smartconfig_led_soft_timer, ConnectStatusInterval));s_WifiDisconnectNotice = 1;}                      break;case WIFI_CONNECTING://正在联网的时候LED快闪if(s_WifiDisconnectNotice == 1){ESP_ERROR_CHECK(esp_timer_stop(smartconfig_led_soft_timer));}ESP_ERROR_CHECK(esp_timer_start_periodic(smartconfig_led_soft_timer, DisconnectStatusInterval));break;case WIFI_CONNECTED://连上网后LED常亮,并注销软件定时器,减少消耗gpio_set_level(WIFI_STATUS_LED_GPIO, 1);if(s_WifiDisconnectNotice == 1){               ESP_ERROR_CHECK(esp_timer_stop(smartconfig_led_soft_timer));ESP_ERROR_CHECK(esp_timer_delete(smartconfig_led_soft_timer));s_WifiDisconnectNotice = 0;}           break;default:break;}
}//LED管脚初始化
void wifi_status_led_init(void)
{gpio_config_t smartconfig_IO_conf;smartconfig_IO_conf.intr_type = GPIO_PIN_INTR_DISABLE;smartconfig_IO_conf.mode = GPIO_MODE_OUTPUT;smartconfig_IO_conf.pin_bit_mask = 1 << WIFI_STATUS_LED_GPIO;smartconfig_IO_conf.pull_down_en = 0;smartconfig_IO_conf.pull_up_en = 0;gpio_config(&smartconfig_IO_conf); gpio_set_level(WIFI_STATUS_LED_GPIO, 0); esp_timer_create_args_t periodled_timer_args = {.callback = &periodled_timer_callback,/* name is optional, but may help identify the timer when debugging */.name = "periodled"};    ESP_ERROR_CHECK(esp_timer_create(&periodled_timer_args, &smartconfig_led_soft_timer));
}//通知网络未连接
void delegate_wifi_disconnect_status(void)
{ESP_LOGI(TAG,"Delegate wifi is disconnect\n"); handle_smartconfig_led_status(WIFI_DISCONNECT); }
//通知网络已连接
void delegate_wifi_connected_status(void)
{ESP_LOGI(TAG,"Delegate wifi has connected\n");handle_smartconfig_led_status(WIFI_CONNECTED);}
//通知网络正在连接中
void delegate_wifi_connecting_status(void)
{   ESP_LOGI(TAG,"Delegate wifi is connecting\n"); handle_smartconfig_led_status(WIFI_CONNECTING);   
}//--------------- smartconfig_led.h ---------------//
#ifndef __SMARTCONFIG_LED_H__
#define __SMARTCONFIG_LED_H__#ifdef __cplusplus
extern "C" {
#endif#define ConnectStatusInterval    1000000    //单位为us
#define DisconnectStatusInterval 200000typedef enum{WIFI_DISCONNECT = 1,WIFI_CONNECTING,WIFI_CONNECTED,
}Wifi_Status_t;void wifi_status_led_init(void);
void delegate_wifi_disconnect_status(void);
void delegate_wifi_connected_status(void);
void delegate_wifi_connecting_status(void);#ifdef __cplusplus
}
#endif#endif

主函数

删除 smartconfig_wifi.c 中的 app_main() 函数,在 main.c 中增加如下源码:

#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 "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();smartconfig_button_init();//initialise_wifi();check_wifi_config_in_nvs();
}

实验结果

编译下载程序后,长按 Boot 按键 3S后,就自动清除配网标志位,并自动重启后,重启后就等待配网,同时LED闪烁,等网络连接后,LED指示灯常亮。


纯手写文章,转载请注明出处,谢谢!
如有任何错误,欢迎留言指正!

这篇关于ESP32使用按键配网并通过LED指示网络状态的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!



http://www.chinasem.cn/article/1089030

相关文章

中文分词jieba库的使用与实景应用(一)

知识星球:https://articles.zsxq.com/id_fxvgc803qmr2.html 目录 一.定义: 精确模式(默认模式): 全模式: 搜索引擎模式: paddle 模式(基于深度学习的分词模式): 二 自定义词典 三.文本解析   调整词出现的频率 四. 关键词提取 A. 基于TF-IDF算法的关键词提取 B. 基于TextRank算法的关键词提取

使用SecondaryNameNode恢复NameNode的数据

1)需求: NameNode进程挂了并且存储的数据也丢失了,如何恢复NameNode 此种方式恢复的数据可能存在小部分数据的丢失。 2)故障模拟 (1)kill -9 NameNode进程 [lytfly@hadoop102 current]$ kill -9 19886 (2)删除NameNode存储的数据(/opt/module/hadoop-3.1.4/data/tmp/dfs/na

Hadoop数据压缩使用介绍

一、压缩原则 (1)运算密集型的Job,少用压缩 (2)IO密集型的Job,多用压缩 二、压缩算法比较 三、压缩位置选择 四、压缩参数配置 1)为了支持多种压缩/解压缩算法,Hadoop引入了编码/解码器 2)要在Hadoop中启用压缩,可以配置如下参数

Makefile简明使用教程

文章目录 规则makefile文件的基本语法:加在命令前的特殊符号:.PHONY伪目标: Makefilev1 直观写法v2 加上中间过程v3 伪目标v4 变量 make 选项-f-n-C Make 是一种流行的构建工具,常用于将源代码转换成可执行文件或者其他形式的输出文件(如库文件、文档等)。Make 可以自动化地执行编译、链接等一系列操作。 规则 makefile文件

hdu1043(八数码问题,广搜 + hash(实现状态压缩) )

利用康拓展开将一个排列映射成一个自然数,然后就变成了普通的广搜题。 #include<iostream>#include<algorithm>#include<string>#include<stack>#include<queue>#include<map>#include<stdio.h>#include<stdlib.h>#include<ctype.h>#inclu

使用opencv优化图片(画面变清晰)

文章目录 需求影响照片清晰度的因素 实现降噪测试代码 锐化空间锐化Unsharp Masking频率域锐化对比测试 对比度增强常用算法对比测试 需求 对图像进行优化,使其看起来更清晰,同时保持尺寸不变,通常涉及到图像处理技术如锐化、降噪、对比度增强等 影响照片清晰度的因素 影响照片清晰度的因素有很多,主要可以从以下几个方面来分析 1. 拍摄设备 相机传感器:相机传

hdu1565(状态压缩)

本人第一道ac的状态压缩dp,这题的数据非常水,很容易过 题意:在n*n的矩阵中选数字使得不存在任意两个数字相邻,求最大值 解题思路: 一、因为在1<<20中有很多状态是无效的,所以第一步是选择有效状态,存到cnt[]数组中 二、dp[i][j]表示到第i行的状态cnt[j]所能得到的最大值,状态转移方程dp[i][j] = max(dp[i][j],dp[i-1][k]) ,其中k满足c

OpenHarmony鸿蒙开发( Beta5.0)无感配网详解

1、简介 无感配网是指在设备联网过程中无需输入热点相关账号信息,即可快速实现设备配网,是一种兼顾高效性、可靠性和安全性的配网方式。 2、配网原理 2.1 通信原理 手机和智能设备之间的信息传递,利用特有的NAN协议实现。利用手机和智能设备之间的WiFi 感知订阅、发布能力,实现了数字管家应用和设备之间的发现。在完成设备间的认证和响应后,即可发送相关配网数据。同时还支持与常规Sof

Linux 网络编程 --- 应用层

一、自定义协议和序列化反序列化 代码: 序列化反序列化实现网络版本计算器 二、HTTP协议 1、谈两个简单的预备知识 https://www.baidu.com/ --- 域名 --- 域名解析 --- IP地址 http的端口号为80端口,https的端口号为443 url为统一资源定位符。CSDNhttps://mp.csdn.net/mp_blog/creation/editor

pdfmake生成pdf的使用

实际项目中有时会有根据填写的表单数据或者其他格式的数据,将数据自动填充到pdf文件中根据固定模板生成pdf文件的需求 文章目录 利用pdfmake生成pdf文件1.下载安装pdfmake第三方包2.封装生成pdf文件的共用配置3.生成pdf文件的文件模板内容4.调用方法生成pdf 利用pdfmake生成pdf文件 1.下载安装pdfmake第三方包 npm i pdfma