单总线(1-Wire Bus)技术及其应用 reference: http://www.doc88.com/p-2106151016582.html摘要:介绍了美DALLAS公司推出的单总线技术的原理和信号传输方式,说明了单总线通信协议,最后以单总线器件iButton在安防系统中的应用为例,给出了单 ...
分类:
其他好文 时间:
2019-01-28 15:17:24
阅读次数:
247
前言:Wire.h是Arduino的IIC库。 一、Wire库函数 二、库函数详细介绍 1、Wire.begin() 和 Wire.begin(address) 描述 初始化wire库 ,并且加入到I2C网络,前者作为Master 或 Slaver,并且只能调用一次。 参数 address :7位的 ...
分类:
其他好文 时间:
2019-01-26 19:34:20
阅读次数:
199
题目: A long-distance telephone company charges its customers by the following rules: Making a long-distance call costs a certain amount per minute, dep ...
分类:
其他好文 时间:
2019-01-23 13:03:43
阅读次数:
134
Appium是一个开源、跨平台的测试框架,可以用来测试原生及混合的移动端应用。Appium支持IOS、Android及FirefoxOS平台。Appium使用WebDriver的json wire协议,来驱动IOS系统的UIAutomation库、Android系统的UIAutomator框架。 A ...
分类:
移动开发 时间:
2019-01-16 00:18:07
阅读次数:
331
"题面" 大意:在加权无向图上求出一条从 $1$ 号结点到 $N$ 号结点的路径,使路径上第 $K + 1$ 大的边权尽量小。 思路: 由于我们只能直接求最短路,不能记录过程中的具体的边——那样会特别麻烦 所以,我们就尝试着去想更优的办法 题目中所说,能够免去 $K$ 条边的费用,那么对于要建设的边 ...
分类:
其他好文 时间:
2019-01-08 12:30:03
阅读次数:
190
A long-distance telephone company charges its customers by the following rules: Making a long-distance call costs a certain amount per minute, dependi ...
分类:
其他好文 时间:
2019-01-05 19:59:48
阅读次数:
247
1.创建数据库模型的时候增加添加上注释SQLAlchemy1.2新增了comment参数telephone = db.Column(db.String(11), nullable=False, comment='电话')class User(Base): __tablename__ = 'user' ...
分类:
数据库 时间:
2019-01-04 14:34:47
阅读次数:
228
sequelize提供了批量插入数据的方法:Model.bulkCreate([…object])。 例如: let updatePhone = [{userName: '李白‘},{userName: '杜甫'}] db_erroressence.active_telephone.bulkCrea ...
分类:
其他好文 时间:
2019-01-02 15:06:34
阅读次数:
3022
https://mp.weixin.qq.com/s/AxYlRtAXjd55eoGX5l1W-A 模块(Module)从输入端口(input ports)接收输入,经过内部实现的转换逻辑,从输出端口(output ports)输出。 在Chisel3中,模块的输入输出端口,通过IO(new Bun ...
分类:
其他好文 时间:
2019-01-01 14:07:37
阅读次数:
369
用syonpsys工具试着研究了一下,也把自己的感悟分享出来,欢迎指正; 综合用的dc,后仿真用的vcs; 对于非展平的网表: 1. 子模块内部的触发器类型,比如时序逻辑reg[7:0] temp;非展平之后,必然存在与之对应的wire[7:0] temp数据类型,并且命名完全相同,连接std ce ...
分类:
其他好文 时间:
2018-12-25 21:09:24
阅读次数:
198