【E1962】STM32智能垃圾桶设计

2021-10-29 11:45:56      索炜达电子      597     

项目编号:E1962

文件大小:5M

源码说明:带中文注释

开发环境:C编译器

简要概述

STM32智能垃圾桶设计

目录│文件列表:

 │ 不绕弯路,获取海量资源.jpg

 └ 智能垃圾桶设计

    │ 使用说明-仔细阅读.txt

    └ 智能垃圾桶

       │ 电路图.pdf

       │ 语音识别模块程序.hex

       ├ 单片机程序

       │  │ ReadMe.txt

       │  ├ APP

       │  │  │ app.c

       │  │  │ app.h

       │  │  │ app_use.c

       │  │  └ app_use.h

       │  ├ CORE

       │  │  │ core_cm3.c

       │  │  │ core_cm3.h

       │  │  │ stm32f10x.h

       │  │  │ stm32f10x_conf.h

       │  │  │ stm32f10x_it.c

       │  │  │ stm32f10x_it.h

       │  │  │ system_stm32f10x.c

       │  │  │ system_stm32f10x.h

       │  │  └ startup

       │  │     │ startup_stm32f10x_hd.s

       │  │     │ startup_stm32f10x_ld.s

       │  │     └ startup_stm32f10x_md.s

       │  ├ FWLIB

       │  │  ├ 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

       │  ├ Periphery

       │  │  ├ IO

       │  │  │  │ IO.c

       │  │  │  └ IO.h

       │  │  ├ MP3

       │  │  │  │ MP3.c

       │  │  │  └ MP3.h

       │  │  ├ PWM

       │  │  │  │ PWM.c

       │  │  │  └ PWM.h

       │  │  ├ SysTick

       │  │  │  │ SysTick.c

       │  │  │  └ SysTick.h

       │  │  ├ TFT

       │  │  │  │ Ascii_8x16.h

       │  │  │  │ Chinese.h

       │  │  │  │ Date.c

       │  │  │  │ Date.h

       │  │  │  │ TFT.c

       │  │  │  │ TFT.H

       │  │  │  └ TFT_INIT.c

       │  │  └ YuYin

       │  │     │ YuYin.c

       │  │     └ YuYin.h

       │  └ USER

       │     │ CKF.uvguix.FUN

       │     │ CKF.uvoptx

       │     │ CKF.uvprojx

       │     │ JLinkLog.txt

       │     │ JLinkSettings.ini

       │     ├ DebugConfig

       │     │  │ CKF_STM32F103C8.dbgconf

       │     │  │ CKF_STM32F103VC.dbgconf

       │     │  └ CKF_STM32F103VE.dbgconf

       │     ├ Listings

       │     │  │ startup_stm32f10x_hd.lst

       │     │  │ startup_stm32f10x_ld.lst

       │     │  │ startup_stm32f10x_md.lst

       │     │  └ TIM4PWM.map

       │     ├ Main

       │     │  │ common.c

       │     │  │ common.h

       │     │  └ Header.h

       │     └ Objects

       │        │ app.crf

       │        │ app.d

       │        │ app.o

       │        │ app_use.crf

       │        │ app_use.d

       │        │ cc936.crf

       │        │ cc936.d

       │        │ cc936.o

       │        │ CKF_CKF.dep

       │        │ common.crf

       │        │ common.d

       │        │ common.o

       │        │ core_cm3.crf

       │        │ core_cm3.d

       │        │ core_cm3.o

       │        │ dht11.crf

       │        │ dht11.d

       │        │ dht11.o

       │        │ diskio.crf

       │        │ diskio.d

       │        │ diskio.o

       │        │ ds1302.crf

       │        │ ds1302.d

       │        │ ds1302.o

       │        │ ExtDll.iex

       │        │ ff.crf

       │        │ ff.d

       │        │ ff.o

       │        │ io.crf

       │        │ io.d

       │        │ io.o

       │        │ misc.crf

       │        │ misc.d

       │        │ misc.o

       │        │ mp3.crf

       │        │ mp3.d

       │        │ mp3.o

       │        │ pwm.crf

       │        │ pwm.d

       │        │ pwm.o

       │        │ sdio_sdcard.crf

       │        │ sdio_sdcard.d

       │        │ sdio_sdcard.o

       │        │ sim800c.crf

       │        │ sim800c.d

       │        │ sim800c.o

       │        │ spi.crf

       │        │ spi.d

       │        │ spi.o

       │        │ startup_stm32f10x_hd.d

       │        │ startup_stm32f10x_hd.o

       │        │ startup_stm32f10x_ld.d

       │        │ startup_stm32f10x_ld.o

       │        │ startup_stm32f10x_md.d

       │        │ startup_stm32f10x_md.o

       │        │ stm32f10x_dma.crf

       │        │ stm32f10x_dma.d

       │        │ stm32f10x_dma.o

       │        │ stm32f10x_exti.crf

       │        │ stm32f10x_exti.d

       │        │ stm32f10x_exti.o

       │        │ stm32f10x_flash.crf

       │        │ stm32f10x_flash.d

       │        │ stm32f10x_flash.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_sdio.crf

       │        │ stm32f10x_sdio.d

       │        │ stm32f10x_sdio.o

       │        │ stm32f10x_spi.crf

       │        │ stm32f10x_spi.d

       │        │ stm32f10x_spi.o

       │        │ stm32f10x_tim.crf

       │        │ stm32f10x_tim.d

       │        │ stm32f10x_tim.o

       │        │ stm32f10x_usart.crf

       │        │ stm32f10x_usart.d

       │        │ stm32f10x_usart.o

       │        │ system_stm32f10x.crf

       │        │ system_stm32f10x.d

       │        │ system_stm32f10x.o

       │        │ systick.crf

       │        │ systick.d

       │        │ systick.o

       │        │ tft.crf

       │        │ tft.d

       │        │ tft.o

       │        │ TIM4PWM.axf

       │        │ TIM4PWM.build_log.htm

       │        │ TIM4PWM.hex

       │        │ TIM4PWM.htm

       │        │ TIM4PWM.lnp

       │        │ TIM4PWM.sct

       │        │ TIM4PWM_sct.Bak

       │        │ touch.crf

       │        │ touch.d

       │        │ touch.o

       │        │ usart.crf

       │        │ usart.d

       │        │ usart.o

       │        │ wifi.crf

       │        │ wifi.d

       │        │ wifi.o

       │        │ yuyin.crf

       │        │ yuyin.d

       │        └ yuyin.o

       ├ 语音合成软件

       │  │ 1.wav

       │  │ 2.wav

       │  │ 3.wav

       │  │ 4.wav

       │  │ 5.wav

       │  │ msc.dll

       │  │ speex.dll

       │  │ 使用说明.docx

       │  │ 语音合成工具.exe

       │  └ fa9ffb19ed0f3d178487bfb2658e7125

       │     │ msc_sess_err.log

       │     │ msc_sess_perf.log

       │     └ usr.dat

       └ 配套文档

          │ 元器件购买技术支持-科技兔工作室.docx

          │ 垃圾分类库.xlsx

          │ 成品定制技术支持-开放未来科技工作室.docx

          └ 材料清单.xlsx

TAG垃圾桶
  • 23 次
  • 1 分