首页 星云 工具 资源 星选 资讯 热门工具
:

PDF转图片 完全免费 小红书视频下载 无水印 抖音视频下载 无水印 数字星空

vue-devtools-5.1.1.zip

行业 913.9KB 11 需要积分: 1
立即下载

资源介绍:

在github链接上面直接下载的vue-devtools 不可用,我这里在分支里面下载的,5.1.1版本可用的。 使用方法 切换到根目录 cnpm install,然后 npm run build,再 修改shells\chrome 目录下的manifest.json 里面的 "persistent": true 。然后在扩展程序添加就Ok了
# vue-remote-devtools > This package provides a standalone vue-devtools application, that can be used to debug any Vue app regardless of the environment. Now you can debug your app opened in mobile browser, safari, native script etc. not just desktop chrome or firefox. ### :cd: Installation Install the package globally: ```bash npm install -g @vue/devtools ``` Or locally as project dependency: ```bash npm install --save-dev @vue/devtools ``` ### :rocket: Usage #### Using global package Once you installed the package globally, run: ```bash vue-devtools ``` Then add: ```html ``` Or if you want to debug your device remotely: ```html ``` To the `` section of your app. **(Don't forget to remove it before deploying to production!)** `` usually looks like this: `192.168.x.x`. #### Using dependency package Once you installed the package as project dependency, run: ```bash ./node_modules/.bin/vue-devtools ``` You can also use the global `vue-devtools` to start the app, but you might want to check if the local version matches the global one in this scenario to avoid any incompatibilities. Then import it directly in your app: ```js import devtools from '@vue/devtools' // import Vue from 'vue' ``` > Make sure you import devtools before Vue, otherwise it might not work as expected. And connect to host: ```js if (process.env.NODE_ENV === 'development') { devtools.connect(/* host, port */) } ``` **host** - is an optional argument that tells your application where devtools middleware server is running, if you debug you app on your computer you don't have to set this (the default is `http://localhost`), but if you want to debug your app on mobile devices, you might want to pass your local IP (e.g. `http://192.168.1.12`). **port** - is an optional argument that tells your application on what port devtools middleware server is running. If you use proxy server, you might want to set it to `null` so the port won't be added to connection URL. #### FAQ: **1. How to change port devtools server is running on?** You can change it by setting environment variable before running it: ``` PORT=8000 vue-devtools ``` Then in your app you'll have to set either: ``` window.__VUE_DEVTOOLS_PORT__ = 8000 ``` Or update connect method with new port: ``` devtools.connect(/* host */, 8000) ``` **2. How to remotely inspect page on the server?** For that you can use `ngrok` proxy. You can download it [here](https://ngrok.com/). Once you start vue-devtools run: ``` ngrok http 8098 ``` Then update your host and port accordingly: ``` devtools.connect('https://example.ngrok.io', null) ``` Make sure to set port to `null` or `false`, because ngrok host already proxies to proper port that we defined in the first command. **3. How to inspect page served through `HTTPS`?** For that you can also use ngrok, as it automatically proxies https requests to http. Take a look at question number 2 for instructions. **4. How to inspect cordova applications?** Make sure that the page under `http://your-ip:8098` is returning a javascript coode on your device/simulator. If it doesn't - make sure to check your anti-virus or router/firewall settings. If it works - please follow the instructions, and connect to devtools using your IP. For example: ```js import devtools from '@vue/devtools' import Vue from 'vue' // ... function onDeviceReady () { devtools.connect('http://192.168.xx.yy') // use your IP } if (window.location.protocol === 'file:') { document.addEventListener('deviceready', onDeviceReady, false) } else { onDeviceReady() } ``` This will only work on `development` build of your app. ### :beers: Development 1. Install all dependencies ``` npm install ``` 2. Run: ``` npm run dev ``` This will watch `src` folder and compile files on change 3. Run: ``` npm start ``` This will open electron app with devtools 4. Follow **Usage** section to connect any app to your development version of `vue-remote-devtools` ### :lock: License [MIT](http://opensource.org/licenses/MIT)

资源文件列表:

vue-devtools-5.1.1.zip 大约有237个文件
  1. vue-devtools-5.1.1/
  2. vue-devtools-5.1.1/.browserslistrc 27B
  3. vue-devtools-5.1.1/.circleci/
  4. vue-devtools-5.1.1/.circleci/config.yml 774B
  5. vue-devtools-5.1.1/.eslintrc.js 401B
  6. vue-devtools-5.1.1/.github/
  7. vue-devtools-5.1.1/.github/ISSUE_TEMPLATE.md 212B
  8. vue-devtools-5.1.1/.gitignore 121B
  9. vue-devtools-5.1.1/LICENSE 1.06KB
  10. vue-devtools-5.1.1/README.md 2.99KB
  11. vue-devtools-5.1.1/cypress.json 83B
  12. vue-devtools-5.1.1/cypress/
  13. vue-devtools-5.1.1/cypress/.eslintrc.js 155B
  14. vue-devtools-5.1.1/cypress/.gitignore 21B
  15. vue-devtools-5.1.1/cypress/fixtures/
  16. vue-devtools-5.1.1/cypress/fixtures/example.json 154B
  17. vue-devtools-5.1.1/cypress/integration/
  18. vue-devtools-5.1.1/cypress/integration/component-data-edit.js 4.09KB
  19. vue-devtools-5.1.1/cypress/integration/components-tab.js 5.32KB
  20. vue-devtools-5.1.1/cypress/integration/events-tab.js 1.35KB
  21. vue-devtools-5.1.1/cypress/integration/vuex-edit.js 3.35KB
  22. vue-devtools-5.1.1/cypress/integration/vuex-tab.js 8.5KB
  23. vue-devtools-5.1.1/cypress/plugins/
  24. vue-devtools-5.1.1/cypress/plugins/index.js 836B
  25. vue-devtools-5.1.1/cypress/support/
  26. vue-devtools-5.1.1/cypress/support/commands.js 1.62KB
  27. vue-devtools-5.1.1/cypress/support/index.js 670B
  28. vue-devtools-5.1.1/cypress/utils/
  29. vue-devtools-5.1.1/cypress/utils/suite.js 166B
  30. vue-devtools-5.1.1/dist/
  31. vue-devtools-5.1.1/dist/.gitkeep
  32. vue-devtools-5.1.1/docs/
  33. vue-devtools-5.1.1/docs/open-in-editor.md 1.52KB
  34. vue-devtools-5.1.1/media/
  35. vue-devtools-5.1.1/media/demo.gif 312.72KB
  36. vue-devtools-5.1.1/media/screenshot-shadow.png 85.36KB
  37. vue-devtools-5.1.1/media/screenshot.png 75.67KB
  38. vue-devtools-5.1.1/package.json 3.34KB
  39. vue-devtools-5.1.1/postcss.config.js 66B
  40. vue-devtools-5.1.1/release.js 1.59KB
  41. vue-devtools-5.1.1/shells/
  42. vue-devtools-5.1.1/shells/chrome/
  43. vue-devtools-5.1.1/shells/chrome/devtools-background.html 78B
  44. vue-devtools-5.1.1/shells/chrome/devtools.html 383B
  45. vue-devtools-5.1.1/shells/chrome/icons/
  46. vue-devtools-5.1.1/shells/chrome/icons/128-beta.png 4.51KB
  47. vue-devtools-5.1.1/shells/chrome/icons/128-gray.png 3.92KB
  48. vue-devtools-5.1.1/shells/chrome/icons/128.nuxt.png 8.26KB
  49. vue-devtools-5.1.1/shells/chrome/icons/128.png 5.15KB
  50. vue-devtools-5.1.1/shells/chrome/icons/16-beta.png 644B
  51. vue-devtools-5.1.1/shells/chrome/icons/16-gray.png 1.46KB
  52. vue-devtools-5.1.1/shells/chrome/icons/16.nuxt.png 634B
  53. vue-devtools-5.1.1/shells/chrome/icons/16.png 1.57KB
  54. vue-devtools-5.1.1/shells/chrome/icons/48-beta.png 1.71KB
  55. vue-devtools-5.1.1/shells/chrome/icons/48-gray.png 2.2KB
  56. vue-devtools-5.1.1/shells/chrome/icons/48.nuxt.png 2.63KB
  57. vue-devtools-5.1.1/shells/chrome/icons/48.png 2.69KB
  58. vue-devtools-5.1.1/shells/chrome/manifest.json 1.19KB
  59. vue-devtools-5.1.1/shells/chrome/popups/
  60. vue-devtools-5.1.1/shells/chrome/popups/disabled.html 199B
  61. vue-devtools-5.1.1/shells/chrome/popups/disabled.nuxt.html 209B
  62. vue-devtools-5.1.1/shells/chrome/popups/enabled.html 133B
  63. vue-devtools-5.1.1/shells/chrome/popups/enabled.nuxt.html 143B
  64. vue-devtools-5.1.1/shells/chrome/popups/not-found.html 82B
  65. vue-devtools-5.1.1/shells/chrome/src/
  66. vue-devtools-5.1.1/shells/chrome/src/backend.js 1008B
  67. vue-devtools-5.1.1/shells/chrome/src/background.js 2.91KB
  68. vue-devtools-5.1.1/shells/chrome/src/detector.js 1.64KB
  69. vue-devtools-5.1.1/shells/chrome/src/devtools-background.js 2.97KB
  70. vue-devtools-5.1.1/shells/chrome/src/devtools.js 1.72KB
  71. vue-devtools-5.1.1/shells/chrome/src/hook.js 585B
  72. vue-devtools-5.1.1/shells/chrome/src/proxy.js 917B
  73. vue-devtools-5.1.1/shells/chrome/webpack.config.js 557B
  74. vue-devtools-5.1.1/shells/createConfig.js 4.06KB
  75. vue-devtools-5.1.1/shells/dev/
  76. vue-devtools-5.1.1/shells/dev/index.html 836B
  77. vue-devtools-5.1.1/shells/dev/src/
  78. vue-devtools-5.1.1/shells/dev/src/backend.js 314B
  79. vue-devtools-5.1.1/shells/dev/src/devtools.js 1.02KB
  80. vue-devtools-5.1.1/shells/dev/src/hook.js 68B
  81. vue-devtools-5.1.1/shells/dev/target-electron.html 273B
  82. vue-devtools-5.1.1/shells/dev/target.html 265B
  83. vue-devtools-5.1.1/shells/dev/target/
  84. vue-devtools-5.1.1/shells/dev/target/Counter.vue 5.18KB
  85. vue-devtools-5.1.1/shells/dev/target/EventChild.vue 1.24KB
  86. vue-devtools-5.1.1/shells/dev/target/EventChild1.vue 223B
  87. vue-devtools-5.1.1/shells/dev/target/EventChildCond.vue 518B
  88. vue-devtools-5.1.1/shells/dev/target/Events.vue 741B
  89. vue-devtools-5.1.1/shells/dev/target/Functional.vue 91B
  90. vue-devtools-5.1.1/shells/dev/target/Init.vue 288B
  91. vue-devtools-5.1.1/shells/dev/target/MyClass.js 76B
  92. vue-devtools-5.1.1/shells/dev/target/NativeTypes.vue 3.8KB
  93. vue-devtools-5.1.1/shells/dev/target/NoProp.vue 150B
  94. vue-devtools-5.1.1/shells/dev/target/Other.vue 1.14KB
  95. vue-devtools-5.1.1/shells/dev/target/RefTester.vue 312B
  96. vue-devtools-5.1.1/shells/dev/target/Target.vue 2.14KB
  97. vue-devtools-5.1.1/shells/dev/target/TransitionExample.vue 1.02KB
  98. vue-devtools-5.1.1/shells/dev/target/VuexObject.vue 263B
  99. vue-devtools-5.1.1/shells/dev/target/dynamic-module.js 866B
  100. vue-devtools-5.1.1/shells/dev/target/index.js 1.42KB
  101. vue-devtools-5.1.1/shells/dev/target/router.js 1.75KB
  102. vue-devtools-5.1.1/shells/dev/target/router/
  103. vue-devtools-5.1.1/shells/dev/target/router/ChildRoute.vue 86B
  104. vue-devtools-5.1.1/shells/dev/target/router/NamedRoute.vue 107B
  105. vue-devtools-5.1.1/shells/dev/target/router/ParentRoute.vue 161B
  106. vue-devtools-5.1.1/shells/dev/target/router/RouteOne.vue 110B
  107. vue-devtools-5.1.1/shells/dev/target/router/RouteTwo.vue 109B
  108. vue-devtools-5.1.1/shells/dev/target/router/RouteWithAlias.vue 117B
  109. vue-devtools-5.1.1/shells/dev/target/router/RouteWithBeforeEnter.vue 119B
  110. vue-devtools-5.1.1/shells/dev/target/router/RouteWithParams.vue 187B
  111. vue-devtools-5.1.1/shells/dev/target/router/RouteWithProps.vue 289B
  112. vue-devtools-5.1.1/shells/dev/target/router/RouteWithQuery.vue 137B
  113. vue-devtools-5.1.1/shells/dev/target/router/Router.vue 1.47KB
  114. vue-devtools-5.1.1/shells/dev/target/store.js 1.5KB
  115. vue-devtools-5.1.1/shells/dev/webpack.config.js 537B
  116. vue-devtools-5.1.1/shells/electron/
  117. vue-devtools-5.1.1/shells/electron/.npmignore 17B
  118. vue-devtools-5.1.1/shells/electron/README.md 4.21KB
  119. vue-devtools-5.1.1/shells/electron/app.html 2.38KB
  120. vue-devtools-5.1.1/shells/electron/app.js 733B
  121. vue-devtools-5.1.1/shells/electron/bin.js 265B
  122. vue-devtools-5.1.1/shells/electron/icons/
  123. vue-devtools-5.1.1/shells/electron/icons/128.png 5.15KB
  124. vue-devtools-5.1.1/shells/electron/index.js 639B
  125. vue-devtools-5.1.1/shells/electron/package.json 687B
  126. vue-devtools-5.1.1/shells/electron/server.js 1.04KB
  127. vue-devtools-5.1.1/shells/electron/src/
  128. vue-devtools-5.1.1/shells/electron/src/backend.js 1.57KB
  129. vue-devtools-5.1.1/shells/electron/src/devtools.js 1001B
  130. vue-devtools-5.1.1/shells/electron/src/hook.js 110B
  131. vue-devtools-5.1.1/shells/electron/webpack.config.js 413B
  132. vue-devtools-5.1.1/shells/electron/yarn.lock 123.63KB
  133. vue-devtools-5.1.1/src/
  134. vue-devtools-5.1.1/src/.eslintrc.js 181B
  135. vue-devtools-5.1.1/src/backend/
  136. vue-devtools-5.1.1/src/backend/.eslintrc.js 55B
  137. vue-devtools-5.1.1/src/backend/clone.js 5.56KB
  138. vue-devtools-5.1.1/src/backend/component-selector.js 2.75KB
  139. vue-devtools-5.1.1/src/backend/events.js 1.25KB
  140. vue-devtools-5.1.1/src/backend/highlighter.js 4.21KB
  141. vue-devtools-5.1.1/src/backend/hook.js 10KB
  142. vue-devtools-5.1.1/src/backend/index.js 24.5KB
  143. vue-devtools-5.1.1/src/backend/perf.js 3.31KB
  144. vue-devtools-5.1.1/src/backend/router.js 1.68KB
  145. vue-devtools-5.1.1/src/backend/toast.js 2.37KB
  146. vue-devtools-5.1.1/src/backend/utils.js 140B
  147. vue-devtools-5.1.1/src/backend/vuex.js 16.88KB
  148. vue-devtools-5.1.1/src/bridge.js 2.47KB
  149. vue-devtools-5.1.1/src/devtools/
  150. vue-devtools-5.1.1/src/devtools/.eslintrc.js 69B
  151. vue-devtools-5.1.1/src/devtools/App.vue 9.54KB
  152. vue-devtools-5.1.1/src/devtools/assets/
  153. vue-devtools-5.1.1/src/devtools/assets/MaterialIcons-Regular.woff2 43.26KB
  154. vue-devtools-5.1.1/src/devtools/assets/Roboto-Regular.woff2 63.12KB
  155. vue-devtools-5.1.1/src/devtools/assets/logo.png 6.69KB
  156. vue-devtools-5.1.1/src/devtools/components/
  157. vue-devtools-5.1.1/src/devtools/components/ActionHeader.vue 1.76KB
  158. vue-devtools-5.1.1/src/devtools/components/DataField.vue 16.75KB
  159. vue-devtools-5.1.1/src/devtools/components/GroupDropdown.vue 2.45KB
  160. vue-devtools-5.1.1/src/devtools/components/ScrollPane.vue 1.16KB
  161. vue-devtools-5.1.1/src/devtools/components/SplitPane.vue 2.73KB
  162. vue-devtools-5.1.1/src/devtools/components/StateInspector.vue 4.37KB
  163. vue-devtools-5.1.1/src/devtools/components/TriplePane.vue 2.02KB
  164. vue-devtools-5.1.1/src/devtools/components/splitPanes.styl 340B
  165. vue-devtools-5.1.1/src/devtools/env.js 1.23KB
  166. vue-devtools-5.1.1/src/devtools/filters.js 197B
  167. vue-devtools-5.1.1/src/devtools/index.js 6.51KB
  168. vue-devtools-5.1.1/src/devtools/locales/
  169. vue-devtools-5.1.1/src/devtools/locales/en.js 2.49KB
  170. vue-devtools-5.1.1/src/devtools/mixins/
  171. vue-devtools-5.1.1/src/devtools/mixins/data-field-edit.js 5.77KB
  172. vue-devtools-5.1.1/src/devtools/mixins/defer.js 572B
  173. vue-devtools-5.1.1/src/devtools/mixins/entry-list.js 1KB
  174. vue-devtools-5.1.1/src/devtools/mixins/keyboard.js 1.28KB
  175. vue-devtools-5.1.1/src/devtools/plugins.js 1.43KB
  176. vue-devtools-5.1.1/src/devtools/plugins/
  177. vue-devtools-5.1.1/src/devtools/plugins/global-refs.js 281B
  178. vue-devtools-5.1.1/src/devtools/plugins/i18n.js 660B
  179. vue-devtools-5.1.1/src/devtools/plugins/responsive.js 587B
  180. vue-devtools-5.1.1/src/devtools/router.js 1.51KB
  181. vue-devtools-5.1.1/src/devtools/store/
  182. vue-devtools-5.1.1/src/devtools/store/index.js 1.57KB
  183. vue-devtools-5.1.1/src/devtools/style/
  184. vue-devtools-5.1.1/src/devtools/style/global.styl 3.56KB
  185. vue-devtools-5.1.1/src/devtools/style/imports.styl 57B
  186. vue-devtools-5.1.1/src/devtools/style/transitions.styl 372B
  187. vue-devtools-5.1.1/src/devtools/style/variables.styl 1.7KB
  188. vue-devtools-5.1.1/src/devtools/views/
  189. vue-devtools-5.1.1/src/devtools/views/components/
  190. vue-devtools-5.1.1/src/devtools/views/components/ComponentInspector.vue 3.32KB
  191. vue-devtools-5.1.1/src/devtools/views/components/ComponentInstance.vue 6.83KB
  192. vue-devtools-5.1.1/src/devtools/views/components/ComponentTree.vue 5.93KB
  193. vue-devtools-5.1.1/src/devtools/views/components/ComponentsTab.vue 889B
  194. vue-devtools-5.1.1/src/devtools/views/components/module.js 2.75KB
  195. vue-devtools-5.1.1/src/devtools/views/events/
  196. vue-devtools-5.1.1/src/devtools/views/events/EventInspector.vue 1.23KB
  197. vue-devtools-5.1.1/src/devtools/views/events/EventsHistory.vue 4.95KB
  198. vue-devtools-5.1.1/src/devtools/views/events/EventsTab.vue 599B
  199. vue-devtools-5.1.1/src/devtools/views/events/module.js 2.38KB
  200. vue-devtools-5.1.1/src/devtools/views/perf/
  201. vue-devtools-5.1.1/src/devtools/views/perf/ComponentRenderDetails.vue 3.21KB
  202. vue-devtools-5.1.1/src/devtools/views/perf/ComponentRenderStats.vue 3.73KB
  203. vue-devtools-5.1.1/src/devtools/views/perf/FramerateGraph.vue 5.5KB
  204. vue-devtools-5.1.1/src/devtools/views/perf/FramerateMarkerInspector.vue 2.46KB
  205. vue-devtools-5.1.1/src/devtools/views/perf/PerfTab.vue 4.17KB
  206. vue-devtools-5.1.1/src/devtools/views/perf/module.js 2.68KB
  207. vue-devtools-5.1.1/src/devtools/views/router/
  208. vue-devtools-5.1.1/src/devtools/views/router/RouterHistory.vue 4.18KB
  209. vue-devtools-5.1.1/src/devtools/views/router/RouterMeta.vue 2.24KB
  210. vue-devtools-5.1.1/src/devtools/views/router/RouterTab.vue 637B
  211. vue-devtools-5.1.1/src/devtools/views/router/module.js 1.41KB
  212. vue-devtools-5.1.1/src/devtools/views/routes/
  213. vue-devtools-5.1.1/src/devtools/views/routes/RoutesMeta.vue 2.28KB
  214. vue-devtools-5.1.1/src/devtools/views/routes/RoutesTab.vue 625B
  215. vue-devtools-5.1.1/src/devtools/views/routes/RoutesTree.vue 1.56KB
  216. vue-devtools-5.1.1/src/devtools/views/routes/RoutesTreeItem.vue 3.48KB
  217. vue-devtools-5.1.1/src/devtools/views/routes/module.js 1.39KB
  218. vue-devtools-5.1.1/src/devtools/views/settings/
  219. vue-devtools-5.1.1/src/devtools/views/settings/GlobalPreferences.vue 2.86KB
  220. vue-devtools-5.1.1/src/devtools/views/settings/NewTag.vue 509B
  221. vue-devtools-5.1.1/src/devtools/views/settings/SettingsTab.vue 888B
  222. vue-devtools-5.1.1/src/devtools/views/vuex/
  223. vue-devtools-5.1.1/src/devtools/views/vuex/VuexHistory.vue 9.2KB
  224. vue-devtools-5.1.1/src/devtools/views/vuex/VuexStateInspector.vue 8.91KB
  225. vue-devtools-5.1.1/src/devtools/views/vuex/VuexTab.vue 760B
  226. vue-devtools-5.1.1/src/devtools/views/vuex/actions.js 2.71KB
  227. vue-devtools-5.1.1/src/devtools/views/vuex/cache.js 81B
  228. vue-devtools-5.1.1/src/devtools/views/vuex/module.js 3.97KB
  229. vue-devtools-5.1.1/src/devtools/views/vuex/resolve.js 34B
  230. vue-devtools-5.1.1/src/shared-data.js 2.19KB
  231. vue-devtools-5.1.1/src/storage.js 1.64KB
  232. vue-devtools-5.1.1/src/transfer.js 2.73KB
  233. vue-devtools-5.1.1/src/util.js 17.04KB
  234. vue-devtools-5.1.1/types/
  235. vue-devtools-5.1.1/types/index.d.ts 106B
  236. vue-devtools-5.1.1/vue1-test.html 1.85KB
  237. vue-devtools-5.1.1/yarn.lock 265.36KB
0评论
提交 加载更多评论
其他资源 微信小程序实现婚礼代码,免费!
微信小程序实现婚礼代码,免费!
ROS安装文件rosdistro-master.zip
这个文件是ROS安装中执行sudo rosdep init和rosdep update时用到的,可以使用里面的本地文件解决sudo rosdep init和rosdep update失败的问题。是最为彻底的解决方案。使用教程可以看题主的博客:https://blog.csdn.net/qq_30267617/article/details/115028689 如果本资源下载需要积分了那就是系统擅自改的,我已经改回很多次了,实在没办法了。没有积分的请私聊我发送。
解决microsoft.ace.oledb.12.0连接失败所需要的驱动 完整版.zip
解决microsoft.ace.oledb.12.0连接失败所需要的驱动 完整版.zip 解决microsoft.ace.oledb.12.0连接失败所需要的驱动 完整版.zip 解决microsoft.ace.oledb.12.0连接失败所需要的驱动 完整版.zip 解决microsoft.ace.oledb.12.0连接失败所需要的驱动 完整版.zip 解决microsoft.ace.oledb.12.0连接失败所需要的驱动 完整版.zip 解决microsoft.ace.oledb.12.0连接失败所需要的驱动 完整版.zip
struts1.2.9 包
struts包struts包struts包struts包struts包struts包struts包struts包struts包struts包struts包struts包struts1.2.9
DSM群晖系统小白上手指南.zip
DSM群晖系统小白上手指南.zip
DSM群晖系统小白上手指南.zip DSM群晖系统小白上手指南.zip DSM群晖系统小白上手指南.zip
计算机网络自顶向下方法第八版答案
自顶向下方法第八版答案,包括复习题以及课后习题和实验的内容。
计算机网络自顶向下方法第八版答案 计算机网络自顶向下方法第八版答案 计算机网络自顶向下方法第八版答案
基于51单片机的智能电子秤系统设计(含代码仿真及论文)
论文见主页文章http://t.csdn.cn/IurRu!!!! 本设计以STC89C52RC单片机为主控单元,使用8 位AD转换芯片 ADC0832对采集到的模拟量进行A/D转换,转换后的数据送到单片机进行处理显示,数据显示由 LCD12864 液晶实现。具有以下特点:称重范围为0~5Kg,误差不大于±0.005Kg;具备测量物体质量并通过显示模块显示的功能;能够通过物体的单价计算出物体数量的总价格;具备去皮功能,方便计算物体的实际重力;当测量重量超出报警阈值时,蜂鸣进行过载报警。 通过实验验证,本文设计的基于51单片机的智能电子秤系统具有较高的精度和稳定,满足了商业、家庭和实验室等领域的需求,具有较强的实用价值和广阔的应用前景。 关键词:51单片机;智能电子秤;称重传感器;误差分析
GigaDevice_MCU_ISP_Programmer_V3.0.2.5782.zip
GD产品通过串口进行程序下载