1 /*2018年8月11日 18点30分,于福安公寓 2 功能:LCD1602显示程序*/ 3 #include<reg52.h> 4 #define uchar unsigned char 5 #define uint unsigned int 6 uchar code table[] ="zh ...
分类:
其他好文 时间:
2018-08-27 01:00:42
阅读次数:
272
1 #include <reg52.h> 2 #define uchar unsigned char 3 #define uint unsigned int 4 sbit LA =P2^2; 5 sbit LB =P2^3; 6 sbit LC =P2^4; 7 uchar t1,shu; 8 uc ...
分类:
其他好文 时间:
2018-08-27 00:19:21
阅读次数:
131
原生区块链创建了自己的区块链和开源协议,来支持它们自己的加密货币或者Token(通证)。 vpay电子钱包开发、Vpay数字资产开发《纪如,I 3 7. 9 4. 3 6 .2 O .I 4 ,可wei 可 dian》 asyncSend(address dest,uint amount)inter ...
分类:
其他好文 时间:
2018-08-23 13:00:54
阅读次数:
134
原文:WPF- 模拟触发Touch Events 基于API: [DllImport("User32.dll")] public static extern bool InitializeTouchInjection(uint maxCount = 256, TouchFeedback feedba... ...
一个简单的智能合约 先从一个非常基础的例子开始 1 2 3 4 5 6 7 8 9 10 11 12 contract ZhaoxiStorage { uint storedData; function set(uint x) { storedData = x; } function get() c ...
分类:
其他好文 时间:
2018-08-12 15:35:19
阅读次数:
157
Go基本类型 bool Numeric Types: int8, int16, int32, int64, int uint8, uint16, uint32, uint64, uint float32, float64 complex64, complex128 byte rune string ...
分类:
其他好文 时间:
2018-08-09 23:16:28
阅读次数:
164
启动进程int __cdecl system(_In_opt_z_ char const* _Command); UINT WINAPI WinExec(__in LPCSTR lpCmdLine, __in UINT uCmdShow); HINSTANCE ShellExecute(HWND h ...
分类:
系统相关 时间:
2018-08-07 15:17:46
阅读次数:
211
如何从Zabbix数据库中获取监控数据 做过Zabbix的同学都知道,Zabbix通过专用的Agent或者SNMP收集相关的监控数据,然后存储到数据库里面实时在前台展示。Zabbix监控数据主要分为以下两类: 历史数据:history相关表,从history_uint表里面可以查询到设备监控项目的最 ...
分类:
数据库 时间:
2018-08-04 20:26:01
阅读次数:
163
#include<pic.h>#define uchar unsigned char#define uint unsigned int#define add 0xaa__CONFIG(0xc3e4);__CONFIG(0xffff);#define DS1302 RC2 //定义关掉DS1302时钟 ...
分类:
其他好文 时间:
2018-08-01 11:47:53
阅读次数:
158
编写窗口过程(Writing the Window Procedure) DispatchMessage函数调用作为消息目标窗口的窗口过程。窗口过程具有以下签名(signature)。 C++ LRESULT CALLBACK WindowProc(HWND hwnd, UINT uMsg, WPA ...