基本信息
源码名称:基于ESP32的智能闹钟
源码大小:0.12M
文件格式:.zip
开发语言:C/C++
更新时间:2022-07-23
   友情提示:(无需注册或充值,赞助后即可获取资源下载链接)

     嘿,亲!知识可是无价之宝呢,但咱这精心整理的资料也耗费了不少心血呀。小小地破费一下,绝对物超所值哦!如有下载和支付问题,请联系我们QQ(微信同号):813200300

本次赞助数额为: 5 元 
   源码介绍

基于ESP32的智能闹钟


基于ESP32-LyraT开发基板,实现网页设定闹钟功能。

1.配置wifi

2.http服务器

3.sntp时间系统

4.spiffs文件系统

5.sdcard读取

6.音频播放





.
├── CMakeLists.txt
├── Makefile
├── README.md
├── The_Partitions.csv
├── The_Partitions.xlsx
├── components
│   ├── my_alarm_list
│   │   ├── CMakeLists.txt
│   │   ├── include
│   │   │   └── my_alarm_list.h
│   │   └── my_alarm_list.c
│   ├── my_http_server
│   │   ├── CMakeLists.txt
│   │   ├── include
│   │   │   ├── my_get_handler.h
│   │   │   ├── my_http_server.h
│   │   │   └── my_post_handler.h
│   │   ├── my_get_handler.c
│   │   ├── my_http_server.c
│   │   ├── my_post_handler.c
│   │   ├── upload_script.html
│   │   └── webFile
│   │       ├── AlarmList.html
│   │       ├── Calendar.html
│   │       ├── WifiConfig.html
│   │       ├── base.html
│   │       ├── download.jpeg
│   │       ├── download_base.jpeg
│   │       ├── favicon.ico
│   │       ├── jquery-3.2.1.min.js
│   │       ├── myFuncLib.js
│   │       ├── myStyle.css
│   │       └── ota.html
│   ├── my_init_os
│   │   ├── CMakeLists.txt
│   │   ├── include
│   │   │   └── my_init_os.h
│   │   └── my_init_os.c
│   ├── my_isr_timer
│   │   ├── CMakeLists.txt
│   │   ├── include
│   │   │   └── my_isr_timer.h
│   │   └── my_isr_timer.c
│   ├── my_key
│   │   ├── CMakeLists.txt
│   │   ├── include
│   │   │   └── my_key.h
│   │   └── my_key.c
│   ├── my_led
│   │   ├── CMakeLists.txt
│   │   ├── include
│   │   │   └── my_led.h
│   │   └── my_led.c
│   ├── my_nvs
│   │   ├── CMakeLists.txt
│   │   ├── include
│   │   │   └── my_nvs.h
│   │   └── my_nvs.c
│   ├── my_player
│   │   ├── CMakeLists.txt
│   │   ├── include
│   │   │   └── my_player.h
│   │   └── my_player.c
│   ├── my_public
│   │   ├── CMakeLists.txt
│   │   ├── include
│   │   │   └── my_public.h
│   │   └── my_public.c
│   ├── my_sdcard
│   │   ├── CMakeLists.txt
│   │   ├── include
│   │   │   └── my_sdcard.h
│   │   └── my_sdcard.c
│   ├── my_sntp
│   │   ├── CMakeLists.txt
│   │   ├── include
│   │   │   └── my_sntp.h
│   │   └── my_sntp.c
│   ├── my_spiffs
│   │   ├── CMakeLists.txt
│   │   ├── include
│   │   │   └── my_spiffs.h
│   │   └── my_spiffs.c
│   └── my_wifi
│       ├── CMakeLists.txt
│       ├── include
│       │   ├── my_wifi.h
│       │   ├── my_wifi_ap.h
│       │   └── my_wifi_sta.h
│       ├── my_wifi.c
│       ├── my_wifi_ap.c
│       └── my_wifi_sta.c
├── main
│   ├── CMakeLists.txt
│   ├── component.mk
│   └── main.c
├── sdkconfig
├── sdkconfig.old
└── 基于ESP32的智能闹钟.zip

29 directories, 70 files