- 博客(12)
- 资源 (2)
- 收藏
- 关注
原创 Python--列表
列表列表:用方括号括起来的一组数据,与C语言的数组类似,但功能更强大,可以是任意类型列表格式:list = [1,12,'str',2.20]添加元素: 末尾追加: list.append(10) ===> [1,12,'str',2.20,10] 末尾追加多个元素: list.extend([7,9]...
2018-06-02 19:00:44 274
原创 Python与C语言的基础比较
1、注释 Python:单行注释以 # 开头 多汗注释以可以使用多个#,还可以使用 ' ' '或 " " " C语言:单行注释以//开头 多汗注释以可以使用多个//,还可以使用 /* */2、变量类型Python六个标准的数据类型:Number数字、String字符串、List列表、Tuple元祖、Sets集合、Di...
2018-05-26 22:26:01 5085
原创 串口通讯系列七-串口与上位机通讯调用Flash及与Flash交互通信
using AxShockwaveFlashObjects;using System;using System.Collections.Generic;using System.ComponentModel;using System.Data;using System.Drawing;using System.IO;using System.IO.Ports;using Syste...
2018-05-26 17:51:34 2134
原创 串口通讯系列六-串口与上位机通讯调用Flash及Flash视频切换(非交互)
using System;using System.Collections.Generic;using System.ComponentModel;using System.Data;using System.Drawing;using System.IO;using System.IO.Ports;using System.Linq;using System.Text;usin...
2018-02-27 22:43:28 999
原创 串口通讯系列五-串口与上位机通讯调用及视频切换
using System;using System.Collections.Generic;using System.ComponentModel;using System.Data;using System.Drawing;using System.IO;using System.IO.Ports;using System.Linq;using System.Text;usin...
2018-02-27 19:45:29 1115 2
原创 串口通讯系列五之串口数据接收处理
private string nstr = ""; private string mstr = ""; public void YF_DataReceived(object sender, SerialDataReceivedEventArgs e) { int line = ComDevice.BytesToRead; ...
2018-02-26 16:34:23 2725
原创 串口通讯系列四-调用flash
/*========================== 调用flash 实现窗体内某控件的全屏显示 Esc退出全屏 ==========================*/using System;using System.Collections.Generic;using System.ComponentModel;using System.Data;using Syste...
2018-02-04 20:14:13 880
原创 串口通讯系列三-指定某一控件全屏
/*======================================== 某一控件全屏 按ESC退出全屏 视频重复播放 屏蔽鼠标双击及右键功能 ========================================*/using System;using System.Collections.Generic;using System.ComponentMod...
2018-02-02 23:56:07 293
原创 串口通讯系列二之文件读写操作
using System;using System.Collections.Generic;using System.ComponentModel;using System.Data;using System.Drawing;using System.Linq;using System.Text;using System.IO;using System.Windows.Forms;
2018-02-01 22:28:05 407
原创 串口通讯系列二-通过txt文件读取串口参数
/*================================== 从txt文件中串口读取参数 创建txt文件,并写入默认参数 读取txt文件 根据txt文件里的内容设置串口参数 FileStream 对文件系统上的文件进行读取、写入、打开和关闭操作 StreamWriter 流写入 StreamReader 流读取 List<string> 集合 ...
2018-02-01 22:16:41 997
原创 串口通讯系列-串口通讯实现
/*======================================================//使用到的控件有://Panel 分组框 容器//GroupBox 组合框 容器//Label 标签//RadioButton 单选按钮//TextBox 文本编辑框//SerialPort 串行端口//ComboBox 组合框//Button 按钮=======...
2018-02-01 21:37:04 544 1
转载 10FF
<br />#include "c:/icc/include/iom128v.h"<br />#include "c:/icc/include/macros.h"<br />//#include "c:/icc/include/eeprom.h"<br />//#include "c:/icc/include/float.h"<br />//#include "c:/icc/include/math.h"<br />//include "c:/icc/include/stdio.h"<br />//#inc
2011-05-24 14:09:00 616
空空如也
TA创建的收藏夹 TA关注的收藏夹
TA关注的人