LCD时序是指对LCD显示模块进行读写时电路的时序要求和状态.一般显示模块的外部接口采用并行方式,其读写时序常见的有以下两种模式:Intel8080时序和6800时序时序,今天主要介绍8080时序。 图1 8080接口写命令时序 信号线 ILI9341对应的信号线 说明 LCD_DB[15:0] D ...
分类:
其他好文 时间:
2021-01-22 12:06:12
阅读次数:
0
<!DOCTYPE html> <html> <head> <meta charset="UTF-8"> <title></title> <style type="text/css"> .p1{ width: 100px; height: 30px; font-size: 20px; backgro ...
分类:
其他好文 时间:
2021-01-22 12:04:01
阅读次数:
0
随机生成MAC //MAC地址分隔符 private static String SEPARATOR_OF_MAC = "-"; Random random = new Random(); //mac数据 String[] macs = { String.format("%02x", 0x52), ...
分类:
系统相关 时间:
2021-01-22 11:50:15
阅读次数:
0
vue 绑定style :style="{'padding-left':index==0?'22px':''} 1 <label v-for="(item,keyName,index) in ENUM.transportType" :style="{'padding-left':index==0?' ...
分类:
其他好文 时间:
2021-01-22 11:43:38
阅读次数:
0
原题链接 dp[i]表示信息传递到第i个烽火台时花费的最少代价 dp[i]=min(dp[j])+a[i];i-m<=j<=i-1 单调队列优化 const int maxn=1e6+7; int a[maxn],n,m; int dp[maxn],q[maxn]; int main(){ n=re ...
分类:
其他好文 时间:
2021-01-21 10:59:48
阅读次数:
0
sort函数小结 1.要使用头文件#include<algorithm>和using namespace std; 2.对基本类型数组排序 .sort(数组名+n1,数组名+n2) 对下标范围[n1,n2)的元素从小到大排序,下标为n2的元素不在排序区间内 sort(数组名+n1,数组名+n2,gr ...
分类:
其他好文 时间:
2021-01-21 10:50:18
阅读次数:
0
1.列表渲染 1.1 v-for <!DOCTYPE html> <html> <head> <meta charset="utf-8"> <style> </style> <script src="https://cdn.staticfile.org/vue/2.4.2/vue.min.js">< ...
分类:
Web程序 时间:
2021-01-21 10:43:28
阅读次数:
0
张艳涛写于2021-1-20日 What: 如何让button的长度和input长度一致呢 最先想到的是给这个button加一个class ="buttonclass",然后在vue最后的<style标签中>设置 .buttonclass { width : 100%; } 这个前两篇设置heigh ...
分类:
Web程序 时间:
2021-01-21 10:32:52
阅读次数:
0
取本机的第一个IP地址 ip addr | awk '/^[0-9]+: / {}; /inet.*global/ {print gensub(/(.*)\/(.*)/, "\\1", "g", $2)}' | awk 'NR==1' 取最大值,最小值 awk '{for(x=1;x<=NF;x++ ...
分类:
其他好文 时间:
2021-01-21 10:31:54
阅读次数:
0
主要解决俩个问题: 在单个vue文件中 <style rel="stylesheet/scss" lang="scss"> 不能解析 如何在全局引入scss 问题1,不能解析的问题 如果是新建的vue工程在 <style rel="stylesheet/scss" lang="scss"> </st ...
分类:
Web程序 时间:
2021-01-20 12:18:37
阅读次数:
0