基本信息
源码名称:农田检测系统源码(含上位机+下位机)
源码大小:0.83M
文件格式:.zip
开发语言:C/C++
更新时间:2021-04-01
   友情提示:(无需注册或充值,赞助后即可获取资源下载链接)

     嘿,亲!知识可是无价之宝呢,但咱这精心整理的资料也耗费了不少心血呀。小小地破费一下,绝对物超所值哦!如有下载和支付问题,请联系我们QQ(微信同号):813200300

本次赞助数额为: 2 元 
   源码介绍

STM32;微信小程序;onnet;视频:https://www.bilibili.com/video/BV1QZ4y1W7x7/






【源码目录】

农田监测系统

├── SGP30 BH1750_已通过测试
│   ├── CORE
│   │   ├── core_cm3.c
│   │   ├── core_cm3.h
│   │   └── startup_stm32f10x_hd.s
│   ├── HARDWARE
│   │   ├── BEEP
│   │   │   ├── beep.c
│   │   │   └── beep.h
│   │   ├── BH1750
│   │   │   ├── BH1750.c
│   │   │   └── BH1750.h
│   │   ├── EXTI
│   │   │   ├── exti.c
│   │   │   └── exti.h
│   │   ├── KEY
│   │   │   ├── key.c
│   │   │   └── key.h
│   │   ├── LED
│   │   │   ├── led.c
│   │   │   └── led.h
│   │   └── WDG
│   │       ├── wdg.c
│   │       └── wdg.h
│   ├── OBJ
│   │   └── IWDG.hex
│   ├── STM32F10x_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
│   ├── SYSTEM
│   │   ├── delay
│   │   │   ├── delay.c
│   │   │   └── delay.h
│   │   ├── iic
│   │   │   ├── iic.c
│   │   │   └── iic.h
│   │   ├── sys
│   │   │   ├── sys.c
│   │   │   └── sys.h
│   │   └── usart
│   │       ├── usart.c
│   │       └── usart.h
│   ├── USER
│   │   ├── DebugConfig
│   │   │   ├── IWDG_STM32F103ZE.dbgconf
│   │   │   └── IWDG_STM32F103ZE_1.0.0.dbgconf
│   │   ├── IWDG.uvguix.acer0827
│   │   ├── IWDG.uvguix.xie
│   │   ├── IWDG.uvguix.黎震光
│   │   ├── IWDG.uvoptx
│   │   ├── IWDG.uvprojx
│   │   ├── JLinkSettings.ini
│   │   ├── SGP30.c
│   │   ├── SGP30.h
│   │   ├── main.c
│   │   ├── stm32f10x.h
│   │   ├── stm32f10x_conf.h
│   │   ├── stm32f10x_it.c
│   │   ├── stm32f10x_it.h
│   │   ├── system_stm32f10x.c
│   │   └── system_stm32f10x.h
│   └── keilkilll.bat
├── 下位机_STM32代码
│   ├── CORE
│   │   ├── core_cm3.c
│   │   ├── core_cm3.h
│   │   ├── startup_stm32f10x_hd.s
│   │   └── startup_stm32f10x_md.s
│   ├── HARDWARE
│   │   ├── ADC
│   │   │   ├── adc.c
│   │   │   └── adc.h
│   │   ├── BH1750
│   │   │   ├── BH1750.c
│   │   │   └── BH1750.h
│   │   ├── DHT11
│   │   │   ├── dht11.c
│   │   │   └── dht11.h
│   │   ├── OLED
│   │   │   ├── bmp.h
│   │   │   ├── oled.c
│   │   │   ├── oled.h
│   │   │   └── oledfont.h
│   │   ├── SGP30
│   │   │   ├── SGP30.c
│   │   │   └── SGP30.h
│   │   └── switch
│   │       ├── switch.c
│   │       └── switch.h
│   ├── NET
│   │   ├── EDP
│   │   │   ├── Common.h
│   │   │   ├── EdpKit.c
│   │   │   ├── SDK使用说明.txt
│   │   │   ├── edpkit.h
│   │   │   └── sample.c
│   │   ├── device
│   │   │   ├── inc
│   │   │   │   └── esp8266.h
│   │   │   └── src
│   │   │       └── esp8266.c
│   │   └── onenet
│   │       ├── inc
│   │       │   └── onenet.h
│   │       └── src
│   │           └── onenet.c
│   ├── OBJ
│   ├── STM32F10x_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
│   ├── SYSTEM
│   │   ├── delay
│   │   │   ├── delay.c
│   │   │   └── delay.h
│   │   ├── iic
│   │   │   ├── iic.c
│   │   │   └── iic.h
│   │   ├── sys
│   │   │   ├── sys.c
│   │   │   └── sys.h
│   │   └── usart
│   │       ├── usart.c
│   │       └── usart.h
│   ├── USER
│   │   ├── DebugConfig
│   │   │   ├── Target_1_STM32F103C8.dbgconf
│   │   │   ├── Target_1_STM32F103C8_1.0.0.dbgconf
│   │   │   └── Target_1_STM32F103ZE_1.0.0.dbgconf
│   │   ├── EventRecorderStub.scvd
│   │   ├── Listings
│   │   ├── Objects
│   │   │   └── nongtian.hex
│   │   ├── main.c
│   │   ├── nongtian.uvguix.黎震光
│   │   ├── nongtian.uvoptx
│   │   ├── nongtian.uvprojx
│   │   ├── stm32f10x.h
│   │   ├── stm32f10x_conf.h
│   │   ├── stm32f10x_it.c
│   │   ├── stm32f10x_it.h
│   │   ├── switch.c
│   │   ├── system_stm32f10x.c
│   │   └── system_stm32f10x.h
│   └── keilkilll.bat
├── 上位机_微信小程序
│   └── 农田检测系统
│       ├── app.js
│       ├── app.json
│       ├── app.wxss
│       ├── images
│       │   ├── enter.png
│       │   ├── key.png
│       │   ├── loginLog.jpg
│       │   ├── name.png
│       │   ├── none.png
│       │   └── touxiang.jpg
│       ├── pages
│       │   ├── index
│       │   │   ├── index.js
│       │   │   ├── index.json
│       │   │   ├── index.wxml
│       │   │   └── index.wxss
│       │   ├── login
│       │   │   ├── login.js
│       │   │   ├── login.json
│       │   │   ├── login.wxml
│       │   │   └── login.wxss
│       │   ├── logs
│       │   │   ├── logs.js
│       │   │   ├── logs.json
│       │   │   ├── logs.wxml
│       │   │   └── logs.wxss
│       │   ├── shouye
│       │   │   ├── shouye.js
│       │   │   ├── shouye.json
│       │   │   ├── shouye.wxml
│       │   │   └── shouye.wxss
│       │   └── user
│       │       ├── user.js
│       │       ├── user.json
│       │       ├── user.wxml
│       │       └── user.wxss
│       ├── project.config.json
│       ├── sitemap.json
│       ├── sitemap39.json
│       ├── sitemap68.json
│       └── utils
│           └── util.js
└── 有问题加V:liyu7473.txt

60 directories, 221 files