摘要:
出现如下错误 A:libA.so java.lang.UnsatisfiedLinkError: no A in java.library.path: [/usr/java/packages/lib, /usr/lib/arm-linux-gnueabihf/jni, /lib/arm-linux- 阅读全文
摘要:
源码地址 https://github.com/Pi4J/pi4j 使用jar包 编译完成,会生成jar包,后面直接使用这个jar包 maven编译配置 配置jar包依赖(使用刚才编译好的) 以scope为system的方式 systemPath是jar包真实路径,其他随意设置 <dependenc 阅读全文
摘要:
读取数据 // 发送(1001是变量地址,01是长度) 5A A5 04 83 1001 01 // 接收(04 d2是数据,代表“1234”) 5a a5 06 83 10 01 01 04 d2 写入数据变量 // 发送(1001是数据变量地址,04D2是数据) 5A A5 05 82 1001 阅读全文
摘要:
T5屏读版本号 // 发送 5A A5 04 83 000F 01 // 接收 5a a5 06 83 00 0f 01 25 21 T5屏读取页面ID // 发送 5A A5 04 83 0014 01 // 接收(表示当前第1页) 5a a5 06 83 00 14 01 00 01 阅读全文
摘要:
cnpm install postcss-px-to-viewport --save-dev .postcssrc.js module.exports = { "plugins": { "postcss-px-to-viewport": { unitToConvert: "px", // 要转化的单 阅读全文
摘要:
cnpm install vue-lazyload --save import Lazyload from 'vue-lazyload' Vue.use(Lazyload) <template> <div id="app"> <!-- <img src="./assets/logo.png"> -- 阅读全文
摘要:
解决移动端click延迟300ms cnpm install fastclick --save import Fastclick from 'fastclick' Fastclick.attach(document.body); 阅读全文
摘要:
<template> <div id="Toast"> <p class="msg">{{msg}}</p> </div> </template> <script> export default { name: 'Toast', data() { return { msg: 'hello Toast 阅读全文
摘要:
<script> export default { name: 'HelloWorld', data() { return { msg: 'Welcome to Your Vue.js App', goods: [{ src: 'girl.jpg', link: 'http://wwww.baidu 阅读全文
摘要:
<template> <div class="hello"> <ul class="content" ref="content"> </ul> </div> </template> <script> export default { name: 'HelloWorld', mounted() { c 阅读全文