在好例子网,分享、交流、成长!
您当前所在位置:首页C/C++ 开发实例常规C/C++编程 → 基于STM32f103的浇花系统

基于STM32f103的浇花系统

常规C/C++编程

下载此实例
  • 开发语言:C/C++
  • 实例大小:35.67M
  • 下载次数:12
  • 浏览次数:55
  • 发布时间:2023-06-13
  • 实例类别:常规C/C++编程
  • 发 布 人:奥田咲
  • 文件格式:.rar
  • 所需积分:5
 相关标签: STM32f103 STM32F1 STM32 F103 STM3

实例介绍

【实例简介】STM32F103C8T6核心板以及相关传感器,MQTT服务器,微信小程序

【实例截图】

from clipboard

from clipboard

【核心代码】

.
├── Graduation-Design
│   ├── Environmental-detection-pro-pro
│   │   ├── CORE
│   │   │   ├── core_cm3.c
│   │   │   ├── core_cm3.h
│   │   │   ├── startup_stm32f10x_hd.s
│   │   │   └── startup_stm32f10x_md.s
│   │   ├── HARDWARE
│   │   │   ├── ADC
│   │   │   ├── BEEP
│   │   │   ├── BH1750
│   │   │   ├── DHT11
│   │   │   ├── KEY
│   │   │   ├── LED
│   │   │   ├── LSENS
│   │   │   ├── OLED
│   │   │   ├── RELAY
│   │   │   └── YL_69
│   │   ├── NET
│   │   │   ├── MQTT
│   │   │   ├── cJSON
│   │   │   ├── device
│   │   │   └── onenet
│   │   ├── OBJ
│   │   │   └── LED.hex
│   │   ├── README.TXT
│   │   ├── STM32F10x_FWLib
│   │   │   ├── inc
│   │   │   └── src
│   │   ├── SYSTEM
│   │   │   ├── delay
│   │   │   ├── sys
│   │   │   └── usart
│   │   ├── USER
│   │   │   ├── DebugConfig
│   │   │   ├── JLinkSettings.ini
│   │   │   ├── LED.uvguix.Administrator
│   │   │   ├── LED.uvguix.h1165
│   │   │   ├── LED.uvoptx
│   │   │   ├── LED.uvprojx
│   │   │   ├── main.c
│   │   │   ├── stm32f10x.h
│   │   │   ├── stm32f10x_conf.h
│   │   │   ├── stm32f10x_it.c
│   │   │   ├── stm32f10x_it.h
│   │   │   ├── system_stm32f10x.c
│   │   │   └── system_stm32f10x.h
│   │   └── keilkilll.bat
│   └── stm32f103Weapp
│       ├── build
│       │   ├── build.js
│       │   ├── check-versions.js
│       │   ├── dev-client.js
│       │   ├── dev-server.js
│       │   ├── utils.js
│       │   ├── vue-loader.conf.js
│       │   ├── webpack.base.conf.js
│       │   ├── webpack.dev.conf.js
│       │   └── webpack.prod.conf.js
│       ├── config
│       │   ├── dev.env.js
│       │   ├── index.js
│       │   └── prod.env.js
│       ├── dist
│       │   └── wx
│       ├── index.html
│       └── node_modules
│           ├── @types
│           ├── abbrev
│           ├── accepts
│           ├── acorn
│           ├── acorn-dynamic-import
│           ├── ajv
│           ├── ajv-errors
│           ├── ajv-keywords
│           ├── align-text
│           ├── alphanum-sort
│           ├── amdefine
│           ├── ansi-regex
│           ├── ansi-styles
│           ├── anymatch
│           ├── aproba
│           ├── are-we-there-yet
│           ├── argparse
│           ├── arr-diff
│           ├── arr-flatten
│           ├── arr-union
│           ├── array-find-index
│           ├── array-flatten
│           ├── array-union
│           ├── array-uniq
│           ├── array-unique
│           ├── asn1
│           ├── asn1.js
│           ├── assert
│           ├── assert-plus
│           ├── assign-symbols
│           ├── async
│           ├── async-each
│           ├── async-foreach
│           ├── async-limiter
│           ├── asynckit
│           ├── atob
│           ├── autoprefixer
│           ├── aws-sign2
│           ├── aws4
│           ├── babel-code-frame
│           ├── babel-core
│           ├── babel-generator
│           ├── babel-helper-bindify-decorators
│           ├── babel-helper-builder-binary-assignment-operator-visitor
│           ├── babel-helper-call-delegate
│           ├── babel-helper-define-map
│           ├── babel-helper-explode-assignable-expression
│           ├── babel-helper-explode-class
│           ├── babel-helper-function-name
│           ├── babel-helper-get-function-arity
│           ├── babel-helper-hoist-variables
│           ├── babel-helper-optimise-call-expression
│           ├── babel-helper-regex
│           ├── babel-helper-remap-async-to-generator
│           ├── babel-helper-replace-supers
│           ├── babel-helpers
│           ├── babel-loader
│           ├── babel-messages
│           ├── babel-plugin-check-es2015-constants
│           ├── babel-plugin-syntax-async-functions
│           ├── babel-plugin-syntax-async-generators
│           ├── babel-plugin-syntax-class-properties
│           ├── babel-plugin-syntax-decorators
│           ├── babel-plugin-syntax-dynamic-import
│           ├── babel-plugin-syntax-exponentiation-operator
│           ├── babel-plugin-syntax-object-rest-spread
│           ├── babel-plugin-syntax-trailing-function-commas
│           ├── babel-plugin-transform-async-generator-functions
│           ├── babel-plugin-transform-async-to-generator
│           ├── babel-plugin-transform-class-properties
│           ├── babel-plugin-transform-decorators
│           ├── babel-plugin-transform-es2015-arrow-functions
│           ├── babel-plugin-transform-es2015-block-scoped-functions
│           ├── babel-plugin-transform-es2015-block-scoping
│           ├── babel-plugin-transform-es2015-classes
│           ├── babel-plugin-transform-es2015-computed-properties
│           ├── babel-plugin-transform-es2015-destructuring
│           ├── babel-plugin-transform-es2015-duplicate-keys
│           ├── babel-plugin-transform-es2015-for-of
│           ├── babel-plugin-transform-es2015-function-name
│           ├── babel-plugin-transform-es2015-literals
│           ├── babel-plugin-transform-es2015-modules-amd
│           ├── babel-plugin-transform-es2015-modules-commonjs
│           ├── babel-plugin-transform-es2015-modules-systemjs
│           ├── babel-plugin-transform-es2015-modules-umd
│           ├── babel-plugin-transform-es2015-object-super
│           ├── babel-plugin-transform-es2015-parameters
│           ├── babel-plugin-transform-es2015-shorthand-properties
│           ├── babel-plugin-transform-es2015-spread
│           ├── babel-plugin-transform-es2015-sticky-regex
│           ├── babel-plugin-transform-es2015-template-literals
│           ├── babel-plugin-transform-es2015-typeof-symbol
│           ├── babel-plugin-transform-es2015-unicode-regex
│           ├── babel-plugin-transform-exponentiation-operator
│           ├── babel-plugin-transform-object-rest-spread
│           ├── babel-plugin-transform-regenerator
│           ├── babel-plugin-transform-runtime
│           ├── babel-plugin-transform-strict-mode
│           ├── babel-preset-env
│           ├── babel-preset-stage-2
│           ├── babel-preset-stage-3
│           ├── babel-register
│           ├── babel-runtime
│           ├── babel-template
│           ├── babel-traverse
│           ├── babel-types
│           ├── babelon
│           ├── babylon
│           ├── balanced-match
│           ├── base
│           ├── base64-js
│           ├── bcrypt-pbkdf
│           ├── bfj-node4
│           ├── big.js
│           ├── binary-extensions
│           ├── bl
│           ├── block-stream
│           ├── bluebird
│           ├── bn.js
│           ├── body-parser
│           ├── boolbase
│           ├── brace-expansion
│           ├── braces
│           ├── brorand
│           ├── browserify-aes
│           ├── browserify-cipher
│           ├── browserify-des
│           ├── browserify-rsa
│           ├── browserify-sign
│           ├── browserify-zlib
│           ├── browserslist
│           ├── buffer
│           ├── buffer-from
│           ├── buffer-xor
│           ├── builtin-status-codes
│           ├── bytes
│           ├── cacache
│           ├── cache-base
│           ├── callback-stream
│           ├── caller-callsite
│           ├── caller-path
│           ├── callsites
│           ├── camel-case
│           ├── camelcase
│           ├── camelcase-keys
│           ├── caniuse-api
│           ├── caniuse-db
│           ├── caniuse-lite
│           ├── caseless
│           ├── center-align
│           ├── chalk
│           ├── check-types
│           ├── chokidar
│           ├── chownr
│           ├── cipher-base
│           ├── clap
│           ├── class-utils
│           ├── clean-css
│           ├── cli-cursor
│           ├── cli-spinners
│           ├── cliui
│           ├── clone
│           ├── clone-deep
│           ├── co
│           ├── coa
│           ├── code-point-at
│           ├── collection-visit
│           ├── color
│           ├── color-convert
│           ├── color-name
│           ├── color-string
│           ├── colormin
│           ├── colors
│           ├── combined-stream
│           ├── commander
│           ├── commist
│           ├── commondir
│           ├── component-emitter
│           ├── concat-map
│           ├── concat-stream
│           ├── config-chain
│           ├── connect-history-api-fallback
│           ├── console-browserify
│           ├── console-control-strings
│           ├── consolidate
│           ├── constants-browserify
│           ├── content-disposition
│           ├── content-type
│           ├── convert-source-map
│           ├── cookie
│           ├── cookie-signature
│           ├── copy-concurrently
│           ├── copy-descriptor
│           ├── copy-webpack-plugin
│           ├── core-js
│           ├── core-util-is
│           ├── cosmiconfig
│           ├── create-ecdh
│           ├── create-hash
│           ├── create-hmac
│           ├── cross-spawn
│           ├── crypto-browserify
│           ├── css
│           ├── css-color-names
│           ├── css-declaration-sorter
│           ├── css-loader
│           ├── css-select
│           ├── css-select-base-adapter
│           ├── css-selector-tokenizer
│           ├── css-tree
│           ├── css-what
│           ├── cssesc
│           ├── cssnano
│           ├── cssnano-preset-default
│           ├── cssnano-util-get-arguments
│           ├── cssnano-util-get-match
│           ├── cssnano-util-raw-cache
│           ├── cssnano-util-same-parent
│           ├── csso
│           ├── currently-unhandled
│           ├── cyclist
│           ├── d
│           ├── dashdash
│           ├── de-indent
│           ├── debug
│           ├── decamelize
│           ├── decode-uri-component
│           ├── deep-equal
│           ├── defaults
│           ├── define-properties
│           ├── define-property
│           ├── defined
│           ├── delayed-stream
│           ├── delegates
│           ├── depd
│           ├── des.js
│           ├── destroy
│           ├── detect-indent
│           ├── diffie-hellman
│           ├── dir-glob
│           ├── dom-converter
│           ├── dom-serializer
│           ├── dom7
│           ├── domain-browser
│           ├── domelementtype
│           ├── domhandler
│           ├── domutils
│           ├── dot-prop
│           ├── duplexer
│           ├── duplexify
│           ├── ecc-jsbn
│           ├── editorconfig
│           ├── ee-first
│           ├── ejs
│           ├── electron-to-chromium
│           ├── elliptic
│           ├── emoji-regex
│           ├── emojis-list
│           ├── encodeurl
│           ├── end-of-stream
│           ├── enhanced-resolve
│           ├── entities
│           ├── errno
│           ├── error-ex
│           ├── error-stack-parser
│           ├── es-abstract
│           ├── es-to-primitive
│           ├── es5-ext
│           ├── es6-iterator
│           ├── es6-map
│           ├── es6-set
│           ├── es6-symbol
│           ├── es6-weak-map
│           ├── escape-html
│           ├── escape-string-regexp
│           ├── escope
│           ├── esprima
│           ├── esrecurse
│           ├── estraverse
│           ├── esutils
│           ├── etag
│           ├── event-emitter
│           ├── eventemitter3
│           ├── events
│           ├── eventsource-polyfill
│           ├── evp_bytestokey
│           ├── execa
│           ├── expand-brackets
│           ├── express
│           ├── ext
│           ├── extend
│           ├── extend-shallow
│           ├── extglob
│           ├── extract-text-webpack-plugin
│           ├── extsprintf
│           ├── fast-deep-equal
│           ├── fast-json-stable-stringify
│           ├── fastparse
│           ├── file-loader
│           ├── filesize
│           ├── fill-range
│           ├── finalhandler
│           ├── find-cache-dir
│           ├── find-up
│           ├── flatten
│           ├── flush-write-stream
│           ├── follow-redirects
│           ├── for-in
│           ├── forever-agent
│           ├── form-data
│           ├── forwarded
│           ├── fragment-cache
│           ├── fresh
│           ├── friendly-errors-webpack-plugin
│           ├── from2
│           ├── fs-extra
│           ├── fs-write-stream-atomic
│           ├── fs.realpath
│           ├── fstream
│           ├── function-bind
│           ├── gauge
│           ├── gaze
│           ├── get-caller-file
│           ├── get-stdin
│           ├── get-stream
│           ├── get-value
│           ├── getpass
│           ├── glob
│           ├── glob-parent
│           ├── glob-stream
│           ├── globals
│           ├── globby
│           ├── globule
│           ├── graceful-fs
│           ├── gzip-size
│           ├── har-schema
│           ├── har-validator
│           ├── has
│           ├── has-ansi
│           ├── has-flag
│           ├── has-symbols
│           ├── has-unicode
│           ├── has-value
│           ├── has-values
│           ├── hash-base
│           ├── hash-sum
│           ├── hash.js
│           ├── he
│           ├── help-me
│           ├── hex-color-regex
│           ├── hmac-drbg
│           ├── home-or-tmp
│           ├── hosted-git-info
│           ├── hsl-regex
│           ├── hsla-regex
│           ├── html-comment-regex
│           ├── html-minifier
│           ├── html-webpack-plugin
│           ├── htmlparser2
│           ├── http-errors
│           ├── http-proxy
│           ├── http-proxy-middleware
│           ├── http-signature
│           ├── https-browserify
│           ├── iconv-lite
│           ├── icss-replace-symbols
│           ├── icss-utils
│           ├── ieee754
│           ├── iferr
│           ├── ignore
│           ├── import-cwd
│           ├── import-fresh
│           ├── import-from
│           ├── imurmurhash
│           ├── in-publish
│           ├── indent-string
│           ├── indexes-of
│           ├── inflight
│           ├── inherits
│           ├── ini
│           ├── interpret
│           ├── invariant
│           ├── invert-kv
│           ├── ipaddr.js
│           ├── is-absolute
│           ├── is-absolute-url
│           ├── is-accessor-descriptor
│           ├── is-arguments
│           ├── is-arrayish
│           ├── is-binary-path
│           ├── is-buffer
│           ├── is-callable
│           ├── is-color-stop
│           ├── is-data-descriptor
│           ├── is-date-object
│           ├── is-descriptor
│           ├── is-directory
│           ├── is-extendable
│           ├── is-extglob
│           ├── is-finite
│           ├── is-fullwidth-code-point
│           ├── is-glob
│           ├── is-negated-glob
│           ├── is-number
│           ├── is-obj
│           ├── is-plain-obj
│           ├── is-plain-object
│           ├── is-regex
│           ├── is-relative
│           ├── is-resolvable
│           ├── is-stream
│           ├── is-svg
│           ├── is-symbol
│           ├── is-typedarray
│           ├── is-unc-path
│           ├── is-utf8
│           ├── is-windows
│           ├── isarray
│           ├── isexe
│           ├── isobject
│           ├── isstream
│           ├── js-base64
│           ├── js-beautify
│           ├── js-tokens
│           ├── js-yaml
│           ├── jsbn
│           ├── jsesc
│           ├── json-loader
│           ├── json-parse-better-errors
│           ├── json-schema
│           ├── json-schema-traverse
│           ├── json-stable-stringify-without-jsonify
│           ├── json-stringify-safe
│           ├── json5
│           ├── jsonfile
│           ├── jsprim
│           ├── kind-of
│           ├── last-call-webpack-plugin
│           ├── lazy-cache
│           ├── lcid
│           ├── leven
│           ├── load-json-file
│           ├── loader-runner
│           ├── loader-utils
│           ├── locate-path
│           ├── lodash
│           ├── lodash.camelcase
│           ├── lodash.memoize
│           ├── lodash.uniq
│           ├── log-symbols
│           ├── longest
│           ├── loose-envify
│           ├── loud-rejection
│           ├── lower-case
│           ├── lru-cache
│           ├── make-dir
│           ├── map-cache
│           ├── map-obj
│           ├── map-visit
│           ├── math-expression-evaluator
│           ├── md5.js
│           ├── mdn-data
│           ├── media-typer
│           ├── mem
│           ├── memory-fs
│           ├── meow
│           ├── merge-descriptors
│           ├── methods
│           ├── micromatch
│           ├── miller-rabin
│           ├── mime
│           ├── mime-db
│           ├── mime-types
│           ├── mimic-fn
│           ├── minimalistic-assert
│           ├── minimalistic-crypto-utils
│           ├── minimatch
│           ├── minimist
│           ├── mississippi
│           ├── mixin-deep
│           ├── mkdirp
│           ├── move-concurrently
│           ├── mpvue
│           ├── mpvue-loader
│           ├── mpvue-router-patch
│           ├── mpvue-template-compiler
│           ├── mpvue-webpack-target
│           ├── mqtt
│           ├── mqtt-packet
│           ├── ms
│           ├── nan
│           ├── nanomatch
│           ├── natives
│           ├── negotiator
│           ├── neo-async
│           ├── next-tick
│           ├── no-case
│           └── node-gyp
└── 基于STM32f103的浇花系统_Graduation-Design.rar

533 directories, 33 files


实例下载地址

基于STM32f103的浇花系统

不能下载?内容有错? 点击这里报错 + 投诉 + 提问

好例子网口号:伸出你的我的手 — 分享

网友评论

发表评论

(您的评论需要经过审核才能显示)

查看所有0条评论>>

小贴士

感谢您为本站写下的评论,您的评论对其它用户来说具有重要的参考价值,所以请认真填写。

  • 类似“顶”、“沙发”之类没有营养的文字,对勤劳贡献的楼主来说是令人沮丧的反馈信息。
  • 相信您也不想看到一排文字/表情墙,所以请不要反馈意义不大的重复字符,也请尽量不要纯表情的回复。
  • 提问之前请再仔细看一遍楼主的说明,或许是您遗漏了。
  • 请勿到处挖坑绊人、招贴广告。既占空间让人厌烦,又没人会搭理,于人于己都无利。

关于好例子网

本站旨在为广大IT学习爱好者提供一个非营利性互相学习交流分享平台。本站所有资源都可以被免费获取学习研究。本站资源来自网友分享,对搜索内容的合法性不具有预见性、识别性、控制性,仅供学习研究,请务必在下载后24小时内给予删除,不得用于其他任何用途,否则后果自负。基于互联网的特殊性,平台无法对用户传输的作品、信息、内容的权属或合法性、安全性、合规性、真实性、科学性、完整权、有效性等进行实质审查;无论平台是否已进行审查,用户均应自行承担因其传输的作品、信息、内容而可能或已经产生的侵权或权属纠纷等法律责任。本站所有资源不代表本站的观点或立场,基于网友分享,根据中国法律《信息网络传播权保护条例》第二十二与二十三条之规定,若资源存在侵权或相关问题请联系本站客服人员,点此联系我们。关于更多版权及免责申明参见 版权及免责申明

;
报警