2021-08-25 17:37:54 索炜达电子 2366
项目编号:E646
文件大小:365M
源码说明:带中文注释
开发环境:C编译器
简要概述:
本设计是一种基于stm32多功能智能台灯。本设计以意法半导体公司的Cortex-M3内核微控制器stm32为主控制器,通过搭建外围硬件电路以及编写与硬件电路、模块相对应的软件程序,采用PWM调光技术,实现了智能台灯在不同的情况下的自动开启、自动调光和时间提醒。
本设计实现如下功能:
1.要求人体靠近台灯(1.5米)时且环境较暗时,红外感应开灯。
2.当人在台灯下工作时间过长(45分钟)或过于靠近时(设定靠近距离用于近视形成防护),通过闪烁灯提醒人注意保持距离(可手动停止闪烁或关闭该功能)。
3.当人离开(或者亮度变亮时)智能关灯。
4.小夜灯功能,夜间有声音时,以较小亮度打开灯,持续3分钟关闭。
5.可设置多个亮度挡位以及可调色温(触控开关),可设置为普通台灯(关闭智能)
目录│文件列表:
└ 基于STM32的智能台灯完整设计方案
│ 16112基于stm32智能台灯.mp4
│ PPT.pptx
│ Sheet1.pdf
│ 基于STM32单片机的数字音乐盒设计_胡庆.caj
│ 基于stm32智能台灯.xlsx
│ 基于STM32的智能台灯系统设计.pdf
│ 开题.docx
│ 论文.docx
│ 说明.txt
└ 程序
│ template.uvguix.dell
│ template.uvguix.FLYING FISH
│ template.uvoptx
│ template.uvprojx
├ CMSIS
│ │ core_cm3.c
│ │ core_cm3.h
│ │ startup_stm32f10x_hd.s
│ │ system_stm32f10x.c
│ └ system_stm32f10x.h
├ CONFIG
│ │ ADC.c
│ │ ADC.h
│ │ bsp-lcd1602.c
│ │ bsp-lcd1602.h
│ │ DMA.c
│ │ DMA.h
│ │ key.c
│ │ key.h
│ │ system.h
│ │ TIMER.c
│ │ TIMER.h
│ │ USART.c
│ └ USART.h
├ DebugConfig
│ │ Target_1_STM32F103ZE.dbgconf
│ └ Target_1_STM32F103ZE_1.0.0.dbgconf
├ Listings
│ │ lli.map
│ │ startup_stm32f10x_hd.lst
│ └ template.map
├ output
│ │ adc.crf
│ │ adc.d
│ │ adc.o
│ │ bsp-lcd1602.crf
│ │ bsp-lcd1602.d
│ │ bsp-lcd1602.o
│ │ core_cm3.crf
│ │ core_cm3.d
│ │ core_cm3.o
│ │ dma.crf
│ │ dma.d
│ │ dma.o
│ │ key.crf
│ │ key.d
│ │ key.o
│ │ lli.axf
│ │ lli.build_log.htm
│ │ lli.hex
│ │ lli.htm
│ │ lli.lnp
│ │ lli.sct
│ │ main.crf
│ │ main.d
│ │ main.o
│ │ misc.crf
│ │ misc.d
│ │ misc.o
│ │ startup_stm32f10x_hd.d
│ │ startup_stm32f10x_hd.o
│ │ stm32f10x_adc.crf
│ │ stm32f10x_adc.d
│ │ stm32f10x_adc.o
│ │ stm32f10x_dma.crf
│ │ stm32f10x_dma.d
│ │ stm32f10x_dma.o
│ │ stm32f10x_exti.crf
│ │ stm32f10x_exti.d
│ │ stm32f10x_exti.o
│ │ stm32f10x_gpio.crf
│ │ stm32f10x_gpio.d
│ │ stm32f10x_gpio.o
│ │ stm32f10x_it.crf
│ │ stm32f10x_it.d
│ │ stm32f10x_it.o
│ │ stm32f10x_rcc.crf
│ │ stm32f10x_rcc.d
│ │ stm32f10x_rcc.o
│ │ stm32f10x_tim.crf
│ │ stm32f10x_tim.d
│ │ stm32f10x_tim.o
│ │ system_stm32f10x.crf
│ │ system_stm32f10x.d
│ │ system_stm32f10x.o
│ │ systick.crf
│ │ systick.d
│ │ systick.o
│ │ template_Target 1.dep
│ │ timer.crf
│ │ timer.d
│ └ timer.o
├ STM32F10x_StdPeriph_Driver
│ ├ inc
│ │ │ misc.h
│ │ │ stm32f10x_adc.h
│ │ │ stm32f10x_bkp.h
│ │ │ stm32f10x_can.h
│ │ │ stm32f10x_cec.h
│ │ │ stm32f10x_crc.h
│ │ │ stm32f10x_dac.h
│ │ │ stm32f10x_dbgmcu.h
│ │ │ stm32f10x_dma.h
│ │ │ stm32f10x_exti.h
│ │ │ stm32f10x_flash.h
│ │ │ stm32f10x_fsmc.h
│ │ │ stm32f10x_gpio.h
│ │ │ stm32f10x_i2c.h
│ │ │ stm32f10x_iwdg.h
│ │ │ stm32f10x_pwr.h
│ │ │ stm32f10x_rcc.h
│ │ │ stm32f10x_rtc.h
│ │ │ stm32f10x_sdio.h
│ │ │ stm32f10x_spi.h
│ │ │ stm32f10x_tim.h
│ │ │ stm32f10x_usart.h
│ │ └ stm32f10x_wwdg.h
│ └ src
│ │ misc.c
│ │ stm32f10x_adc.c
│ │ stm32f10x_bkp.c
│ │ stm32f10x_can.c
│ │ stm32f10x_cec.c
│ │ stm32f10x_crc.c
│ │ stm32f10x_dac.c
│ │ stm32f10x_dbgmcu.c
│ │ stm32f10x_dma.c
│ │ stm32f10x_exti.c
│ │ stm32f10x_flash.c
│ │ stm32f10x_fsmc.c
│ │ stm32f10x_gpio.c
│ │ stm32f10x_i2c.c
│ │ stm32f10x_iwdg.c
│ │ stm32f10x_pwr.c
│ │ stm32f10x_rcc.c
│ │ stm32f10x_rtc.c
│ │ stm32f10x_sdio.c
│ │ stm32f10x_spi.c
│ │ stm32f10x_tim.c
│ │ stm32f10x_usart.c
│ └ stm32f10x_wwdg.c
├ SysTick
│ │ SysTick.c
│ └ SysTick.h
└ User
│ main.c
│ stm32f10x.h
│ stm32f10x_conf.h
│ stm32f10x_it.c
└ stm32f10x_it.h