news 2026/5/1 6:46:59

【dz-946】基于单片机的智能家居灯

作者头像

张小明

前端开发工程师

1.2k 24
文章封面图
【dz-946】基于单片机的智能家居灯

基于单片机的智能家居灯

摘要

随着生活品质的提升和智能家居理念的普及,家居照明的便捷性、智能化成为人们追求舒适生活的重要需求。传统家居灯光控制多依赖手动开关,存在操作不便、功能单一等问题,难以满足不同场景下的照明需求,例如夜间起夜时需手动开灯、无法远程控制灯光状态等,影响生活体验。因此,研发一种功能丰富、操作便捷的智能化家居灯控制系统十分必要。

本设计提出了一种基于 STM32F103C8T6 单片机的智能家居灯系统。系统主要功能包括:通过 3 个 LED 灯模拟卧室、客厅、洗手间的照明;借助 3 个按键分别控制三个灯的亮灭;在洗手间安装 D203S 人体热释电感应模块,当检测到有人且 5516 光敏电阻检测到光线较低时,自动开启洗手间灯;通过按键可调节客厅灯的亮度;通过按键设定卧室灯亮灯时间,时间到达后自动熄灭,OLED 显示屏实时显示计时时间;通过 ECBO2 蓝牙模块连接手机端,实现手机对三个灯亮灭的控制及客厅灯亮度的调节;通过 SU-03T 语音识别模块控制三个房间灯的开关和客厅灯的亮度。

该智能家居灯系统的作用在于,为人们提供了一种便捷、智能的家居照明解决方案。通过多种控制方式的融合与自动化感应功能,提升了家居照明的舒适度与便捷性,满足不同场景下的照明需求,改善生活品质。

关键词:单片机;智能家居灯;STM32F103C8T6;蓝牙控制;语音识别

Smart Home Light Based on Single Chip Microcomputer

Abstract

With the improvement of quality of life and the popularization of smart home concepts, the convenience and intelligence of home lighting have become important demands for people to pursue a comfortable life. Traditional home lighting control relies heavily on manual switches, which have problems such as inconvenient operation and single functionality, making it difficult to meet the lighting needs in different scenarios. For example, manual turning on of lights at night and inability to remotely control lighting status can affect the living experience. Therefore, it is necessary to develop an intelligent home light control system that is feature rich and easy to operate.

This design proposes an intelligent home lighting system based on STM32F103C8T6 microcontroller. The main functions of the system include: simulating the lighting of the bedroom, living room, and bathroom through three LED lights; Use three buttons to control the on/off of three lights respectively; Install D203S human pyroelectric induction module in the bathroom. When someone is detected and the 5516 photoresistor detects low light, the bathroom light will automatically turn on; The brightness of the living room lights can be adjusted through buttons; Set the bedroom light on time by pressing the button, and it will automatically turn off when the time is up. The OLED display screen will show the timer time in real time; Connect the ECBO2 Bluetooth module to the mobile phone to control the on/off of three lights and adjust the brightness of the living room lights; Control the on/off of three room lights and the brightness of the living room lights through the SU-03T speech recognition module.

The function of this smart home lighting system is to provide people with a convenient and intelligent home lighting solution. Through the integration of multiple control methods and automated sensing functions, the comfort and convenience of home lighting have been improved, meeting the lighting needs in different scenarios and enhancing the quality of life.

Keywords:microcontroller; Smart home lights; STM32F103C8T6; Bluetooth control; speech recognition

目 录

1 绪论

1.1 研究背景及意义

1.2 国内外研究现状

1.3 主要内容

2 系统总体方案设计

2.1系统总体设计

2.2 主要模块方案选择

3系统硬件设计

3.1 总体硬件框架

3.2 主控模块电路设计

3.3 LED 照明模块电路设计

3.4 按键模块电路设计

3.5 人体感应与光线检测模块电路设计

3.6 显示模块电路设计

3.7 蓝牙通信模块电路设计

3.8 语音识别模块电路设计

3.9 电源模块电路设计

4 系统程序设计

4.1 编程软件介绍

4.2 系统主流程设计

4.3 独立按键

4.4 OLED显示流程设计

4.5 定时器模块子流程

4.6 LED灯亮度调节子流程设计

4.7 蓝牙模块子流程

4.8 语言识别模块子流程设计

5实物制作与功能测试

5.1 实物制作

5.2 基础灯光控制功能测试

5.3 洗手间自动感应功能测试

5.4 客厅灯亮度调节与卧室定时功能测试

5.5 蓝牙远程控制功能测试

5.6 语音识别控制功能测试

6 总结

参考文献

致谢

附录A 原理图

附录B PCB

附录C 主程序

版权声明: 本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如若内容造成侵权/违法违规/事实不符,请联系邮箱:809451989@qq.com进行投诉反馈,一经查实,立即删除!
网站建设 2026/4/22 16:25:50

双指针经典题目解析【持续更新】

1.移动零 1.1题目链接 移动零 1.2题目解析 题目要求将所有0移动到数组末尾,同时保持非0元素的相对顺序,其实我们可以反向思考:将所有非0元素移动到数组最前面,因为题目关心的只是非0元素的顺序:我们可以定义两个下…

作者头像 李华
网站建设 2026/5/1 7:31:50

【导出】前端 js 导出下载文件时,文件名前后带下划线问题

目录导出/下载文件操作问题原因解决解决后下载文件导出/下载文件操作 主要实现是接口返回文件流(包括文件名),前端处理下载文件参考这里 方法1 的代码 https://blog.csdn.net/m0_53562074/article/details/127364159 问题 导出文件 原因 后端…

作者头像 李华
网站建设 2026/5/1 7:54:13

新手跨境电商实测:Apache 搭站,雷池 WAF 零基础部署

我是去年才做跨境电商的新手,之前没接触过服务器防护,用 Apache 搭好商城后,没几天就被爬虫爬走了物流模板,还出现了商品价格被篡改的苗头。朋友推荐了雷池 WAF,没想到我这种零基础的也能部署成功,今天分享…

作者头像 李华
网站建设 2026/5/1 3:10:53

全域众链:不只是 AI +实体赋能,更是普通人的新蓝海

提到 “AI 实体”,很多人会觉得是 “大企业的游戏”—— 需要专业知识、高额投入,普通人只能望而却步。但全域众链的出现,彻底打破了这种认知:它不是高冷的技术平台,而是扎根街头巷尾,让普通实体商家、草根…

作者头像 李华
网站建设 2026/4/30 11:26:27

Spring Boot 深度解析:核心原理与自动配置全解

目录 一、自动配置的核心定义与价值 1. 什么是自动配置? 2. 自动配置解决的核心问题 二、自动配置的底层实现原理 1. 自动配置的入口:SpringBootApplication 2. EnableAutoConfiguration:加载自动配置类 关键步骤:AutoConf…

作者头像 李华
网站建设 2026/5/1 7:58:10

EmotiVoice是否支持批量任务队列?自动化生成秘诀

EmotiVoice是否支持批量任务队列?自动化生成秘诀 在内容工业化生产的今天,AI语音技术早已不再是“能说话”就足够的工具。从有声书平台到游戏开发、从虚拟主播到在线教育,越来越多场景需要大量、个性化、富有情感的语音内容。而人工逐条录制成…

作者头像 李华