2021-11-29 22:34:18 索煒達電子 1529
項目編號:E2473
文件大?。?72M
源碼說明:帶中文注釋
開發(fā)環(huán)境:C編譯器
簡要概述
在消費升級滲透在各個領(lǐng)域的今天,國民消費發(fā)生著巨大的變化,與每個人息息相關(guān)的家居行業(yè)也是如此?,F(xiàn)今,越來越多的智能家居產(chǎn)品出現(xiàn)在普通老百姓的生活中,智能照明、智能窗簾、智能掃地機器人等各種智能產(chǎn)品都給人們的生活帶來了極大的便利。智能門鎖作為智能家居中重要的一環(huán),也成為消費者家居智能化的重要選擇。智能相比市面的機械門鎖更加安全、更智能、更人性化而得到市場的認可,在智能門鎖行業(yè)里,不少世界500強企業(yè)也在智能門鎖上進行產(chǎn)品布局,像中國小米公司就生產(chǎn)智能門鎖,致力打造智慧家庭,市場智能門鎖能夠支持五種解鎖方式,支持指紋、手機、門禁門、按鍵密碼、鑰匙解鎖功能??梢哉f是智能家庭必不可少的成員。
項目功能要求
1、可通過指紋模塊增刪查改家庭成員的指紋信息,增刪查改是否成功的相關(guān)信息顯示在OLED屏幕上
2、在指紋匹配過程中,如果采集的指紋與指紋模塊庫相匹配,OLED顯示匹配成功,并轉(zhuǎn)動步進電機一圈
3、可通過按鍵設(shè)定智能門鎖密碼,密碼可設(shè)置為兩個(密碼六位),如果匹配兩個中的一個成功,即可開鎖,也可通過按鍵修改密碼,所有的操作過程顯示于OLED中
4、實現(xiàn)RFID與手機解鎖(藍牙解鎖)
5、擴展:虛位密碼解鎖(虛位密碼:自己百度)
項目所用到的主要技術(shù):
1、IIC協(xié)議、SPI協(xié)議、串口協(xié)議
2、外部flash驅(qū)動、SD卡驅(qū)動
3、FTAFS文件系統(tǒng)
4、RTC實時時鐘
實物圖:
目錄│文件列表:
└ 智能門鎖
│ 智能門鎖簡介.docx
└ 智能門鎖設(shè)計指南.docx
├ 開發(fā)工具
│ │ LCD圖形生成.exe
│ └ zimo.ini
├ 開發(fā)源碼
│ └ 智能門鎖
│ │ keilkilll.bat
│ │ readme.txt
│ ├ CORE
│ │ │ core_cm4.h
│ │ │ core_cm4_simd.h
│ │ │ core_cmFunc.h
│ │ │ core_cmInstr.h
│ │ └ startup_stm32f40_41xxx.s
│ ├ FATFS
│ │ ├ doc
│ │ │ │ css_e.css
│ │ │ │ css_j.css
│ │ │ │ updates.txt
│ │ │ ├ img
│ │ │ │ │ app1.c
│ │ │ │ │ app2.c
│ │ │ │ │ app3.c
│ │ │ │ │ app4.c
│ │ │ │ │ f1.png
│ │ │ │ │ f2.png
│ │ │ │ │ f3.png
│ │ │ │ │ f4.png
│ │ │ │ │ f5.png
│ │ │ │ │ f6.png
│ │ │ │ │ f7.png
│ │ │ │ │ funcs.png
│ │ │ │ │ layers.png
│ │ │ │ │ layers3.png
│ │ │ │ │ modules.png
│ │ │ │ │ rwtest.png
│ │ │ │ │ rwtest2.png
│ │ │ │ └ rwtest3.png
│ │ ├ exfuns
│ │ │ │ exfuns.c
│ │ │ │ exfuns.h
│ │ │ │ fattester.c
│ │ │ │ fattester.h
│ │ │ └ mycc936.c
│ │ └ src
│ │ │ 00readme.txt
│ │ │ diskio.c
│ │ │ diskio.h
│ │ │ ff.c
│ │ │ ff.h
│ │ │ ffconf.h
│ │ │ integer.h
│ │ └ option
│ │ │ cc932.c
│ │ │ cc936.c
│ │ │ cc949.c
│ │ │ cc950.c
│ │ │ ccsbcs.c
│ │ │ syscall.c
│ │ └ unicode.c
│ ├ FWLIB
│ │ ├ inc
│ │ │ │ misc.h
│ │ │ │ stm32f4xx_adc.h
│ │ │ │ stm32f4xx_can.h
│ │ │ │ stm32f4xx_crc.h
│ │ │ │ stm32f4xx_cryp.h
│ │ │ │ stm32f4xx_dac.h
│ │ │ │ stm32f4xx_dbgmcu.h
│ │ │ │ stm32f4xx_dcmi.h
│ │ │ │ stm32f4xx_dma.h
│ │ │ │ stm32f4xx_dma2d.h
│ │ │ │ stm32f4xx_exti.h
│ │ │ │ stm32f4xx_flash.h
│ │ │ │ stm32f4xx_flash_ramfunc.h
│ │ │ │ stm32f4xx_fmc.h
│ │ │ │ stm32f4xx_fsmc.h
│ │ │ │ stm32f4xx_gpio.h
│ │ │ │ stm32f4xx_hash.h
│ │ │ │ stm32f4xx_i2c.h
│ │ │ │ stm32f4xx_iwdg.h
│ │ │ │ stm32f4xx_ltdc.h
│ │ │ │ stm32f4xx_pwr.h
│ │ │ │ stm32f4xx_rcc.h
│ │ │ │ stm32f4xx_rng.h
│ │ │ │ stm32f4xx_rtc.h
│ │ │ │ stm32f4xx_sai.h
│ │ │ │ stm32f4xx_sdio.h
│ │ │ │ stm32f4xx_spi.h
│ │ │ │ stm32f4xx_syscfg.h
│ │ │ │ stm32f4xx_tim.h
│ │ │ │ stm32f4xx_usart.h
│ │ │ └ stm32f4xx_wwdg.h
│ │ └ src
│ │ │ misc.c
│ │ │ stm32f4xx_adc.c
│ │ │ stm32f4xx_can.c
│ │ │ stm32f4xx_crc.c
│ │ │ stm32f4xx_cryp.c
│ │ │ stm32f4xx_cryp_aes.c
│ │ │ stm32f4xx_cryp_des.c
│ │ │ stm32f4xx_cryp_tdes.c
│ │ │ stm32f4xx_dac.c
│ │ │ stm32f4xx_dbgmcu.c
│ │ │ stm32f4xx_dcmi.c
│ │ │ stm32f4xx_dma.c
│ │ │ stm32f4xx_dma2d.c
│ │ │ stm32f4xx_exti.c
│ │ │ stm32f4xx_flash.c
│ │ │ stm32f4xx_flash_ramfunc.c
│ │ │ stm32f4xx_fmc.c
│ │ │ stm32f4xx_fsmc.c
│ │ │ stm32f4xx_gpio.c
│ │ │ stm32f4xx_hash.c
│ │ │ stm32f4xx_hash_md5.c
│ │ │ stm32f4xx_hash_sha1.c
│ │ │ stm32f4xx_i2c.c
│ │ │ stm32f4xx_iwdg.c
│ │ │ stm32f4xx_ltdc.c
│ │ │ stm32f4xx_pwr.c
│ │ │ stm32f4xx_rcc.c
│ │ │ stm32f4xx_rng.c
│ │ │ stm32f4xx_rtc.c
│ │ │ stm32f4xx_sai.c
│ │ │ stm32f4xx_sdio.c
│ │ │ stm32f4xx_spi.c
│ │ │ stm32f4xx_syscfg.c
│ │ │ stm32f4xx_tim.c
│ │ │ stm32f4xx_usart.c
│ │ └ stm32f4xx_wwdg.c
│ ├ HARDWARE
│ │ ├ AS608
│ │ │ │ as608.c
│ │ │ └ as608.h
│ │ ├ beep
│ │ │ │ beep.c
│ │ │ └ beep.h
│ │ ├ button4_4
│ │ │ │ button4_4.c
│ │ │ └ button4_4.h
│ │ ├ KEY
│ │ │ │ key.c
│ │ │ └ key.h
│ │ ├ LCD
│ │ │ │ FONT.H
│ │ │ │ FONT.H~RF132f1d1.TMP
│ │ │ │ FONT.H~RF14136a6.TMP
│ │ │ │ FONT.H~RF14520c9.TMP
│ │ │ │ FONT.H~RF158c53b.TMP
│ │ │ │ FONT.H~RF16d66f8.TMP
│ │ │ │ lcd.c
│ │ │ └ lcd.h
│ │ ├ LED
│ │ │ │ led.c
│ │ │ └ led.h
│ │ ├ mfrcc522
│ │ │ │ MFRC522.c
│ │ │ └ MFRC522.h
│ │ ├ oled
│ │ │ │ oled.c
│ │ │ │ oled.h
│ │ │ │ oledfont.h
│ │ │ │ oledfont.h~RF54b85a.TMP
│ │ │ │ oledfont.h~RF56f450.TMP
│ │ │ └ oledfont.h~RF5e6c2e.TMP
│ │ ├ RTC
│ │ │ │ rtc.c
│ │ │ └ rtc.h
│ │ ├ SDIO
│ │ │ │ sdio_sdcard.c
│ │ │ └ sdio_sdcard.h
│ │ ├ SPI
│ │ │ │ spi.c
│ │ │ └ spi.h
│ │ ├ SRAM
│ │ │ │ sram.c
│ │ │ └ sram.h
│ │ ├ STMFLASH
│ │ │ │ stmflash.c
│ │ │ └ stmflash.h
│ │ ├ TIMER
│ │ │ │ timer.c
│ │ │ └ timer.h
│ │ ├ USART2
│ │ │ │ usart2.c
│ │ │ └ usart2.h
│ │ ├ USART3
│ │ │ │ usart3.c
│ │ │ └ usart3.h
│ │ ├ W25QXX
│ │ │ │ w25qxx.c
│ │ │ └ w25qxx.h
│ │ └ walkmotor
│ │ │ walkmotor.c
│ │ └ walkmotor.h
│ ├ MALLOC
│ │ │ malloc.c