mirror of
https://git.beihong.wang/wangbeihong/iot-bedroom-environment-controller.git
synced 2026-04-23 08:23:05 +08:00
- 环境监测:温湿度/光照/空气质量传感器采集 - 智能控制:时间段/降温/通风三种自动模式 - 闹钟系统:3个闹钟+温和唤醒功能 - 远程控制:MQTT双向通信 - 本地显示:LVGL图形界面 - 双MCU架构,FreeRTOS 10任务并行 - 完整的1250行README文档
79 lines
1.2 KiB
Plaintext
79 lines
1.2 KiB
Plaintext
# macOS
|
|
.DS_Store
|
|
.AppleDouble
|
|
.LSOverride
|
|
|
|
# Directory metadata
|
|
.directory
|
|
|
|
# Temporary files
|
|
*~
|
|
*.swp
|
|
*.swo
|
|
*.bak
|
|
*.tmp
|
|
|
|
# Log files
|
|
*.log
|
|
|
|
# Build artifacts and directories
|
|
**/build/
|
|
build/
|
|
*.o
|
|
*.a
|
|
*.out
|
|
*.exe # For any host-side utilities compiled on Windows
|
|
|
|
# ESP-IDF specific build outputs
|
|
*.bin
|
|
*.elf
|
|
*.map
|
|
flasher_args.json # Generated in build directory
|
|
sdkconfig.old
|
|
sdkconfig
|
|
|
|
# ESP-IDF dependencies
|
|
# For older versions or manual component management
|
|
/components/.idf/
|
|
**/components/.idf/
|
|
# For modern ESP-IDF component manager
|
|
managed_components/
|
|
# If ESP-IDF tools are installed/referenced locally to the project
|
|
.espressif/
|
|
|
|
# CMake generated files
|
|
CMakeCache.txt
|
|
CMakeFiles/
|
|
cmake_install.cmake
|
|
install_manifest.txt
|
|
CTestTestfile.cmake
|
|
|
|
# Python environment files
|
|
*.pyc
|
|
*.pyo
|
|
*.pyd
|
|
__pycache__/
|
|
*.egg-info/
|
|
dist/
|
|
|
|
# Virtual environment folders
|
|
venv/
|
|
.venv/
|
|
env/
|
|
|
|
# Language Servers
|
|
.clangd/
|
|
.ccls-cache/
|
|
compile_commands.json
|
|
|
|
# Windows specific
|
|
Thumbs.db
|
|
ehthumbs.db
|
|
Desktop.ini
|
|
|
|
# User-specific configuration files
|
|
*.user
|
|
*.workspace # General workspace files, can be from various tools
|
|
*.suo # Visual Studio Solution User Options
|
|
*.sln.docstates # Visual Studio
|